{"info":{"_postman_id":"366620b1-c227-4e67-b5e4-0a52d5cc92c6","name":"SalesMessage Public API v2.1","description":"<html><head></head><body><h2 id=\"introduction\">Introduction</h2>\n<p>This API documentation will start with an overview of the Salesmsg authorization methods and flows, followed by reference information about each specific endpoint.</p>\n<h2 id=\"mock-server\">Mock Server</h2>\n<p>Additionally, if you want to try the API requests out on our mock server, then you can import the endpoints and set baseUrl variable in your collection as <a href=\"https://e33e4a6a-ff9d-419f-a378-ec53560c0bb7.mock.pstmn.io\">https://e33e4a6a-ff9d-419f-a378-ec53560c0bb7.mock.pstmn.io</a></p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Supported authorization methods include: <strong>Personal Access Token (PAT)</strong> and <strong>OAuth2</strong>.<br>Whether to use PAT or regular OAuth2 tokens highly depends on your use case.</p>\n<ul>\n<li><strong>OAuth2</strong> authorization type is to go for in case you want to allow other users to authenticate against SalesMessage in order for your app to use the issued token as well as utilize the SalesMessage’s functionality.</li>\n<li><strong>PAT</strong> authorization type is to go for in case you want to integrate your personal existing account with Salesmsg in order to extend your app’s functionality. PAT are managed by the user, which means that they are tied to a user account. This makes Personal Access Tokens a good choice for development, as well as automation purposes, when an application does only require a single SalesMessage account to manage organizations.</li>\n</ul>\n<h3 id=\"oauth2\">OAuth2</h3>\n<p>The first step in implementing OAuth2 is <a href=\"/settings/developer/applications\">registering an oauth application</a> and retrieving your client ID and client secret. Most people who will be implementing OAuth2 will want to find and utilize a library in the language of their choice. For those implementing OAuth2 from scratch, please see <a href=\"https://datatracker.ietf.org/doc/html/rfc6749\">RFC 6749</a> for details. After you create your application with SalesMessage, make sure that you have your <code>client_id</code> and <code>client_secret</code> handy. The next step is to figure out which OAuth2 flow is right for your purposes. Here are your options:</p>\n<ul>\n<li>Authorization code grant flow</li>\n<li>Implicit grant flow</li>\n<li>Client credentials grant flow</li>\n</ul>\n<h5 id=\"oauth2-urls\">OAuth2 URLs</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>URL</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>https://app.salesmessage.com/auth/oauth</code></td>\n<td>Base authorization URL</td>\n</tr>\n<tr>\n<td><code>https://api.salesmessage.com/pub/v2.1/auth/token</code></td>\n<td>Token URL</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"1-authorization-code-grant-flow\">1. Authorization code grant flow</h4>\n<p>The authorization code grant flow is most suitable for <strong>web and mobile applications</strong>. It differs from the other grant types by requiring the application to launch a browser first to begin the integration.</p>\n<p>The integration consists of the following steps:</p>\n<ol>\n<li>The application opens a browser to send the user to the OAuth server.</li>\n<li>The user receives the authorization prompt and approves the application request.</li>\n<li>The user is redirected back to the app with the authorization code in the query string.</li>\n<li>The application exchanges the authorization code for an access token.</li>\n</ol>\n<p>Below, you can find the description of the authorization code grant flow in detail.</p>\n<h5 id=\"get-user-permission\">Get user permission</h5>\n<p>The application sends the user to a browser to get their permission. To begin the authorization flow, the application constructs an URL like the following and opens a browser to that URL:</p>\n<p><code>https://api.salesmessage.com/auth/oauth?response_type=code&amp;client_id=269&amp;redirect_uri=https://example.app/callback&amp;scope=public-api&amp;state=xcoiv98y2kd22vusuye3kch</code></p>\n<p>Here’s each query parameter explained:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Response_type</code></td>\n<td>Set to code indicating that you want an authorization code as the response.</td>\n</tr>\n<tr>\n<td><code>Client_id</code></td>\n<td>The identifier for apps. You will find it on the OAuth Applications page.</td>\n</tr>\n<tr>\n<td><code>Redirect_uri</code></td>\n<td>Used to redirect to after the user is granted permission or denied permission. The URI needs to have been entered in the Redirect URI field that the user specified at creating the application.</td>\n</tr>\n<tr>\n<td><code>Scope</code></td>\n<td>Stands for the scopes the application is requesting, separated by URL-encoded spaces.</td>\n</tr>\n<tr>\n<td><code>State</code></td>\n<td>A value included in the request, which is also returned in the token response. It can be a string of any content that you wish. A randomly generated unique value is typically used for preventing cross-site request forgery attacks.</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"successful-response\">Successful response</h5>\n<p>If the user approves the request, the authorization server will redirect the browser back to the redirect_uri specified by the OAuth application, adding a code and state to the query string.</p>\n<p>The user will be redirected back to an URL such as:</p>\n<p><code>https://example.app/callback?code=g0ZGZmNjVmOWIjNTk2NTk4ZTYyZGI3&amp;state=xcoiv98y2kd22vusuye3kch</code></p>\n<p>Where:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Code</code></td>\n<td>An authorization code that you can exchange for an access token within 10 minutes. After that, the code expires.</td>\n</tr>\n<tr>\n<td><code>State</code></td>\n<td>A value included in the request, which is also returned in the token response. It can be a string of any content that you wish. A randomly generated unique value is typically used for preventing cross-site request forgery attacks.</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"exchange-the-authorization-code-for-an-access-token\">Exchange the authorization code for an access token</h5>\n<p>In case the user approves the request, the OAuth app is ready to exchange the authorization code for an access token. It goes by making a POST request to the '<a href=\"https://api.salesmessage.com/pub/v2.1\">https://api.salesmessage.com/pub/v2.1</a><a href=\"https://app.salesmessage.com/app/auth/token'\">/auth/token'</a> endpoint.</p>\n<p>The body of this POST request must contain the following parameters encoded in <code>application/x-www-form-urlencoded</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST `https://api.salesmessage.com/pub/v2.1/auth/token`\nContent-Type: application/x-www-form-urlencoded\n`grant_type`=authorization_code\n&amp;`code`=\n&amp;`client_id`=\n&amp;`client_secret`=\n&amp;`redirect_uri`=\n\n</code></pre><p>Where:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Grant_type</code></td>\n<td>Must be set to authorization_code.</td>\n</tr>\n<tr>\n<td><code>Code</code></td>\n<td>The authorization code returned from the previous request.</td>\n</tr>\n<tr>\n<td><code>Client_id</code></td>\n<td>The identifier for the app. Find it on the OAuth Applications page.</td>\n</tr>\n<tr>\n<td><code>Client_secret</code></td>\n<td>The secret of the app. Find it on the OAuth Applications page.</td>\n</tr>\n<tr>\n<td><code>Redirect_uri</code></td>\n<td>Used for validation only (there is no actual redirection). The value of the parameter must exactly match the value of <code>redirect_uri</code> supplied when requesting the authorization code.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The token endpoint will verify all the parameters in the request, <strong>ensuring the code hasn’t expired</strong> and that <strong>the client ID matches the client secret</strong>. If everything checks out, it will generate an access token and return it in the response.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 200 OK\nContent-Type: application/json\n{\n\"token_type\": \"Bearer\",\n\"expires_in\": 31536000,\n\"access_token\":\"MTQ0NjJkZmQ5OTM2NDE1ZTZjNGZmZjI3\",\n\"refresh_token\":\"IwOGYzYTlmM2YxOTQ5MGE3YmNmMDFkNTVk\"\n}\n\n</code></pre><p>When the access token expires, use the refresh token to get a new access token. For information about using refresh tokens, see the section below.</p>\n<h5 id=\"request-a-refreshed-access-token\">Request a refreshed access token</h5>\n<p>Access tokens are deliberately set to expire after a short time, after which new tokens may be granted by supplying the refresh token originally obtained during the authorization code exchange.</p>\n<p>To refresh the token, a POST request must be sent with the following body parameters encoded in <code>application/x-www-form-urlencoded</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST https://api.salesmessage.com/pub/v2.1/auth/token\nContent-Type: application/x-www-form-urlencoded\ngrant_type=refresh_token\n&amp;client_id=\n&amp;client_secret=\n&amp;refresh_token=\n&amp;scope=public-api\n\n</code></pre><p>Where:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Grant_type</code></td>\n<td>Must be set to <code>refresh_token</code></td>\n</tr>\n<tr>\n<td><code>Refresh_token</code></td>\n<td>The refresh token returned from the authorization code exchange.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"2-implicit-grant-flow\">2. Implicit grant flow</h3>\n<p>This flow is meant for apps that don’t use a server, such as <strong>client-side JavaScript apps or mobile apps</strong>.</p>\n<p>To get a user access token using the implicit grant flow, navigate a user to <code>https://api.salesmessage.com/pub/v2.1/auth/oauth</code> with the following query parameters that are appropriate for your application:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>Your app’s registered client ID.</td>\n</tr>\n<tr>\n<td><code>force_verify</code></td>\n<td>Set to true to force the user to re-authorize your app’s access to their resources. The default is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>redirect_uri</code></td>\n<td>Your app’s registered redirect URI. The access token is sent to this URI.</td>\n</tr>\n<tr>\n<td><code>response_type</code></td>\n<td>Must be set to token.</td>\n</tr>\n<tr>\n<td><code>scope</code></td>\n<td>Stands for the scopes the application is requesting, separated by URL-encoded spaces.</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>A value included in the request, which is also returned in the token response. It can be a string of any content that you wish. A randomly generated unique value is typically used for preventing cross-site request forgery attacks.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Below find an example of the URI that you’ll navigate to in your web browser control:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://api.salesmessage.com/pub/v2.1/auth/oauth\n?response_type=token\n&amp;client_id=hof5gwx0su6owfnys0yan9c87zr6t\n&amp;redirect_uri=http://localhost:3000\n&amp;scope=channel:manage:polls+channel:read:polls\n&amp;state=c3ab8aa609ea11e793ae92361f002671\n\n</code></pre><p>If the user is logged into Salemsg, Salemsg asks them to authorize your application. In case they’re not logged in, Salemsg asks them to log in first. Then, the user is prompted to authorize your application.</p>\n<p>As soon as the user authorizes your application, the server sends the access token to your redirect URI in the fragment portion of the URI (see the <code>access_token parameter</code>):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://localhost:3000/\n#access_token=73d0f8mkabpbmjp921asv2jaidwxn\n&amp;scope=channel:manage:polls+channel:read:polls\n&amp;state=c3ab8aa609ea11e793ae92361f002671\n&amp;token_type=bearer\n\n</code></pre><p>In case the user didn’t authorize your application, the server sends the error code and description to your redirect URI (see the <code>error</code> and <code>error_description</code> parameters).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://localhost:3000/\n?error=access_denied\n&amp;error_description=The+user+denied+you+access\n&amp;state=c3ab8aa609ea11e793ae92361f002671\n\n</code></pre><h3 id=\"3-client-credentials-grant-flow\">3. Client credentials grant flow</h3>\n<p>The client credentials grant flow is meant for <strong>server-to-server API requests</strong> that use an app access token.</p>\n<p>To get an access token, send an HTTP POST request to <code>https://api.salesmessage.com/pub/v2.1/auth/token</code>. Set the following <code>x-www-form-urlencoded</code> parameters as appropriate for your app.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>Your app’s registered client ID.</td>\n</tr>\n<tr>\n<td><code>client_secret</code></td>\n<td>Your app’s registered client secret.</td>\n</tr>\n<tr>\n<td><code>grant_type</code></td>\n<td>Must be set to <code>client_credentials</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The example below shows the parameters in the body of the POST:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>client_id=hof5gwx0su6owfnys0yan9c87zr6t\n&amp;client_secret=41vpdji4e9gif29md0ouet6fktd2\n&amp;grant_type=client_credentials\n\n</code></pre><p>If the request is a success, it returns an access token.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"access_token\": \"jostpf5q0uzmxmkba9iyug38kjtgh\",\n\"expires_in\": 5011271,\n\"token_type\": \"bearer\"\n}\n\n</code></pre><p>In addition, you can utilize a library in the language of their choice while implementing OAuth2. For those implementing OAuth2 from scratch, please see <a href=\"https://datatracker.ietf.org/doc/html/rfc6749\">RFC 6749</a> for details.</p>\n<h3 id=\"pat-personal-access-tokens\">PAT: Personal Access Tokens</h3>\n<p>Personal Access Tokens (PAT) are an alternative to regular OAuth tokens. Technically, it allows access to our API just like an OAuth token. However, it is tied to the user who creates the request, meaning that they are allowed to directly call the SalesMessage APIs.<br>To create a new Personal Access Token or revoke an existing one, go to the <a href=\"/settings/developer/access-tokens\">Personal Access Tokens tab</a> in the Settings page. You can request as many as you like, and revoke them at any time.<br>Your PAT functions like a password, so it should not be hard coded into any scripts. Store your PAT in a safe space.</p>\n<h2 id=\"http-status-codes\">HTTP status codes</h2>\n<p>Use the following set of HTTP response status codes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>STATUS</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>The request was a success.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>There was something wrong with incoming data from Salesmsg. Provide an error response body to clarify what went wrong.</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Salesmsg sent an OAuth2 access token that isn’t valid.</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Access to this method is forbidden.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Salesmsg is trying to reach a URL that doesn’t exist.</td>\n</tr>\n<tr>\n<td>500</td>\n<td>There was an error in your application logic.</td>\n</tr>\n<tr>\n<td>503</td>\n<td>Your service is not available at the moment, but Salesmsg should try again later.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Each endpoint of our API returns responses in a JSON format.</p>\n<h2 id=\"rate-limits\">Rate Limits</h2>\n<p>The global rate limit for our API is <strong>60 requests per minute</strong>. If you exceed this, all API calls for the next 60 seconds will be blocked, receiving a HTTP 429 response.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"13798866","collectionId":"366620b1-c227-4e67-b5e4-0a52d5cc92c6","publishedId":"2s935uHgXp","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2023-02-13T08:46:41.000Z"},"item":[{"name":"Authorization","item":[{"name":"Request access token","id":"5bb97ad4-981a-4e60-853d-068f4e979842","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","description":"<p>(Required) Must be set to <code>authorization_code</code>.</p>\n"},{"key":"code","value":"","description":"<p>(Required) The authorization code returned from the Get the User’s Permission request.</p>\n"},{"key":"client_id","value":"","description":"<p>(Required) The client_id is the identifier for the app. Find it on the OAuth Applications page.</p>\n"},{"key":"client_secret","value":"","description":"<p>(Required) The client_secret is the secret of the app. Find it on the OAuth Applications page.</p>\n"},{"key":"redirect_uri","value":"","description":"<p>(Required) This parameter is used for validation only (there is no actual redirection). The value of this parameter must exactly match the value of <code>redirect_uri</code> supplied when requesting the authorization code.</p>\n"}]},"url":"https://api.salesmessage.com/pub/v2.1//oauth/token","description":"<p>Before you can successfully request a SalesMessage API, you must obtain an access token that grants access to the API.<br /><br />The <code>code</code> your application receives at your Redirect URI is a temporary authorization code that is used to obtain an access token to call the API.<br /><br />If the token is not redeemed in the alotted time, the user will need to go through the login and authorization process again.</p>\n","urlObject":{"path":["oauth","token"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"da340c4b-a43f-406c-9f55-6cce940e3c2d","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"(Required) Must be set to `authorization_code`.","key":"grant_type","value":"authorization_code"},{"description":"(Required) The authorization code returned from the Get the User’s Permission request.","key":"code","value":""},{"description":"(Required) The client_id is the identifier for the app. Find it on the OAuth Applications page.","key":"client_id","value":""},{"description":"(Required) The client_secret is the secret of the app. Find it on the OAuth Applications page.","key":"client_secret","value":""},{"description":"(Required) This parameter is used for validation only (there is no actual redirection). The value of this parameter must exactly match the value of `redirect_uri` supplied when requesting the authorization code.","key":"redirect_uri","value":""}]},"url":"https://api.salesmessage.com/pub/v2.1//oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"token_type\": \"Bearer\",\n  \"expires_in\": \"31536000\",\n  \"access_token\": \"ouath token string\",\n  \"refresh_token\": \"ouath token string\"\n}"}],"_postman_id":"5bb97ad4-981a-4e60-853d-068f4e979842"},{"name":"Refresh access token","id":"ded506c5-297c-429e-8a24-aba5f427d503","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","description":"<p>(Required) Must be set to <code>refresh_token</code>.</p>\n"},{"key":"client_id","value":"","description":"<p>(Required) The client_id is the identifier for the app. Find it on the OAuth Applications page.</p>\n"},{"key":"client_secret","value":"","description":"<p>(Required) The client_id is the secret of the app. Find it on the OAuth Applications page.</p>\n"},{"key":"refresh_token","value":"","description":"<p>(Required) The refresh token to refresh.</p>\n"},{"key":"code","value":"true","description":"<p>(Required) </p>\n"}]},"url":"https://api.salesmessage.com/pub/v2.1//oauth/token/refresh","description":"<p>Access tokens are short lived. This was made deliberately for security.<br /><br />This API endpoint is used to exchange a refresh token for an access token when the access token received from the Authorize user API has expired. You will need the client id and the secret which can be found on the OAuth Applications page.</p>\n","urlObject":{"path":["oauth","token","refresh"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"7f48a0cc-acce-40c0-816f-881e358f15c7","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"(Required) Must be set to `refresh_token`.","key":"grant_type","value":"refresh_token"},{"description":"(Required) The client_id is the identifier for the app. Find it on the OAuth Applications page.","key":"client_id","value":""},{"description":"(Required) The client_id is the secret of the app. Find it on the OAuth Applications page.","key":"client_secret","value":""},{"description":"The refresh token to refresh.","key":"refresh_token","value":""},{"description":"(Required) ","key":"code","value":"true"}]},"url":"https://api.salesmessage.com/pub/v2.1//oauth/token#refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"token_type\": \"Bearer\",\n  \"expires_in\": \"31536000\",\n  \"access_token\": \"ouath token string\",\n  \"refresh_token\": \"ouath token string\"\n}"}],"_postman_id":"ded506c5-297c-429e-8a24-aba5f427d503"},{"name":"Refresh personal access token","id":"ced74a1c-a655-4e60-802d-c2b3b686083e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//oauth/personal-token/refresh","description":"<p>With this endpoint API, you can extend the Personal Access Token for one hour, with the option to extend it later. Note this endpoint accepts a <code>Bearer authentication token</code> in the headers.</p>\n","urlObject":{"path":["oauth","personal-token","refresh"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"daacce6e-446a-466d-8b8c-e59029faa2ad","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//oauth/personal-token/refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"token_type\": \"Bearer\",\n  \"expires_in\": \"31536000\",\n  \"access_token\": \"personal access token\"\n}"}],"_postman_id":"ced74a1c-a655-4e60-802d-c2b3b686083e"}],"id":"f7836f07-1c90-4b00-b8f1-ec20319352af","description":"<p>The SalesMessage APIs are used to implement the standard account workflows. Supported authorization methods include: Personal Access Token (PAT) and OAuth2.<br /><br />In both, you acquire an Access Token which is a string that enables the application to verify that a request belongs to an authorized session.</p>\n","_postman_id":"f7836f07-1c90-4b00-b8f1-ec20319352af"},{"name":"Contacts","item":[{"name":"Opt-in contact","id":"e86bf2a8-0d1e-4548-842d-e4a04aafb013","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/opt-in/:contact","description":"<p>An opt-in contact means a contact being enabled for reaching out. In case a contact is currently opt-out, i.e. disabled, this request makes this contact available for communication. <br /><br /> As a result, the current user becomes allowed to send messages to the contact, which is also reflected with a note on the current user’s side bar.</p>\n","urlObject":{"path":["contacts","opt-in",":contact"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"26202225-a00d-460e-bd17-9255ee7618ec","description":{"content":"<p>(Required) Contact id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"contact"}]}},"response":[{"id":"8afd4052-7640-430a-8f60-c7f8513759c1","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/opt-in/:contact","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","opt-in",":contact"],"variable":[{"key":"contact","value":"27950450","description":"(Required) Contact id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"},{"id":"5b00599e-4c12-470c-87cf-ad566dfefb25","name":"Contact is hard opt'd out","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/opt-in/:contact","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","opt-in",":contact"],"variable":[{"key":"contact","value":"27950450","description":"(Required) Contact id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"dolor ad consequat ut\",\n  \"message\": \"est elit\"\n}"}],"_postman_id":"e86bf2a8-0d1e-4548-842d-e4a04aafb013"},{"name":"Opt-out contact","id":"58a7f82a-8049-40c1-b624-e9ebe1398490","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/opt-out/:contact","description":"<p>An opt-out contact means a contact being disabled for reaching out. In case a contact is currently opt-in, i.e. enabled, this request makes this contact unavailable for communication.<br /><br /> As a result, the current user cannot send messages to the contact from the application, which is also reflected with  the following note on the current user’s side bar: <br /><br /> <code>This contact has been opted-out and will not receive messages from local and tall-free numbers.</code><br /><br /> At the same time, the contact themselves can write to the user.</p>\n","urlObject":{"path":["contacts","opt-out",":contact"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"81627406-6c0e-4ee7-b39c-a4736530eba8","description":{"content":"<p>(Required) Contact id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"contact"}]}},"response":[{"id":"c147ab41-abd3-4432-939c-ae3fb593f04a","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/opt-out/:contact","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","opt-out",":contact"],"variable":[{"key":"contact","value":"27950450","description":"(Required) Contact id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"58a7f82a-8049-40c1-b624-e9ebe1398490"},{"name":"Get contact by id","id":"2c9898c5-b0d0-43c9-8060-5501c6f82d51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/:contact","description":"<p>The Get contact by id endpoint returns all the information and all fields for a contact by its id for a given account. Additionally, the endpoint can be used to get the id of a contact.</p>\n","urlObject":{"path":["contacts",":contact"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"3d6827c5-b178-489d-ad8a-838621c5cfc9","description":{"content":"<p>(Required) ID of contact</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"contact"}]}},"response":[{"id":"6c61bdb9-500a-4532-9c4e-2dc341520e58","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/:contact","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts",":contact"],"variable":[{"key":"contact","value":"-46945205","description":"(Required) ID of contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"2c9898c5-b0d0-43c9-8060-5501c6f82d51"},{"name":"Update contact","id":"8d761a8a-9bba-4253-b0af-4423ac324ab3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/:contact?number=&integration_id=65893348&first_name=&last_name=&email=&contact_integration_id=65893348","description":"<p>This endpoint is used to update an existing contact within the system. It updates the properties specified in the request.<br /><br />In case you've been updating contact records in an external database, the endpoint will help sync those updates to your system. You can use the update contact endpoint to complete the sync and avoid making manual updates.</p>\n","urlObject":{"path":["contacts",":contact"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Number</p>\n","type":"text/plain"},"key":"number","value":""},{"description":{"content":"<p>Integration id</p>\n","type":"text/plain"},"key":"integration_id","value":"65893348"},{"description":{"content":"<p>First name</p>\n","type":"text/plain"},"key":"first_name","value":""},{"description":{"content":"<p>Last name</p>\n","type":"text/plain"},"key":"last_name","value":""},{"description":{"content":"<p>Email</p>\n","type":"text/plain"},"key":"email","value":""},{"description":{"content":"<p>Contact integration id</p>\n","type":"text/plain"},"key":"contact_integration_id","value":"65893348"}],"variable":[{"id":"6a86d502-118a-4981-bf61-0bdab43342a9","description":{"content":"<p>(Required) Contact id</p>\n","type":"text/plain"},"type":"any","value":"","key":"contact"}]}},"response":[{"id":"cc0a0970-e89f-42c9-8c4c-5a4c1796f006","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/:contact?number=&integration_id=65893348&first_name=&last_name=&email=&contact_integration_id=65893348","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts",":contact"],"query":[{"key":"number","value":""},{"key":"integration_id","value":"65893348"},{"key":"first_name","value":""},{"key":"last_name","value":""},{"key":"email","value":""},{"key":"contact_integration_id","value":"65893348"}],"variable":[{"key":"contact","value":"","description":"(Required) Contact id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"8d761a8a-9bba-4253-b0af-4423ac324ab3"},{"name":"Delete contact","id":"03f39ccd-ac78-44f3-ae3e-d79727cc4735","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/:contact","description":"<p>This endpoint deletes one or more existing contacts from a user’s contact block.<br /><br />If a contact with the same id interacts with the current user again, the contact will be added back into the user’s interface.</p>\n","urlObject":{"path":["contacts",":contact"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"02f79c27-6604-4ae1-b7e4-a150e0c43337","description":{"content":"<p>(Required) Contact id</p>\n","type":"text/plain"},"type":"any","value":"","key":"contact"}]}},"response":[{"id":"443bc06f-3aa4-4ac7-907e-f4658a8c5abb","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/:contact","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts",":contact"],"variable":[{"key":"contact","value":"","description":"(Required) Contact id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"incididunt laboris ea elit\",\n  \"nisi\"\n]"}],"_postman_id":"03f39ccd-ac78-44f3-ae3e-d79727cc4735"},{"name":"Update contact attribues","id":"4febade4-9fb0-4911-a275-99ab53dbbcd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/:contact?attribute=-46945205&value=laborum","description":"<p>Through this API request, you are able to change the values set within the attributes of the contact. Attributes that can be changed include: photo URL, phone number, country, country calling code, national number, and typeted number.</p>\n","urlObject":{"path":["contacts",":contact"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Attribute</p>\n","type":"text/plain"},"key":"attribute","value":"-46945205"},{"description":{"content":"<p>Value</p>\n","type":"text/plain"},"key":"value","value":"laborum"}],"variable":[{"id":"22f6cfca-a55a-4796-af70-ac9204632634","description":{"content":"<p>(Required) The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"contact"}]}},"response":[{"id":"355d2c1c-f9f6-4fd9-87a5-ccc325ccbff4","name":"OK","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/:contact?attribute=-46945205&value=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts",":contact"],"query":[{"key":"attribute","value":"-46945205"},{"key":"value","value":"laborum"}],"variable":[{"key":"contact","value":"65893348","description":"(Required) The ID of the Contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 52905619,\n    \"owner_id\": 64116281,\n    \"color\": \"velit sunt nostrud\",\n    \"first_name\": \"exercitation cillum ut\",\n    \"last_name\": \"eu eiusmod proident esse\",\n    \"full_name\": \"eiusmod\",\n    \"email\": \"veniam\",\n    \"photo_url\": \"Ut reprehenderit in quis nisi\",\n    \"number\": \"dolore mollit ut\",\n    \"country\": \"sit reprehenderit adipisicing dolor\",\n    \"country_calling_code\": \"officia et nisi\",\n    \"national_number\": \"esse id irure incididunt\",\n    \"typeted_number\": \"tempor officia voluptate laboris in\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"reprehenderit nostrud\",\n    \"opt_in_request_at\": \"sint fugiat in aute\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -17853323\n      },\n      {\n        \"number_id\": -94467971\n      }\n    ],\n    \"opt_in_at\": \"occaecat non velit dolor ipsum\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 2176055,\n        \"number_id\": -98531989,\n        \"name\": \"mollit sit\",\n        \"disabled\": true,\n        \"timestamp\": \"magna aliqua elit eu d\",\n        \"value\": false\n      },\n      {\n        \"id\": -39019147,\n        \"number_id\": 54767250,\n        \"name\": \"dolore sint minim\",\n        \"disabled\": true,\n        \"timestamp\": \"consequat deserunt reprehenderi\",\n        \"value\": false\n      }\n    ],\n    \"created_at\": \"sunt reprehenderit velit\",\n    \"updated_at\": \"cupidatat magna ex\",\n    \"integration_vendor_id\": 51134118,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": -82113929,\n        \"key\": \"laborum\",\n        \"name\": \"esse\",\n        \"photo_url\": \"elit\"\n      },\n      {\n        \"id\": -48574796,\n        \"key\": \"i\",\n        \"name\": \"esse enim\",\n        \"photo_url\": \"nostrud sunt Lorem quis\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 96816398,\n        \"custom_field_id\": 1033466,\n        \"contact_id\": 96986164,\n        \"field_key\": \"nisi officia velit in\",\n        \"organization_id\": -82852209,\n        \"text\": \"deserunt voluptate laborum dolor\",\n        \"number\": -10878265,\n        \"date\": \"ut est\",\n        \"created_at\": \"m\",\n        \"updated_at\": \"ex Duis\",\n        \"value\": [\n          {\n            \"type\": \"dolor laborum\",\n            \"value\": \"eiusmod Lorem exercitation enim deserunt\"\n          },\n          {\n            \"type\": \"in dolore\",\n            \"value\": \"Ut irure ea\"\n          }\n        ]\n      },\n      {\n        \"id\": -99096519,\n        \"custom_field_id\": 48948674,\n        \"contact_id\": -10512439,\n        \"field_key\": \"tempor\",\n        \"organization_id\": 94344648,\n        \"text\": \"eiusmod eu id labore\",\n        \"number\": -50904371,\n        \"date\": \"ut cillum\",\n        \"created_at\": \"ullamco ea\",\n        \"updated_at\": \"ut proident ullamco\",\n        \"value\": [\n          {\n            \"type\": \"ut nulla\",\n            \"value\": \"in elit sunt\"\n          },\n          {\n            \"type\": \"dolore non nulla\",\n            \"value\": \"occ\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": -54723404,\n        \"name\": \"commodo dolor fugiat\",\n        \"label\": \"ea sunt qui aliquip\",\n        \"created_at\": \"culpa ex sunt et pariatur\"\n      },\n      {\n        \"id\": 20521680,\n        \"name\": \"ex nostrud\",\n        \"label\": \"sit consequ\",\n        \"created_at\": \"mollit reprehenderit aliquip\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -47381287,\n        \"text\": \"eu elit Lorem\",\n        \"created_at\": \"do\",\n        \"updated_at\": \"qui\"\n      },\n      {\n        \"id\": -60704853,\n        \"text\": \"minim amet \",\n        \"created_at\": \"do occaecat reprehenderit non\",\n        \"updated_at\": \"nisi do Duis qui pariatur\"\n      }\n    ]\n  },\n  {\n    \"id\": 46758187,\n    \"owner_id\": 20435165,\n    \"color\": \"Duis enim\",\n    \"first_name\": \"ea ipsum tempor\",\n    \"last_name\": \"ex dolor voluptate mollit et\",\n    \"full_name\": \"consequat ea par\",\n    \"email\": \"ut qui est enim magna\",\n    \"photo_url\": \"tempor anim aliquip nulla\",\n    \"number\": \"nisi\",\n    \"country\": \"elit consequat\",\n    \"country_calling_code\": \"elit\",\n    \"national_number\": \"mollit\",\n    \"typeted_number\": \"proident\",\n    \"is_blocked\": true,\n    \"opt_out\": false,\n    \"opt_out_at\": \"tempor ut sint\",\n    \"opt_in_request_at\": \"ea labore reprehenderit\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1647182\n      },\n      {\n        \"number_id\": -13711920\n      }\n    ],\n    \"opt_in_at\": \"sint\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -52023001,\n        \"number_id\": -14692461,\n        \"name\": \"consequat ut Excepteur sunt\",\n        \"disabled\": true,\n        \"timestamp\": \"ex amet\",\n        \"value\": false\n      },\n      {\n        \"id\": -76282945,\n        \"number_id\": -2598584,\n        \"name\": \"do\",\n        \"disabled\": false,\n        \"timestamp\": \"pariatur labore\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"sunt velit\",\n    \"updated_at\": \"minim sunt est amet\",\n    \"integration_vendor_id\": -10231326,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 43372668,\n        \"key\": \"veniam\",\n        \"name\": \"Ut enim\",\n        \"photo_url\": \"Excepteur minim pariatur consectetur in\"\n      },\n      {\n        \"id\": 96661652,\n        \"key\": \"consequat deserunt non esse anim\",\n        \"name\": \"veniam\",\n        \"photo_url\": \"dolore\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 57635661,\n        \"custom_field_id\": 82407230,\n        \"contact_id\": 93033787,\n        \"field_key\": \"elit proident qui ut\",\n        \"organization_id\": 21021533,\n        \"text\": \"sint dolore in Exce\",\n        \"number\": 9764723,\n        \"date\": \"ad incididunt aliquip\",\n        \"created_at\": \"in dolor\",\n        \"updated_at\": \"laborum dolor id\",\n        \"value\": [\n          {\n            \"type\": \"officia nulla laborum ad\",\n            \"value\": \"amet\"\n          },\n          {\n            \"type\": \"exercitation aute\",\n            \"value\": \"esse mi\"\n          }\n        ]\n      },\n      {\n        \"id\": -1522312,\n        \"custom_field_id\": -22221973,\n        \"contact_id\": 54997750,\n        \"field_key\": \"Lorem ea cillum\",\n        \"organization_id\": -73095697,\n        \"text\": \"tempor comm\",\n        \"number\": 6713949,\n        \"date\": \"ve\",\n        \"created_at\": \"est tempor minim dolor\",\n        \"updated_at\": \"quis et cupidatat\",\n        \"value\": [\n          {\n            \"type\": \"nisi ut anim\",\n            \"value\": \"veli\"\n          },\n          {\n            \"type\": \"in velit ipsum ut\",\n            \"value\": \"aliquip\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": -58872352,\n        \"name\": \"est ex\",\n        \"label\": \"aut\",\n        \"created_at\": \"mol\"\n      },\n      {\n        \"id\": -97163538,\n        \"name\": \"dolor in proident\",\n        \"label\": \"co\",\n        \"created_at\": \"adipisicing\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -32205704,\n        \"text\": \"esse consectetur\",\n        \"created_at\": \"occaecat exercitation nisi\",\n        \"updated_at\": \"ea irure\"\n      },\n      {\n        \"id\": -49262926,\n        \"text\": \"eiusmod ut anim ipsum do\",\n        \"created_at\": \"nulla\",\n        \"updated_at\": \"ex aliqua cupidatat\"\n      }\n    ]\n  }\n]"}],"_postman_id":"4febade4-9fb0-4911-a275-99ab53dbbcd0"},{"name":"Get user's contacts","id":"345576fa-5fe5-4b8d-8f8f-13eb0d5415b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts?search=&length=10&page=1&sortBy=laborum&sortOrder=desc&filtersList={\"filters\":[{\"key\":\"culpa sit\",\"operator\":\"nulla elit\",\"value\":\"elit reprehenderit proident irure\"},{\"key\":\"do cillum dolor Duis\",\"operator\":\"anim\",\"value\":\"Lorem consequat\"}]}&filtersList={\"filters\":[{\"key\":\"aliqua amet nostrud\",\"operator\":\"proident in\",\"value\":\"est proident Lorem\"},{\"key\":\"dolor occaecat dolor dolore\",\"operator\":\"Excepteur eiusmod dolor quis\",\"value\":\"fugiat do in Ut anim\"}]}","description":"<p>For a given user, returns all contacts that have been created in the account. A paginated list of contacts will be returned to you.<br /><br /> The number of contacts per page can be changed. It’s set to 10 by defalt and can be switched to a maximum of 100 contacts per page.</p>\n","urlObject":{"path":["contacts"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Filter by first_name, last_name, email, number, formatted_number, tag label</p>\n","type":"text/plain"},"key":"search","value":""},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"length","value":"10"},{"description":{"content":"<p>Page</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Sort by field (first_name, last_name, email, number, formatted_number, tag label, etc)</p>\n","type":"text/plain"},"key":"sortBy","value":"laborum"},{"description":{"content":"<p>Sorting order</p>\n","type":"text/plain"},"key":"sortOrder","value":"desc"},{"description":{"content":"<p>List of filters to apply</p>\n","type":"text/plain"},"key":"filtersList","value":"{\"filters\":[{\"key\":\"culpa sit\",\"operator\":\"nulla elit\",\"value\":\"elit reprehenderit proident irure\"},{\"key\":\"do cillum dolor Duis\",\"operator\":\"anim\",\"value\":\"Lorem consequat\"}]}"},{"description":{"content":"<p>List of filters to apply</p>\n","type":"text/plain"},"key":"filtersList","value":"{\"filters\":[{\"key\":\"aliqua amet nostrud\",\"operator\":\"proident in\",\"value\":\"est proident Lorem\"},{\"key\":\"dolor occaecat dolor dolore\",\"operator\":\"Excepteur eiusmod dolor quis\",\"value\":\"fugiat do in Ut anim\"}]}"}],"variable":[]}},"response":[{"id":"1c67d4f4-a56f-471c-a3e3-1687612ca38f","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts?search=&length=10&page=1&sortBy=laborum&sortOrder=desc&filtersList=[object Object]&filtersList=[object Object]","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts"],"query":[{"key":"search","value":""},{"key":"length","value":"10"},{"key":"page","value":"1"},{"key":"sortBy","value":"laborum"},{"key":"sortOrder","value":"desc"},{"key":"filtersList","value":"[object Object]"},{"key":"filtersList","value":"[object Object]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 8096796,\n      \"owner_id\": -47116527,\n      \"color\": \"nulla in do\",\n      \"first_name\": \"sit reprehenderit magna voluptate ea\",\n      \"last_name\": \"est d\",\n      \"full_name\": \"laborum\",\n      \"email\": \"in elit cupidatat\",\n      \"photo_url\": \"cillum non\",\n      \"number\": \"sunt cillum\",\n      \"country\": \"commodo nostrud anim ex\",\n      \"country_calling_code\": \"officia qui incididunt et\",\n      \"national_number\": \"voluptate ullamco mollit nisi\",\n      \"typeted_number\": \"enim sint culpa a\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"deserunt cillum aliqua elit\",\n      \"opt_in_request_at\": \"officia quis\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 51439264\n        },\n        {\n          \"number_id\": -84034005\n        }\n      ],\n      \"opt_in_at\": \"ea sed proident irure fugiat\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -7791621,\n          \"number_id\": -41795645,\n          \"name\": \"anim officia sint ullamco\",\n          \"disabled\": false,\n          \"timestamp\": \"incididunt ut\",\n          \"value\": false\n        },\n        {\n          \"id\": 59950039,\n          \"number_id\": 3565041,\n          \"name\": \"anim dolore tempor fugiat ipsum\",\n          \"disabled\": false,\n          \"timestamp\": \"ex id anim sint sit\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"in enim incididunt ex cupidatat\",\n      \"updated_at\": \"proident do ut\",\n      \"integration_vendor_id\": 51464717,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 6265397,\n          \"key\": \"ullamco\",\n          \"name\": \"dolor\",\n          \"photo_url\": \"qui sit enim dolor elit\"\n        },\n        {\n          \"id\": -99777723,\n          \"key\": \"ad\",\n          \"name\": \"anim ut reprehenderit\",\n          \"photo_url\": \"dolor in mollit in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -53193119,\n          \"custom_field_id\": -34819703,\n          \"contact_id\": 33742889,\n          \"field_key\": \"mollit elit ea\",\n          \"organization_id\": -35104886,\n          \"text\": \"sint aliquip\",\n          \"number\": 89536031,\n          \"date\": \"nisi laborum sunt\",\n          \"created_at\": \"eiusmod sunt\",\n          \"updated_at\": \"a\",\n          \"value\": [\n            {\n              \"type\": \"Ut consectetur deserunt\",\n              \"value\": \"ullamco\"\n            },\n            {\n              \"type\": \"et Ut quis\",\n              \"value\": \"non nost\"\n            }\n          ]\n        },\n        {\n          \"id\": -20588006,\n          \"custom_field_id\": -78052965,\n          \"contact_id\": 20220698,\n          \"field_key\": \"officia labore\",\n          \"organization_id\": 15933253,\n          \"text\": \"Excepteur\",\n          \"number\": -20577886,\n          \"date\": \"in sit temp\",\n          \"created_at\": \"in amet exercitation\",\n          \"updated_at\": \"sunt dolor Excepteur in pariatur\",\n          \"value\": [\n            {\n              \"type\": \"commodo sed\",\n              \"value\": \"mollit eiusmod dolor\"\n            },\n            {\n              \"type\": \"laborum in proident et occaecat\",\n              \"value\": \"Lorem in dolor\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -30102850,\n          \"name\": \"irure amet Ut deserunt\",\n          \"label\": \"voluptate id\",\n          \"created_at\": \"dolore consectetur ipsum adipisicing\"\n        },\n        {\n          \"id\": -54598851,\n          \"name\": \"occaecat do sed id\",\n          \"label\": \"ex qui tempor\",\n          \"created_at\": \"veniam eu labore irure ex\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -95347179,\n          \"text\": \"irure mollit\",\n          \"created_at\": \"L\",\n          \"updated_at\": \"mollit pariatur ipsum aliqua\"\n        },\n        {\n          \"id\": -3515187,\n          \"text\": \"veniam voluptate sed\",\n          \"created_at\": \"quis eiusmod est occaecat\",\n          \"updated_at\": \"ullamco dolor voluptate reprehenderit\"\n        }\n      ]\n    },\n    {\n      \"id\": 87143238,\n      \"owner_id\": 7490710,\n      \"color\": \"mollit exercitation ad\",\n      \"first_name\": \"culpa nulla reprehender\",\n      \"last_name\": \"in\",\n      \"full_name\": \"est\",\n      \"email\": \"nulla cupidatat\",\n      \"photo_url\": \"in officia et eiusmod\",\n      \"number\": \"reprehenderit des\",\n      \"country\": \"do qui amet pariatur\",\n      \"country_calling_code\": \"cupidatat commodo magna proident\",\n      \"national_number\": \"pariatur Lorem \",\n      \"typeted_number\": \"consectetur labore sunt\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"esse anim\",\n      \"opt_in_request_at\": \"cupidatat incididunt mollit\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -6384669\n        },\n        {\n          \"number_id\": 24834823\n        }\n      ],\n      \"opt_in_at\": \"ea Duis minim officia\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -68439296,\n          \"number_id\": -91590470,\n          \"name\": \"sunt et\",\n          \"disabled\": true,\n          \"timestamp\": \"consectetur quis enim exercitation\",\n          \"value\": false\n        },\n        {\n          \"id\": 51161233,\n          \"number_id\": 53456450,\n          \"name\": \"aliqua amet in esse\",\n          \"disabled\": false,\n          \"timestamp\": \"in\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"dolore occaecat aliquip\",\n      \"updated_at\": \"nisi in et eiusmod Lorem\",\n      \"integration_vendor_id\": -73402801,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 44293646,\n          \"key\": \"laborum mollit voluptate\",\n          \"name\": \"do a\",\n          \"photo_url\": \"dolor ad quis est\"\n        },\n        {\n          \"id\": -16137953,\n          \"key\": \"anim\",\n          \"name\": \"quis commodo ex aliquip\",\n          \"photo_url\": \"tempor in nostrud\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -39634509,\n          \"custom_field_id\": -39930170,\n          \"contact_id\": -24759057,\n          \"field_key\": \"ad veniam sint\",\n          \"organization_id\": 54260008,\n          \"text\": \"ut velit\",\n          \"number\": 85446122,\n          \"date\": \"deserunt dolore ad\",\n          \"created_at\": \"est amet\",\n          \"updated_at\": \"dolore ullamco id aliqua Ut\",\n          \"value\": [\n            {\n              \"type\": \"sed deserunt culpa incididunt irure\",\n              \"value\": \"enim\"\n            },\n            {\n              \"type\": \"in mollit velit officia fugiat\",\n              \"value\": \"velit eu quis\"\n            }\n          ]\n        },\n        {\n          \"id\": -86457264,\n          \"custom_field_id\": 89227037,\n          \"contact_id\": -99292018,\n          \"field_key\": \"aliquip consectetur laborum\",\n          \"organization_id\": -96631066,\n          \"text\": \"dolore commodo cupidatat labore\",\n          \"number\": 17440419,\n          \"date\": \"Excepteur in pariatur labore\",\n          \"created_at\": \"elit laborum\",\n          \"updated_at\": \"aliqua est\",\n          \"value\": [\n            {\n              \"type\": \"reprehenderit ad deserunt anim in\",\n              \"value\": \"in anim\"\n            },\n            {\n              \"type\": \"labore aute Duis id\",\n              \"value\": \"laborum sint\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -27656751,\n          \"name\": \"dolor ea enim cupidatat Duis\",\n          \"label\": \"nulla culpa id\",\n          \"created_at\": \"ullamco\"\n        },\n        {\n          \"id\": -98556160,\n          \"name\": \"mollit incididunt et\",\n          \"label\": \"velit aute\",\n          \"created_at\": \"exercitation consectetur\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -55899888,\n          \"text\": \"cillum magna deserunt dolor\",\n          \"created_at\": \"exercitation laboris proident ex\",\n          \"updated_at\": \"deserunt Excepteur\"\n        },\n        {\n          \"id\": -43028372,\n          \"text\": \"ullamco\",\n          \"created_at\": \"aliqua mollit Excepteur\",\n          \"updated_at\": \"cillum\"\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"345576fa-5fe5-4b8d-8f8f-13eb0d5415b2"},{"name":"Create contact","id":"57f25fd9-2de8-4c9c-97f4-79bf7a6eb255","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts?number=&integration_id=65893348&first_name=&last_name=&email=&color_index=65893348&contact_integration_id=65893348&phone_type=","description":"<p>This endpoint is used to create a new contact. The new contact will be assigned a unique id which can be used to look it up later. <br /><br />Additionally, you can configure integration with a 3rd party application to perform a one-time sync of new contacts from an external system into yours. <br /><br /> For instance, you can easily integrate with HubSpot, ActiveCampaign, Pipedrive, etc..</p>\n","urlObject":{"path":["contacts"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Number</p>\n","type":"text/plain"},"key":"number","value":""},{"description":{"content":"<p>Integration id</p>\n","type":"text/plain"},"key":"integration_id","value":"65893348"},{"description":{"content":"<p>First name</p>\n","type":"text/plain"},"key":"first_name","value":""},{"description":{"content":"<p>Last name</p>\n","type":"text/plain"},"key":"last_name","value":""},{"description":{"content":"<p>Email</p>\n","type":"text/plain"},"key":"email","value":""},{"description":{"content":"<p>Color index</p>\n","type":"text/plain"},"key":"color_index","value":"65893348"},{"description":{"content":"<p>Contact integration id</p>\n","type":"text/plain"},"key":"contact_integration_id","value":"65893348"},{"description":{"content":"<p>Phone type (phone, etc)</p>\n","type":"text/plain"},"key":"phone_type","value":""}],"variable":[]}},"response":[{"id":"bc406477-330c-4ca5-ad6d-956d55111e85","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts?number=&integration_id=65893348&first_name=&last_name=&email=&color_index=65893348&contact_integration_id=65893348&phone_type=","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts"],"query":[{"key":"number","value":""},{"key":"integration_id","value":"65893348"},{"key":"first_name","value":""},{"key":"last_name","value":""},{"key":"email","value":""},{"key":"color_index","value":"65893348"},{"key":"contact_integration_id","value":"65893348"},{"key":"phone_type","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"57f25fd9-2de8-4c9c-97f4-79bf7a6eb255"},{"name":"Delete contacts","id":"f854b645-926b-46ad-97a4-231f6e10f069","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts?ids[]=-57824058&ids[]=76665986&bulk_all=0","description":"<p>Delete contacts</p>\n","urlObject":{"path":["contacts"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"ids[]","value":"-57824058"},{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"ids[]","value":"76665986"},{"description":{"content":"<p>Bulk All</p>\n","type":"text/plain"},"key":"bulk_all","value":"0"}],"variable":[]}},"response":[{"id":"aa69a7fd-27fe-4a83-bc99-013cc0c51255","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts?ids[]=91455370&ids[]=19715930&bulk_all=0","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts"],"query":[{"key":"ids[]","value":"91455370"},{"key":"ids[]","value":"19715930"},{"key":"bulk_all","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"[]\""},{"id":"94c40646-bdd7-4cd4-8dbf-6fb42fed48ba","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts?ids[]=91455370&ids[]=19715930&bulk_all=0","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts"],"query":[{"key":"ids[]","value":"91455370"},{"key":"ids[]","value":"19715930"},{"key":"bulk_all","value":"0"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f854b645-926b-46ad-97a4-231f6e10f069"},{"name":"Attach tags to contact","id":"922144f0-714d-4d0c-b477-99a9af3a94ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"contact_ids\": [\n    1,\n    1\n  ],\n  \"bulk_all\": false,\n  \"tags\": [\n    {\n      \"id\": 1\n    },\n    {\n      \"id\": 1\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//contacts/tags","description":"<p>Add tags to contact</p>\n","urlObject":{"path":["contacts","tags"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"891e830b-a6f9-4490-b184-e3349c4cfa3d","name":"Returns appliead tags instance.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"contact_ids\": [\n    1,\n    1\n  ],\n  \"bulk_all\": false,\n  \"tags\": [\n    {\n      \"id\": 1\n    },\n    {\n      \"id\": 1\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//contacts/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 1,\n    \"owner_id\": 1,\n    \"organization_id\": 1,\n    \"label\": \"Test tag\",\n    \"name\": \"test-tag\",\n    \"type\": \"organization\",\n    \"classname\": \"light\",\n    \"created_at\": \"2022-09-27T12:11:50.000000Z\",\n    \"updated_at\": \"2022-09-27T12:11:50.000000Z\"\n  },\n  {\n    \"id\": 1,\n    \"owner_id\": 1,\n    \"organization_id\": 1,\n    \"label\": \"Test tag\",\n    \"name\": \"test-tag\",\n    \"type\": \"organization\",\n    \"classname\": \"light\",\n    \"created_at\": \"2022-09-27T12:11:50.000000Z\",\n    \"updated_at\": \"2022-09-27T12:11:50.000000Z\"\n  }\n]"},{"id":"48becb34-6344-49d3-998b-138970fc2165","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"contact_ids\": [\n    1,\n    1\n  ],\n  \"bulk_all\": false,\n  \"tags\": [\n    {\n      \"id\": 1\n    },\n    {\n      \"id\": 1\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//contacts/tags"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"922144f0-714d-4d0c-b477-99a9af3a94ef"},{"name":"Remove bulk tags","id":"7e3cf7ec-c3e8-4aa1-b2ff-7cfacb23ce2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/tags/remove?contact_ids=-57824058&contact_ids=76665986&tags=-57824058&tags=76665986&remove_all=true","description":"<p>This endpoint allows for removing tag array in bulk. Tags with the given tag ids get erased from contacts with given ids.</p>\n","urlObject":{"path":["contacts","tags","remove"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"contact_ids","value":"-57824058"},{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"contact_ids","value":"76665986"},{"description":{"content":"<p>(Required) The IDs of the Tags</p>\n","type":"text/plain"},"key":"tags","value":"-57824058"},{"description":{"content":"<p>(Required) The IDs of the Tags</p>\n","type":"text/plain"},"key":"tags","value":"76665986"},{"description":{"content":"<p>Remove All</p>\n","type":"text/plain"},"key":"remove_all","value":"true"}],"variable":[]}},"response":[{"id":"78575013-5136-4fde-8a0c-062f81194b78","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/tags/remove?contact_ids=91455370&contact_ids=19715930&tags=91455370&tags=19715930&remove_all=true","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","tags","remove"],"query":[{"key":"contact_ids","value":"91455370"},{"key":"contact_ids","value":"19715930"},{"key":"tags","value":"91455370"},{"key":"tags","value":"19715930"},{"key":"remove_all","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"contacts\": [\n    23191042,\n    -63115680\n  ],\n  \"tags\": [\n    80814976,\n    666442\n  ]\n}"},{"id":"bc576443-51ed-4db7-bfdc-dc3d17402e7f","name":"Organization Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/tags/remove?contact_ids=91455370&contact_ids=19715930&tags=91455370&tags=19715930&remove_all=true","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","tags","remove"],"query":[{"key":"contact_ids","value":"91455370"},{"key":"contact_ids","value":"19715930"},{"key":"tags","value":"91455370"},{"key":"tags","value":"19715930"},{"key":"remove_all","value":"true"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7e3cf7ec-c3e8-4aa1-b2ff-7cfacb23ce2b"},{"name":"Get contacts by tag","id":"fc4459cc-9966-405a-9ef6-4ecf47027503","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/tags/:tag?page=1&search=laborum&limit=20","description":"<p>Get paginated contacts which have provided tag</p>\n","urlObject":{"path":["contacts","tags",":tag"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The page of a collection to return.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The string to search for..</p>\n","type":"text/plain"},"key":"search","value":"laborum"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"limit","value":"20"}],"variable":[{"id":"57a80ca9-292c-4ae2-bd5b-b759b08d70ae","description":{"content":"<p>(Required) The ID of the Tag</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"tag"}]}},"response":[{"id":"8f5bdb2c-4529-43ea-996e-6287fcc35268","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/tags/:tag?page=1&search=laborum&limit=20","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","tags",":tag"],"query":[{"key":"page","value":"1"},{"key":"search","value":"laborum"},{"key":"limit","value":"20"}],"variable":[{"key":"tag","value":"65893348","description":"(Required) The ID of the Tag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"fc4459cc-9966-405a-9ef6-4ecf47027503"},{"name":"Block contact","id":"77ca71e6-9060-4cfd-92f1-5bced7602503","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/block/:contact","description":"<p>The request blocks an existing contact with a given id from the contact list.</p>\n","urlObject":{"path":["contacts","block",":contact"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"a2fa61af-9e20-42b6-b6d7-cf136342ad39","description":{"content":"<p>(Required) The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"contact"}]}},"response":[{"id":"98c4dbfe-323f-4ef0-9fc0-0d2a4f0513d8","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/block/:contact","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","block",":contact"],"variable":[{"key":"contact","value":"65893348","description":"(Required) The ID of the Contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"77ca71e6-9060-4cfd-92f1-5bced7602503"},{"name":"Unblock contact","id":"1662d05a-ecf7-4870-b113-69e3bfffd7ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/unblock/:contact","description":"<p>The request allows for unblocking a contact by the blocked contact id and adds it back to the contact list.</p>\n","urlObject":{"path":["contacts","unblock",":contact"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"2a99e049-0777-4d6a-89f7-afd0cafe2e97","description":{"content":"<p>(Required) The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"contact"}]}},"response":[{"id":"eaf52d92-d59b-4c70-9ee2-2b573eb018aa","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/unblock/:contact","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","unblock",":contact"],"variable":[{"key":"contact","value":"65893348","description":"(Required) The ID of the Contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"1662d05a-ecf7-4870-b113-69e3bfffd7ca"},{"name":"Set the list of columns for Contacts table","id":"6db4e822-aca1-46c6-9c8a-9f5eced3a616","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/fields?contact_fields[]=name&contact_fields[]=city","description":"<p>Set the list of contact fields to display on Contacts page for current user</p>\n","urlObject":{"path":["contacts","fields"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"key":"contact_fields[]","value":"name"},{"key":"contact_fields[]","value":"city"}],"variable":[]}},"response":[{"id":"e3da4e61-f8de-450f-b741-18e1c5eaa5b8","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"contact_fields\": {\n    \"id\": 91694471,\n    \"user_id\": 70349564,\n    \"organization_id\": 24990778\n  }\n}"}],"_postman_id":"6db4e822-aca1-46c6-9c8a-9f5eced3a616"},{"name":"Get contact's custom fields","id":"a362fe34-3f38-4b50-9a8a-e07e2c35d287","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/custom-fields/:contact","description":"<p>This request fetches properties of all the fields of a particular contact matching the required id, including custom fields. The endpoint offers the mechanism of creating and adding any custom field, such as city, to the system.<br /><br /> Each contact has four fields by defaut:</p><ul><li>First name</li><li>Last name</li><li>Email</li><li>Phone number</li></ul><p></p>\n","urlObject":{"path":["contacts","custom-fields",":contact"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"23605f88-395f-4122-86e1-0f79caa58a78","description":{"content":"<p>(Required) ID of contact</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"contact"}]}},"response":[{"id":"9db2ff9d-50aa-4187-b610-18db14916eeb","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/custom-fields/:contact","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","custom-fields",":contact"],"variable":[{"key":"contact","value":"-46945205","description":"(Required) ID of contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"Age\",\n      \"field_key\": \"custom.age\",\n      \"visiable\": 0,\n      \"type\": \"number\",\n      \"value\": {\n        \"type\": \"number\",\n        \"value\": \"30\"\n      }\n    },\n    {\n      \"id\": 1,\n      \"name\": \"Age\",\n      \"field_key\": \"custom.age\",\n      \"visiable\": 0,\n      \"type\": \"number\",\n      \"value\": {\n        \"type\": \"number\",\n        \"value\": \"30\"\n      }\n    }\n  ]\n}"}],"_postman_id":"a362fe34-3f38-4b50-9a8a-e07e2c35d287"},{"name":"Update contact`s custom field","id":"6505a9da-fc90-4318-8a6b-306d59f9494c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/:contact/custom-fields?custom_field_key=custom.email&value=email@example.com","description":"<p>This request allows for updating properties of each custom field separately by contact id and a particular field’s key. As a result, the endpoint returns a contact’s fields already updated. <br /><br />So as we call all the custom fields again, we will see this custom field updated.<br /><br /><em>Note.</em> For Custom field of the date type, the format is <code>YYYY-MM-DD</code>.</p>\n","urlObject":{"path":["contacts",":contact","custom-fields"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Custom Field Key</p>\n","type":"text/plain"},"key":"custom_field_key","value":"custom.email"},{"description":{"content":"<p>(Required) Value</p>\n","type":"text/plain"},"key":"value","value":"email@example.com"}],"variable":[{"id":"efcaf49f-872a-4a0f-8ea1-2481b45ada4e","description":{"content":"<p>(Required) ID of contact</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"contact"}]}},"response":[{"id":"2f2751ab-d2f8-465e-a985-e76be9d12b2c","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/:contact/custom-fields?custom_field_key=custom.email&value=email@example.com","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts",":contact","custom-fields"],"query":[{"key":"custom_field_key","value":"custom.email"},{"key":"value","value":"email@example.com"}],"variable":[{"key":"contact","value":"-46945205","description":"(Required) ID of contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"6505a9da-fc90-4318-8a6b-306d59f9494c"},{"name":"Export contacts","id":"aef54901-7cba-4afa-aba4-b5454b0aa6a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/export","description":"<p>This API endpoint request returns a list of all the user’s contacts as a link to the CSV file for download.</p>\n","urlObject":{"path":["contacts","export"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"1d6ed390-8b4d-436d-b61a-56e8f1eadf29","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/export"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"url\": \"irure esse anim id\"\n  },\n  {\n    \"url\": \"exercitation in ut\"\n  }\n]"}],"_postman_id":"aef54901-7cba-4afa-aba4-b5454b0aa6a1"},{"name":"Get contact filters","id":"9be15353-932e-49ca-b9c9-8d8eebd4bb6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/filters","description":"<p>This request returnes a list of filters that belong to the Contacts section by default and are used there for search.</p>\n","urlObject":{"path":["contacts","filters"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"9dc9839d-833c-477d-9558-97621acd7abf","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/filters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"operators\": [\n    \"sed ip\",\n    \"dolore labore sit\"\n  ]\n}"}],"_postman_id":"9be15353-932e-49ca-b9c9-8d8eebd4bb6c"},{"name":"Get regions for filter","id":"58715225-530a-49c8-8074-3918239290f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/filters/regions","description":"<p>This request returnes a list of default states that are used for filtering and search in the Contacts section.</p>\n","urlObject":{"path":["contacts","filters","regions"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"96be8c0b-ec1f-4d61-8e65-1b705f290575","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/filters/regions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"58715225-530a-49c8-8074-3918239290f1"},{"name":"Get time zones for filter","id":"06d71111-6767-4cde-a57e-5843de3f7069","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/filters/time-zones","description":"<p>This request returnes a list of world time zones that are used for filtering and search in the Contacts section.</p>\n","urlObject":{"path":["contacts","filters","time-zones"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"0b2276da-c859-4e42-8d33-bcc408d1282c","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/filters/time-zones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"key\": \"Newfoundland\",\n    \"label\": \"UTC -03:30 Newfoundland\"\n  },\n  {\n    \"key\": \"Newfoundland\",\n    \"label\": \"UTC -03:30 Newfoundland\"\n  }\n]"}],"_postman_id":"06d71111-6767-4cde-a57e-5843de3f7069"},{"name":"Get Opt-In statuses for filter","id":"ee50d968-bb07-4427-a1db-2ed2df217139","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/filters/opt-in-statuses","description":"<p>Get Opt-In statuses for filter</p>\n","urlObject":{"path":["contacts","filters","opt-in-statuses"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"6c6436aa-e5a6-47ab-9bec-a1926a290952","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/filters/opt-in-statuses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"key\": \"single\",\n    \"label\": \"Single\"\n  },\n  {\n    \"key\": \"single\",\n    \"label\": \"Single\"\n  }\n]"}],"_postman_id":"ee50d968-bb07-4427-a1db-2ed2df217139"},{"name":"Get filtered contact count","id":"2060ea47-11dd-4a7b-ad8b-4a6a979d5b31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/filters/count?package_count=-46945205","description":"<p>Fetches the exact count of contacts in a filtered contact package.</p>\n","urlObject":{"path":["contacts","filters","count"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Package Count</p>\n","type":"text/plain"},"key":"package_count","value":"-46945205"}],"variable":[]}},"response":[{"id":"7c4202ec-7c07-43e5-bc97-4de00a42376d","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/filters/count?package_count=-46945205","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","filters","count"],"query":[{"key":"package_count","value":"-46945205"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": -51021514,\n  \"packages\": 18192882,\n  \"is_valid\": false\n}"}],"_postman_id":"2060ea47-11dd-4a7b-ad8b-4a6a979d5b31"},{"name":"Create contact note","id":"86e0a2d9-70e1-4b29-8c68-d13e8196adb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/note/:contact/create?text=laborum","description":"<p>This request enables you to create a string containing a note for a contact indicated by the contact id. The note will be attached to the corresponding section.</p>\n","urlObject":{"path":["contacts","note",":contact","create"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Package Count</p>\n","type":"text/plain"},"key":"text","value":"laborum"}],"variable":[{"id":"afaf0c97-d9e6-4f81-bc06-ccdde77974bb","description":{"content":"<p>(Required) The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"contact"}]}},"response":[{"id":"56f81b9e-1034-491e-bdf8-3ed70aa6cdb0","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/note/:contact/create?text=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","note",":contact","create"],"query":[{"key":"text","value":"laborum"}],"variable":[{"key":"contact","value":"65893348","description":"(Required) The ID of the Contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"text\": \"cupidatat ea labore\",\n  \"created_at\": \"dolore dolore anim\"\n}"}],"_postman_id":"86e0a2d9-70e1-4b29-8c68-d13e8196adb9"},{"name":"Remove note","id":"3b015a56-d791-4d09-9525-9d4dae11bebf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/note/:note","description":"<p>This request enables you to permanently remove an existing note indicated by the id of the note. </p>\n","urlObject":{"path":["contacts","note",":note"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"4f4837ef-598c-4be8-abea-cf254e75727d","description":{"content":"<p>(Required) The ID of the Note</p>\n","type":"text/plain"},"type":"any","value":"","key":"note"}]}},"response":[{"id":"8271dbec-6146-4264-a6a2-497e24627486","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/note/:note","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","note",":note"],"variable":[{"key":"note","value":"","description":"(Required) The ID of the Note"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Note succesfully deleted\"\n}"}],"_postman_id":"3b015a56-d791-4d09-9525-9d4dae11bebf"},{"name":"Update note","id":"a6edbc28-acad-41bb-8289-d6aeb784467e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/note/:note?text=laborum","description":"<p>This request enables you to change the value of an existing note’s property with any text provided. The update is applied to the note with a given note id.</p>\n","urlObject":{"path":["contacts","note",":note"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Package Count</p>\n","type":"text/plain"},"key":"text","value":"laborum"}],"variable":[{"id":"df0f4b24-730f-4afd-96b8-74ad9c5828e8","description":{"content":"<p>(Required) The ID of the Note</p>\n","type":"text/plain"},"type":"any","value":"","key":"note"}]}},"response":[{"id":"e25f2aca-f42f-4ffe-b03a-e492e6befd6d","name":"OK","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/note/:note?text=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","note",":note"],"query":[{"key":"text","value":"laborum"}],"variable":[{"key":"note","value":"","description":"(Required) The ID of the Note"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"text\": \"cupidatat ea labore\",\n  \"created_at\": \"dolore dolore anim\"\n}"}],"_postman_id":"a6edbc28-acad-41bb-8289-d6aeb784467e"},{"name":"Send opt-in request to conversation`s contact","id":"6d9ab8e3-ee61-46e7-8b53-ced3d594337d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/opt-in/request/:conversation","description":"<p>This endpoint enables an opt-in request feature within your application in the settings.<br /><br /> As soon as the feature becomes enabled by the user, this will require every contact to confirm their phone number in order to start a conversation with the user. This endpoint will make it possibe to make a similar request from the conversation window through the <code>Send confirmation</code>  button.</p>\n","urlObject":{"path":["contacts","opt-in","request",":conversation"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"dc3daa67-45ef-453f-b1fe-7b5cc0bd977e","description":{"content":"<p>(Required) Conversation id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"conversation"}]}},"response":[{"id":"c82c2da8-a824-4599-86c6-5612b449216a","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/opt-in/request/:conversation","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","opt-in","request",":conversation"],"variable":[{"key":"conversation","value":"27950450","description":"(Required) Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"contact\": {\n    \"id\": -13898378,\n    \"owner_id\": -87500306,\n    \"color\": \"dolor eiusmod in\",\n    \"first_name\": \"Lorem mollit ullamco\",\n    \"last_name\": \"ea eu\",\n    \"full_name\": \"enim eu\",\n    \"email\": \"sint anim laboris e\",\n    \"photo_url\": \"in anim ullamco\",\n    \"number\": \"anim fugia\",\n    \"country\": \"qui id anim\",\n    \"country_calling_code\": \"anim dolore\",\n    \"national_number\": \"id dolor dolor incididunt laborum\",\n    \"typeted_number\": \"minim pariatur\",\n    \"is_blocked\": false,\n    \"opt_out\": true,\n    \"opt_out_at\": \"eiu\",\n    \"opt_in_request_at\": \"qui incididunt\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -2772044\n      },\n      {\n        \"number_id\": -37672971\n      }\n    ],\n    \"opt_in_at\": \"sunt culpa\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -56913938,\n        \"number_id\": -71768526,\n        \"name\": \"elit in nulla\",\n        \"disabled\": false,\n        \"timestamp\": \"qui voluptate pari\",\n        \"value\": true\n      },\n      {\n        \"id\": 78169388,\n        \"number_id\": 8453784,\n        \"name\": \"ea consequat culpa minim\",\n        \"disabled\": false,\n        \"timestamp\": \"Ut ipsum adipisicing anim \",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"voluptate ad\",\n    \"updated_at\": \"anim enim consequat aliquip\",\n    \"integration_vendor_id\": 99807137,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": -36100608,\n        \"key\": \"ipsum irure\",\n        \"name\": \"sed minim velit\",\n        \"photo_url\": \"mollit deserunt proident dolor\"\n      },\n      {\n        \"id\": 94373249,\n        \"key\": \"do ea\",\n        \"name\": \"ut\",\n        \"photo_url\": \"in qui\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 80649159,\n        \"custom_field_id\": -56271640,\n        \"contact_id\": 1921652,\n        \"field_key\": \"ut cillum elit\",\n        \"organization_id\": 12856195,\n        \"text\": \"dolore enim nulla\",\n        \"number\": 62904312,\n        \"date\": \"et quis incididunt\",\n        \"created_at\": \"mollit occaecat do\",\n        \"updated_at\": \"aute magna sint Lorem\",\n        \"value\": [\n          {\n            \"type\": \"reprehe\",\n            \"value\": \"d\"\n          },\n          {\n            \"type\": \"in culpa\",\n            \"value\": \"velit fugiat aute eu consequat\"\n          }\n        ]\n      },\n      {\n        \"id\": -15416527,\n        \"custom_field_id\": -36935062,\n        \"contact_id\": 64935222,\n        \"field_key\": \"eiusmod commodo Excepteur\",\n        \"organization_id\": 82422019,\n        \"text\": \"quis consectetur\",\n        \"number\": 33891786,\n        \"date\": \"exercitation velit do dolore\",\n        \"created_at\": \"proident ut\",\n        \"updated_at\": \"proident eu aliqua\",\n        \"value\": [\n          {\n            \"type\": \"minim est\",\n            \"value\": \"minim magna sit\"\n          },\n          {\n            \"type\": \"dolore ipsum\",\n            \"value\": \"eu pariatur in exercitation do\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 51785973,\n        \"name\": \"exercitation commodo dolor a\",\n        \"label\": \"Duis voluptate laboris\",\n        \"created_at\": \"tempor pariatur u\"\n      },\n      {\n        \"id\": 85944978,\n        \"name\": \"laborum consequat\",\n        \"label\": \"tempor ut veniam\",\n        \"created_at\": \"et voluptate\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -87893357,\n        \"text\": \"ad\",\n        \"created_at\": \"consectetur adipisicing aute nostrud Duis\",\n        \"updated_at\": \"dolor non culpa\"\n      },\n      {\n        \"id\": 74447398,\n        \"text\": \"occaecat v\",\n        \"created_at\": \"tempor\",\n        \"updated_at\": \"labore ea\"\n      }\n    ]\n  },\n  \"message\": {\n    \"id\": 16977843,\n    \"conversation_id\": 87265703,\n    \"automated\": true,\n    \"status\": \"elit commodo\",\n    \"type\": \"rep\",\n    \"mms_status\": \"culpa eiusmod esse\",\n    \"body\": \"mollit id incididunt\",\n    \"body_raw\": \"enim dolore velit\",\n    \"has_tagging\": true,\n    \"icon\": \"do dolor in voluptate\",\n    \"received_at\": \"pariatur sint\",\n    \"send_at\": \"et dolore fugiat aliqua ad\",\n    \"queued_at\": \"sunt Lorem dolor\",\n    \"sent_at\": \"Lorem cupidatat proident fugiat\",\n    \"delivered_at\": \"aute aliquip sunt\",\n    \"failed_at\": \"sint aliqua Ut\",\n    \"failed_reason\": \"esse reprehenderit sunt\",\n    \"created_at\": \"officia irure sint anim\",\n    \"stop_on_response\": true,\n    \"record\": {\n      \"id\": -35607577,\n      \"message_id\": 27632770,\n      \"sid\": \"laboris anim ut\",\n      \"record_id\": \"quis Lorem ex ad\",\n      \"duration\": -20713135,\n      \"status\": \"id\",\n      \"url\": \"est minim Duis\",\n      \"is_voicemail\": false,\n      \"created_at\": \"est mollit\",\n      \"updated_at\": \"aute\"\n    },\n    \"user_id\": 46266893,\n    \"source_id\": -60224060,\n    \"source\": \"elit Ut proident\",\n    \"contact\": {\n      \"id\": -35388602,\n      \"owner_id\": 82639264,\n      \"color\": \"ut Duis aliqua mollit\",\n      \"first_name\": \"aliqua deserunt\",\n      \"last_name\": \"amet\",\n      \"full_name\": \"dolore ex proident minim laboris\",\n      \"email\": \"veniam aute\",\n      \"photo_url\": \"consectetur id\",\n      \"number\": \"in qui sit eiusmod\",\n      \"country\": \"dolor reprehenderit do\",\n      \"country_calling_code\": \"tempor veniam\",\n      \"national_number\": \"ipsum dolor\",\n      \"typeted_number\": \"esse eu\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"sit eu\",\n      \"opt_in_request_at\": \"ut ipsum velit enim\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 64924836\n        },\n        {\n          \"number_id\": 99206188\n        }\n      ],\n      \"opt_in_at\": \"deserunt occ\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -94941381,\n          \"number_id\": 46346417,\n          \"name\": \"nis\",\n          \"disabled\": false,\n          \"timestamp\": \"amet sunt\",\n          \"value\": true\n        },\n        {\n          \"id\": -6945239,\n          \"number_id\": -61684350,\n          \"name\": \"culpa qui enim\",\n          \"disabled\": false,\n          \"timestamp\": \"culpa laborum deserunt aliqua\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"pariatur sit ipsum\",\n      \"updated_at\": \"culpa in Excepteur voluptate ad\",\n      \"integration_vendor_id\": 17836579,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 73801957,\n          \"key\": \"labore occaecat id quis reprehenderit\",\n          \"name\": \"aute consequat esse Duis sit\",\n          \"photo_url\": \"adipisicing pariatur ullamco nisi\"\n        },\n        {\n          \"id\": 53669894,\n          \"key\": \"ut aute est ad\",\n          \"name\": \"laboris in anim\",\n          \"photo_url\": \"laboris ea amet cupidatat adipisicing\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 90266993,\n          \"custom_field_id\": -43262534,\n          \"contact_id\": -38997795,\n          \"field_key\": \"pariatur dolore\",\n          \"organization_id\": 56498271,\n          \"text\": \"in reprehenderit sunt ea\",\n          \"number\": 51436441,\n          \"date\": \"ut qui enim mollit\",\n          \"created_at\": \"id in a\",\n          \"updated_at\": \"ut\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 20113854,\n          \"custom_field_id\": 17558256,\n          \"contact_id\": 6022107,\n          \"field_key\": \"nisi\",\n          \"organization_id\": 88578431,\n          \"text\": \"fugiat Duis ex occaecat\",\n          \"number\": 18670123,\n          \"date\": \"consectetur quis incididunt ullamco eiusmod\",\n          \"created_at\": \"in adip\",\n          \"updated_at\": \"aliqua cupidatat ut irure\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -789640,\n          \"name\": \"dolore eni\",\n          \"label\": \"id eu culpa dolor\",\n          \"created_at\": \"sint\"\n        },\n        {\n          \"id\": 9208885,\n          \"name\": \"Duis cupidatat\",\n          \"label\": \"amet nulla\",\n          \"created_at\": \"aliqua ipsum pariatur Duis commodo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 13121721,\n          \"text\": \"deserunt\",\n          \"created_at\": \"voluptate veniam in est\",\n          \"updated_at\": \"ullamco ea\"\n        },\n        {\n          \"id\": 80817879,\n          \"text\": \"cillum\",\n          \"created_at\": \"exercitation in labore id\",\n          \"updated_at\": \"veniam consequat\"\n        }\n      ]\n    },\n    \"user\": {\n      \"id\": -69051140,\n      \"email\": \"id ut deserunt cillum enim\",\n      \"first_name\": \"cillum\",\n      \"last_name\": \"Duis labore reprehenderit\",\n      \"full_name\": \"ad commodo aute\",\n      \"role\": \"nulla\",\n      \"inbox_id\": 40709525,\n      \"organization_id\": -29667000,\n      \"photo_url\": \"dolor dolor\",\n      \"unread\": 65642747,\n      \"number\": \"ut\",\n      \"formatted_number\": \"tempor nulla\",\n      \"organizationNumber\": [\n        {\n          \"id\": -18296128,\n          \"country\": \"elit magna in\",\n          \"number\": \"irure occaecat\",\n          \"formatted_number\": \"consequat\",\n          \"mms\": \"laboris esse aliqua ut\"\n        },\n        {\n          \"id\": 45035433,\n          \"country\": \"sunt cillum occaecat do\",\n          \"number\": \"eiusmod\",\n          \"formatted_number\": \"quis do est elit dolore\",\n          \"mms\": \"laborum\"\n        }\n      ],\n      \"userPermissions\": [\n        \"i\",\n        \"proident \"\n      ]\n    },\n    \"pending_mentions\": [\n      {\n        \"id\": -47820773,\n        \"email\": \"dolore irure anim exercitation dolor\",\n        \"first_name\": \"veniam officia aute nisi\",\n        \"last_name\": \"quis proident ea\",\n        \"full_name\": \"culpa laboris\",\n        \"role\": \"non laboris pariatur ex nulla\",\n        \"inbox_id\": 61658116,\n        \"organization_id\": -66793250,\n        \"photo_url\": \"ullamco Excepteur ut\",\n        \"unread\": 55483208,\n        \"number\": \"officia voluptate\",\n        \"formatted_number\": \"dolore cupidatat aliquip\",\n        \"organizationNumber\": [\n          {\n            \"id\": -95177512,\n            \"country\": \"id\",\n            \"number\": \"tempor mini\",\n            \"formatted_number\": \"deserunt fugiat\",\n            \"mms\": \"voluptate fugiat do quis et\"\n          },\n          {\n            \"id\": 44178743,\n            \"country\": \"dolore \",\n            \"number\": \"do\",\n            \"formatted_number\": \"al\",\n            \"mms\": \"eu reprehenderit id\"\n          }\n        ],\n        \"userPermissions\": [\n          \"deserunt proident\",\n          \"in veniam\"\n        ]\n      },\n      {\n        \"id\": 39334717,\n        \"email\": \"ut in aliqua\",\n        \"first_name\": \"mollit\",\n        \"last_name\": \"sed ex cillum\",\n        \"full_name\": \"Lorem amet elit\",\n        \"role\": \"Ut eu dolore\",\n        \"inbox_id\": -18719967,\n        \"organization_id\": -9461210,\n        \"photo_url\": \"aliqua\",\n        \"unread\": -45622540,\n        \"number\": \"ea sint\",\n        \"formatted_number\": \"consequat proident cupidatat minim\",\n        \"organizationNumber\": [\n          {\n            \"id\": -7485834,\n            \"country\": \"sint cupidatat mollit\",\n            \"number\": \"minim occaecat\",\n            \"formatted_number\": \"ipsum fugiat\",\n            \"mms\": \"aliqua\"\n          },\n          {\n            \"id\": 4977846,\n            \"country\": \"esse pariatur sunt exercitation\",\n            \"number\": \"fugiat anim pariatur sint irure\",\n            \"formatted_number\": \"nisi\",\n            \"mms\": \"nisi culpa\"\n          }\n        ],\n        \"userPermissions\": [\n          \"reprehenderit Excepteur voluptate amet eu\",\n          \"deserunt\"\n        ]\n      }\n    ],\n    \"media\": [\n      {\n        \"id\": -56359351,\n        \"content_type\": \"dolore\",\n        \"source\": \"cupidatat minim sunt\",\n        \"source_short\": \"exercitation sint\",\n        \"created_at\": \"magna irure\"\n      },\n      {\n        \"id\": 70303820,\n        \"content_type\": \"ipsum pariatur proident velit\",\n        \"source\": \"in commodo culpa non ullamco\",\n        \"source_short\": \"Duis fugiat proident incididunt\",\n        \"created_at\": \"enim\"\n      }\n    ]\n  }\n}"}],"_postman_id":"6d9ab8e3-ee61-46e7-8b53-ced3d594337d"},{"name":"Make contact opt-out","id":"1393b7b4-f7de-43ac-a15c-8141a7b2c1e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"contacts\": [\n    1,\n    1\n  ],\n  \"opt_outs\": {\n    \"toll_free\": false\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//contacts/opt-out","description":"<p>Make contact opt-out</p>\n","urlObject":{"path":["contacts","opt-out"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"d9807321-229b-4cd9-8d3c-9f326fc6446c","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"contacts\": [\n    1,\n    1\n  ],\n  \"opt_outs\": {\n    \"toll_free\": false\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//contacts/opt-out"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"1393b7b4-f7de-43ac-a15c-8141a7b2c1e7"},{"name":"Search contact","id":"95a11cb2-1739-4883-97c0-a03109d2dbae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/search?limit=50&term=laborum","description":"<p>Use this request to retrieve the contacts matching a term to search for provided in the query parameters.<br /><br />In addition, you are allowed to specify the maximum number of messages that you want returned from this call.</p>\n","urlObject":{"path":["contacts","search"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The maximum number of messages that you want returned from this call.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>(Required) The string to search for.</p>\n","type":"text/plain"},"key":"term","value":"laborum"}],"variable":[]}},"response":[{"id":"eb4e2f9a-ccd3-4622-a12b-1f2948c2d098","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/search?limit=50&term=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","search"],"query":[{"key":"limit","value":"50"},{"key":"term","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"results\": [\n    {\n      \"id\": 70330775,\n      \"owner_id\": -27087699,\n      \"color\": \"aute ipsum amet sed\",\n      \"first_name\": \"Duis dolore amet\",\n      \"last_name\": \"sit i\",\n      \"full_name\": \"dolore\",\n      \"email\": \"deserunt nulla\",\n      \"photo_url\": \"reprehenderit\",\n      \"number\": \"dolore est ex culpa\",\n      \"country\": \"in ullamco ea\",\n      \"country_calling_code\": \"commodo in\",\n      \"national_number\": \"voluptate proident ut \",\n      \"typeted_number\": \"ea ut veni\",\n      \"is_blocked\": true,\n      \"opt_out\": false,\n      \"opt_out_at\": \"Ut\",\n      \"opt_in_request_at\": \"sit ut\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 51721526\n        },\n        {\n          \"number_id\": -69399381\n        }\n      ],\n      \"opt_in_at\": \"voluptate nulla enim\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -29808976,\n          \"number_id\": -78511178,\n          \"name\": \"Excepteur esse id\",\n          \"disabled\": true,\n          \"timestamp\": \"sit\",\n          \"value\": false\n        },\n        {\n          \"id\": 39019793,\n          \"number_id\": -13885338,\n          \"name\": \"eiusmod id anim Lo\",\n          \"disabled\": true,\n          \"timestamp\": \"mollit ea magna veniam\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"proident culpa in aliqua\",\n      \"updated_at\": \"ullamco est do\",\n      \"integration_vendor_id\": -41875443,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 30996382,\n          \"key\": \"in reprehenderit magna adipisicing\",\n          \"name\": \"Ut\",\n          \"photo_url\": \"sed\"\n        },\n        {\n          \"id\": -10256730,\n          \"key\": \"sunt fugiat dolor consequat\",\n          \"name\": \"Duis voluptate Ut in\",\n          \"photo_url\": \"adipisicing ipsum exercitation amet\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 25634196,\n          \"custom_field_id\": -87972483,\n          \"contact_id\": 92015902,\n          \"field_key\": \"in ut ea nisi\",\n          \"organization_id\": 63478882,\n          \"text\": \"ea anim\",\n          \"number\": -58975353,\n          \"date\": \"fugiat cupidatat minim ad\",\n          \"created_at\": \"id\",\n          \"updated_at\": \"magna do aliqua consequat dolor\",\n          \"value\": [\n            {\n              \"type\": \"cupidatat velit\",\n              \"value\": \"tempor Lorem\"\n            },\n            {\n              \"type\": \"occaecat Lorem\",\n              \"value\": \"aliqua\"\n            }\n          ]\n        },\n        {\n          \"id\": -57757791,\n          \"custom_field_id\": -35768226,\n          \"contact_id\": -84508091,\n          \"field_key\": \"ad \",\n          \"organization_id\": -92439117,\n          \"text\": \"voluptate in nostrud qui\",\n          \"number\": -20287368,\n          \"date\": \"sint eu proident\",\n          \"created_at\": \"laborum adipisicing\",\n          \"updated_at\": \"laborum irure\",\n          \"value\": [\n            {\n              \"type\": \"elit occaecat\",\n              \"value\": \"ullamco cillum aliqui\"\n            },\n            {\n              \"type\": \"ea\",\n              \"value\": \"magna l\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -15314516,\n          \"name\": \"anim exercitation laboris est\",\n          \"label\": \"ipsum\",\n          \"created_at\": \"occaecat dolore in\"\n        },\n        {\n          \"id\": -4167438,\n          \"name\": \"deserunt laborum pariatur ipsum voluptate\",\n          \"label\": \"eiusmod do incididunt\",\n          \"created_at\": \"ullamco velit voluptate cillum\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -10403167,\n          \"text\": \"ullamco elit non ut\",\n          \"created_at\": \"mollit\",\n          \"updated_at\": \"adipisicing com\"\n        },\n        {\n          \"id\": 74355836,\n          \"text\": \"aliquip\",\n          \"created_at\": \"in dolore pariatur cillum proident\",\n          \"updated_at\": \"in\"\n        }\n      ]\n    },\n    {\n      \"id\": -62969935,\n      \"owner_id\": -4430561,\n      \"color\": \"veniam reprehenderit\",\n      \"first_name\": \"sunt\",\n      \"last_name\": \"dolor ullamco incididunt velit\",\n      \"full_name\": \"reprehenderit ea laborum nisi\",\n      \"email\": \"qui exercitation\",\n      \"photo_url\": \"sed dolor in\",\n      \"number\": \"qui nostrud Excepteur\",\n      \"country\": \"in sunt ut nisi\",\n      \"country_calling_code\": \"laboris ea quis\",\n      \"national_number\": \"occaecat\",\n      \"typeted_number\": \"enim irure voluptate labore Lorem\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"quis ut ipsum pariatur dolor\",\n      \"opt_in_request_at\": \"nulla adipisicing magna in\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -40074087\n        },\n        {\n          \"number_id\": 90240175\n        }\n      ],\n      \"opt_in_at\": \"officia anim dolore\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -12831585,\n          \"number_id\": -39209559,\n          \"name\": \"proident sunt labore\",\n          \"disabled\": false,\n          \"timestamp\": \"sunt ex est elit\",\n          \"value\": false\n        },\n        {\n          \"id\": 49414626,\n          \"number_id\": 35911180,\n          \"name\": \"irure qui\",\n          \"disabled\": false,\n          \"timestamp\": \"culpa irure\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"tem\",\n      \"updated_at\": \"aute reprehenderit labore est\",\n      \"integration_vendor_id\": 72226227,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 95068033,\n          \"key\": \"pariatur aute commodo\",\n          \"name\": \"eu ea \",\n          \"photo_url\": \"fugiat\"\n        },\n        {\n          \"id\": 65785983,\n          \"key\": \"ipsum\",\n          \"name\": \"non eiusmod ea\",\n          \"photo_url\": \"enim\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -70246953,\n          \"custom_field_id\": -98389992,\n          \"contact_id\": 34629708,\n          \"field_key\": \"\",\n          \"organization_id\": -50466796,\n          \"text\": \"consequat nulla sed sint\",\n          \"number\": -84895228,\n          \"date\": \"qui\",\n          \"created_at\": \"esse\",\n          \"updated_at\": \"sit aliquip sint\",\n          \"value\": [\n            {\n              \"type\": \"ad laborum dolore elit\",\n              \"value\": \"non do Excepteur minim sunt\"\n            },\n            {\n              \"type\": \"nulla Duis tempor\",\n              \"value\": \"qui pariatur non veniam\"\n            }\n          ]\n        },\n        {\n          \"id\": -1229594,\n          \"custom_field_id\": 85582427,\n          \"contact_id\": 60359777,\n          \"field_key\": \"exercitation in officia\",\n          \"organization_id\": 64769503,\n          \"text\": \"velit sint irure esse\",\n          \"number\": -39301475,\n          \"date\": \"pariatur cillum irure Lorem\",\n          \"created_at\": \"aliqua in\",\n          \"updated_at\": \"magna ut irure\",\n          \"value\": [\n            {\n              \"type\": \"commodo cillum Ut fugiat\",\n              \"value\": \"Duis r\"\n            },\n            {\n              \"type\": \"non minim tempor\",\n              \"value\": \"nulla in aliqua sed aliquip\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 80100208,\n          \"name\": \"exercitation adipisicing reprehenderit\",\n          \"label\": \"incididunt officia sint consequat\",\n          \"created_at\": \"proident pariatur qui do sit\"\n        },\n        {\n          \"id\": 59004710,\n          \"name\": \"cillum anim aliquip ea culpa\",\n          \"label\": \"ut ullam\",\n          \"created_at\": \"irure est\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 49553465,\n          \"text\": \"in ad Excepteur quis\",\n          \"created_at\": \"ad pariatur id\",\n          \"updated_at\": \"laborum enim\"\n        },\n        {\n          \"id\": -90591494,\n          \"text\": \"ex sint Excepteur\",\n          \"created_at\": \"tempor incididunt est\",\n          \"updated_at\": \"esse\"\n        }\n      ]\n    }\n  ],\n  \"total\": 39650940\n}"}],"_postman_id":"95a11cb2-1739-4883-97c0-a03109d2dbae"},{"name":"Add tags to contact","id":"298b7760-2ec2-41b8-91d7-4c5ab4108d36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"tags\": [\n    {\n      \"id\": \"1\"\n    },\n    {\n      \"id\": \"1\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//contacts/:contact/tags","urlObject":{"path":["contacts",":contact","tags"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"b83f253d-98c9-48ff-88c6-77b737f185f9","description":{"content":"<p>(Required) Contact id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"contact"}]}},"response":[{"id":"11d97794-959f-4fa5-93e6-09ceaeb24dd9","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"tags\": [\n    {\n      \"id\": \"1\"\n    },\n    {\n      \"id\": \"1\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/:contact/tags","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts",":contact","tags"],"variable":[{"key":"contact","value":"27950450","description":"(Required) Contact id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"298b7760-2ec2-41b8-91d7-4c5ab4108d36"}],"id":"0c758869-668f-4a6d-b06e-a6d2462a755e","description":"<p>Contacts are users added to the system and who you’re in contact with within your application.<br /><br /> Contacts block serves as a contact book for conversations, a crm for interacting with leads, a contact base for email marketing, etc. <br /><br />The Contacts APIs enable your application to manage and interact with the Contacs block.</p>\n","_postman_id":"0c758869-668f-4a6d-b06e-a6d2462a755e"},{"name":"Conversations","item":[{"name":"Close conversation","id":"4b7f3782-d681-4231-b77b-b809edc8535f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/close","description":"<p>This endpoint closes the conversation for all the participants of the current Team. The conversation with all the messages will still be visible within the Closed Conversations tab. <br /><br />The <code>closed_at</code> field becomes set with current time. <br /><br />Together, this endpoint allows for reopening the conversation.Thus, it returns the closed conversation including the contact, owner, and recent message.</p>\n","urlObject":{"path":["conversations",":conversation","close"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"cc7f3060-cfca-487d-aa83-d5d619ae0704","description":{"content":"<p>(Required) Conversation id</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"conversation"}]}},"response":[{"id":"adc01ec0-42e1-4d7c-9c4a-e78564b689d1","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/close","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations",":conversation","close"],"variable":[{"key":"conversation","value":"-46945205","description":"(Required) Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -17995429,\n  \"inbox_id\": -62933785,\n  \"contact_id\": -48216957,\n  \"user_id\": 5715903,\n  \"last_message_at\": \"cupidatat dolor sed consequat\",\n  \"last_manual_message_at\": \"nostrud ullamco aute\",\n  \"last_read_at\": \"cillum ea exercitation amet\",\n  \"has_tagging\": false,\n  \"tagging_last_message_at\": \"ex anim Lorem ipsum\",\n  \"tagging_last_read_at\": \"Lorem r\",\n  \"started_at\": \"sed\",\n  \"closed_at\": \"aute dolore sit non labore\",\n  \"owner\": {\n    \"id\": -55435221,\n    \"email\": \"commodo mollit\",\n    \"first_name\": \"cupidatat anim Lorem\",\n    \"last_name\": \"magna elit mollit labore ad\",\n    \"full_name\": \"in do\",\n    \"role\": \"Ut occaecat\",\n    \"inbox_id\": -39687326,\n    \"organization_id\": 14870487,\n    \"photo_url\": \"irure sint esse dolor\",\n    \"unread\": -90450427,\n    \"number\": \"ullamco proident\",\n    \"formatted_number\": \"Lorem\",\n    \"organizationNumber\": [\n      {\n        \"id\": 22256017,\n        \"country\": \"velit sint\",\n        \"number\": \"deserunt adipisicing\",\n        \"formatted_number\": \"cillum amet eiusmod do nisi\",\n        \"mms\": \"ame\"\n      },\n      {\n        \"id\": -86435068,\n        \"country\": \"laborum aute Excepteur nisi\",\n        \"number\": \"ipsum in culpa nisi\",\n        \"formatted_number\": \"veniam Lorem irure laboris consequat\",\n        \"mms\": \"ut aliquip voluptate fugiat Ut\"\n      }\n    ],\n    \"userPermissions\": [\n      \"non \",\n      \"pariatur sint\"\n    ]\n  },\n  \"number_id\": -1424582,\n  \"number\": {\n    \"id\": -58443795,\n    \"organization_id\": 99645097,\n    \"country\": \"veniam\",\n    \"state\": \"voluptate\",\n    \"city\": \"irure dolor minim in\",\n    \"number\": \"mollit consequat\",\n    \"number_vendor_id\": 66691699,\n    \"country_calling_code\": \"Duis sunt culpa velit\",\n    \"national_number\": \"consectetur commodo fugiat\",\n    \"formattedNumber\": \"anim laboris proident sed\",\n    \"formatted_number\": \"paria\",\n    \"short_code\": -55379604,\n    \"is_landline\": 67964929,\n    \"is_toll_free\": false,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": true,\n    \"mms\": false,\n    \"disabled\": true,\n    \"has_profile\": false,\n    \"verified_status\": \"eiusmod in\",\n    \"area_code\": {\n      \"id\": 12047131,\n      \"area_code\": \"commodo ut id laboris\",\n      \"state_code\": \"in Ut ea sint\",\n      \"state_name\": \"id\",\n      \"country_code\": \"fugiat laboris tempor Duis eu\",\n      \"time_zone\": \"qui cupidatat\",\n      \"group_id\": -30936000\n    },\n    \"landline\": {\n      \"id\": 87442125,\n      \"number_id\": -99745892,\n      \"address_sid\": \"elit laborum adipisicing\",\n      \"sid\": \"ut in cillum\",\n      \"document_sid\": \"irure ex veniam\",\n      \"status\": \"irure tempor\",\n      \"verification_attempts\": 91734447,\n      \"last_verify_attempt_at\": \"consectetur tempor\",\n      \"landline_name\": \"occaecat minim ea\",\n      \"street_address\": \"aliqua\",\n      \"city\": \"eu deserunt aliqua enim\",\n      \"state\": \"magna qui laboris reprehend\",\n      \"zip_code\": \"aliquip Lorem\",\n      \"completed\": -50265077,\n      \"created_at\": \"cupidatat in est Ut\",\n      \"updated_at\": \"vel\"\n    },\n    \"number_vendor\": {\n      \"id\": 96212363,\n      \"is_active\": false,\n      \"key\": \"id dolore enim incididunt\",\n      \"name\": \"qui esse quis sit\",\n      \"credentials_prefix\": \"minim dolore ullamco mollit proident\",\n      \"twilio_sid\": \"laborum dolore aute minim dolore\",\n      \"twilio_auth_token\": \"enim\",\n      \"is_billable\": -53364147,\n      \"created_at\": \"in officia\",\n      \"updated_at\": \"sed nul\"\n    },\n    \"call_forwarding\": {\n      \"id\": 19769473,\n      \"number_id\": 28499075,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"in dolore aute\",\n      \"country\": \"eu quis et\",\n      \"number\": \"aliqua occaecat eu veniam\",\n      \"country_calling_code\": \"id esse sint\",\n      \"national_number\": \"magna\",\n      \"formatted_number\": \"minim Duis Ut\",\n      \"extension\": \"dolore ipsum laboris\",\n      \"created_at\": \"in\",\n      \"updated_at\": \"minim aliqua\"\n    },\n    \"numberable_id\": -72414505,\n    \"numberable_type\": \"mollit ut\",\n    \"numberable\": {\n      \"id\": -16935058,\n      \"organization_id\": 38271794,\n      \"owner_id\": 41829630,\n      \"team_id\": 26047960,\n      \"name\": \"ipsum eiusmod\",\n      \"created_at\": \"Excepteur voluptate sint aliqua\",\n      \"updated_at\": \"adip\"\n    }\n  },\n  \"allow_call\": true,\n  \"name\": \"sit anim dolor\",\n  \"group_name\": \"dolore minim ad\",\n  \"is_group\": true,\n  \"participants\": [\n    {\n      \"id\": -77479889,\n      \"owner_id\": -9779579,\n      \"color\": \"Lorem Excepteur magna\",\n      \"first_name\": \"occaecat labore velit\",\n      \"last_name\": \"cons\",\n      \"full_name\": \"labore Lorem aliquip\",\n      \"email\": \"consequat Ut\",\n      \"photo_url\": \"consequat sint voluptate officia\",\n      \"number\": \"cupidatat do\",\n      \"country\": \"ipsum nostrud\",\n      \"country_calling_code\": \"irure dolore\",\n      \"national_number\": \"aliqua magna\",\n      \"typeted_number\": \"sed dolore\",\n      \"is_blocked\": true,\n      \"opt_out\": false,\n      \"opt_out_at\": \"fugiat anim exercitation ut\",\n      \"opt_in_request_at\": \"irure deserunt aliquip dolore\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -9288557\n        },\n        {\n          \"number_id\": -6774296\n        }\n      ],\n      \"opt_in_at\": \"sint pariatur cupidatat magna\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 61115878,\n          \"number_id\": -72978273,\n          \"name\": \"do nisi enim ullamco reprehenderit\",\n          \"disabled\": true,\n          \"timestamp\": \"aute nulla ut magna\",\n          \"value\": false\n        },\n        {\n          \"id\": 20908156,\n          \"number_id\": -55365982,\n          \"name\": \"mollit ex\",\n          \"disabled\": true,\n          \"timestamp\": \"pariatur non ut\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"aliqua non pariatur\",\n      \"updated_at\": \"irure nostrud non laboris\",\n      \"integration_vendor_id\": 53077743,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 52888792,\n          \"key\": \"anim\",\n          \"name\": \"ullamco est qui elit Duis\",\n          \"photo_url\": \"q\"\n        },\n        {\n          \"id\": -94356026,\n          \"key\": \"id sed non magna\",\n          \"name\": \"u\",\n          \"photo_url\": \"officia quis adipisicing\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 57574573,\n          \"custom_field_id\": -7436764,\n          \"contact_id\": -91163202,\n          \"field_key\": \"nisi nulla proident fugiat\",\n          \"organization_id\": -96625755,\n          \"text\": \"non laboris\",\n          \"number\": 28478265,\n          \"date\": \"ipsum in aute\",\n          \"created_at\": \"commodo elit reprehenderit aliquip\",\n          \"updated_at\": \"sed\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 31798228,\n          \"custom_field_id\": 62629411,\n          \"contact_id\": 34048262,\n          \"field_key\": \"pariatur dolore\",\n          \"organization_id\": -5432897,\n          \"text\": \"eu amet enim\",\n          \"number\": -54567221,\n          \"date\": \"velit nulla nisi\",\n          \"created_at\": \"ut labore\",\n          \"updated_at\": \"dolore in ut adipisicing\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 86209350,\n          \"name\": \"adipisicing ut exercitation\",\n          \"label\": \"magna\",\n          \"created_at\": \"dolor enim ea\"\n        },\n        {\n          \"id\": -36734664,\n          \"name\": \"consequat commodo fugiat aliquip\",\n          \"label\": \"consectetur adipisicing qui sit\",\n          \"created_at\": \"veniam ipsum\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 61048905,\n          \"text\": \"commodo id nisi\",\n          \"created_at\": \"Ut ir\",\n          \"updated_at\": \"adipisicing irure et anim\"\n        },\n        {\n          \"id\": 36844476,\n          \"text\": \"enim cillum dolore\",\n          \"created_at\": \"enim ut adipisicing\",\n          \"updated_at\": \"ullamco ex dolor\"\n        }\n      ]\n    },\n    {\n      \"id\": -77380709,\n      \"owner_id\": 89338630,\n      \"color\": \"laborum reprehenderit qui\",\n      \"first_name\": \"amet sit in\",\n      \"last_name\": \"quis\",\n      \"full_name\": \"dolore id in\",\n      \"email\": \"incididunt consequat magna sed\",\n      \"photo_url\": \"ipsum\",\n      \"number\": \"veniam officia culpa voluptate\",\n      \"country\": \"fugiat adipisicing\",\n      \"country_calling_code\": \"sint dolor adipisicing cupidatat\",\n      \"national_number\": \"Duis commodo veniam\",\n      \"typeted_number\": \"exercitati\",\n      \"is_blocked\": true,\n      \"opt_out\": false,\n      \"opt_out_at\": \"consectetur\",\n      \"opt_in_request_at\": \"officia cupidatat\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 72587766\n        },\n        {\n          \"number_id\": -26297277\n        }\n      ],\n      \"opt_in_at\": \"sint\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 33025649,\n          \"number_id\": 96765657,\n          \"name\": \"U\",\n          \"disabled\": true,\n          \"timestamp\": \"labore\",\n          \"value\": true\n        },\n        {\n          \"id\": 57000172,\n          \"number_id\": -19423084,\n          \"name\": \"veniam deserunt ea qui\",\n          \"disabled\": false,\n          \"timestamp\": \"minim esse nulla\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"velit irure occaecat non\",\n      \"updated_at\": \"sint\",\n      \"integration_vendor_id\": 58530155,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -88677742,\n          \"key\": \"sed\",\n          \"name\": \"nisi quis enim nostrud\",\n          \"photo_url\": \"ut nostrud sint\"\n        },\n        {\n          \"id\": -89200952,\n          \"key\": \"sint\",\n          \"name\": \"dolor sint\",\n          \"photo_url\": \"qui dolor\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -92880347,\n          \"custom_field_id\": 26093536,\n          \"contact_id\": -64354987,\n          \"field_key\": \"reprehenderit\",\n          \"organization_id\": 76485722,\n          \"text\": \"anim commodo\",\n          \"number\": -54530715,\n          \"date\": \"labore consectetur sint\",\n          \"created_at\": \"Excepteur\",\n          \"updated_at\": \"labore qui ad\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 86570602,\n          \"custom_field_id\": -61317191,\n          \"contact_id\": -52008002,\n          \"field_key\": \"sit et irure pariatur\",\n          \"organization_id\": 2855871,\n          \"text\": \"cupidatat\",\n          \"number\": 96625384,\n          \"date\": \"ea amet ut cillum\",\n          \"created_at\": \"est\",\n          \"updated_at\": \"do non in\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 25201529,\n          \"name\": \"in aute sit\",\n          \"label\": \"consectetur ullamco sint irure in\",\n          \"created_at\": \"et sunt\"\n        },\n        {\n          \"id\": 26662042,\n          \"name\": \"amet veniam ex consectetur\",\n          \"label\": \"sint Duis\",\n          \"created_at\": \"Ut sint irure fugiat cillum\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -82641956,\n          \"text\": \"in dolore sint nisi ad\",\n          \"created_at\": \"in nisi voluptate esse\",\n          \"updated_at\": \"proident reprehenderit nulla\"\n        },\n        {\n          \"id\": -19492253,\n          \"text\": \"ex consequat\",\n          \"created_at\": \"adipisicing aliquip cupidatat\",\n          \"updated_at\": \"proident cillum\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": -43344599,\n      \"conversation_id\": -3166748,\n      \"organization_id\": -26179947,\n      \"changer_user\": [\n        {\n          \"user_id\": 2407752,\n          \"first_name\": \"ea\",\n          \"last_name\": \"sit adipisici\"\n        },\n        {\n          \"user_id\": -29949483,\n          \"first_name\": \"ad ut\",\n          \"last_name\": \"ad fugiat irure Lorem officia\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 93759725,\n          \"first_name\": \"Ut consectetur voluptate\",\n          \"last_name\": \"anim sed eu\"\n        },\n        {\n          \"user_id\": 79680015,\n          \"first_name\": \"velit\",\n          \"last_name\": \"aliquip\"\n        }\n      ],\n      \"created_at\": \"Duis laboris anim nisi minim\"\n    },\n    {\n      \"id\": -49421899,\n      \"conversation_id\": -87633135,\n      \"organization_id\": 97058529,\n      \"changer_user\": [\n        {\n          \"user_id\": 487120,\n          \"first_name\": \"non adipisicing magna in\",\n          \"last_name\": \"laboris dolore magna\"\n        },\n        {\n          \"user_id\": 95921010,\n          \"first_name\": \"commodo\",\n          \"last_name\": \"aute voluptate dolor officia anim\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 13047406,\n          \"first_name\": \"adipisicing officia\",\n          \"last_name\": \"esse elit minim incididunt\"\n        },\n        {\n          \"user_id\": -81317263,\n          \"first_name\": \"sit sunt\",\n          \"last_name\": \"tempor velit elit nisi\"\n        }\n      ],\n      \"created_at\": \"quis nostrud\"\n    }\n  ]\n}"}],"_postman_id":"4b7f3782-d681-4231-b77b-b809edc8535f"},{"name":"Close all failed conversations","id":"88b6a267-0255-41f3-b099-00af44192201","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations/batch/close?team_id=-46945205&team_type=-46945205","description":"<p>Close all failed conversations</p>\n","urlObject":{"path":["conversations","batch","close"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The ID of the Team</p>\n","type":"text/plain"},"key":"team_id","value":"-46945205"},{"description":{"content":"<p>The type of the Team</p>\n","type":"text/plain"},"key":"team_type","value":"-46945205"}],"variable":[]}},"response":[{"id":"eda71936-c012-40b9-8140-8ab915ec08f8","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/batch/close?team_id=-46945205&team_type=-46945205","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations","batch","close"],"query":[{"key":"team_id","value":"-46945205"},{"key":"team_type","value":"-46945205"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 20066609,\n    \"inbox_id\": 38378462,\n    \"contact_id\": 59007738,\n    \"user_id\": 4718119,\n    \"last_message_at\": \"Ut\",\n    \"last_manual_message_at\": \"quis\",\n    \"last_read_at\": \"veniam quis\",\n    \"has_tagging\": false,\n    \"tagging_last_message_at\": \"commodo ut velit\",\n    \"tagging_last_read_at\": \"amet qui aute commodo\",\n    \"started_at\": \"dolore laboris\",\n    \"closed_at\": \"quis consequat dese\",\n    \"owner\": {\n      \"id\": 20242421,\n      \"email\": \"reprehenderit magna labore ea tempor\",\n      \"first_name\": \"labore sed\",\n      \"last_name\": \"irure nulla in\",\n      \"full_name\": \"in cillum ut\",\n      \"role\": \"\",\n      \"inbox_id\": 69156874,\n      \"organization_id\": -8542202,\n      \"photo_url\": \"\",\n      \"unread\": -42986536,\n      \"number\": \"reprehenderit\",\n      \"formatted_number\": \"sunt laborum occaecat\",\n      \"organizationNumber\": [\n        {\n          \"id\": 19592684,\n          \"country\": \"commodo\",\n          \"number\": \"Duis laboris veniam nisi\",\n          \"formatted_number\": \"esse deserunt tempor\",\n          \"mms\": \"ad labore aliqua reprehenderit\"\n        },\n        {\n          \"id\": -58677776,\n          \"country\": \"minim nisi\",\n          \"number\": \"eiusmod\",\n          \"formatted_number\": \"id et est nisi qui\",\n          \"mms\": \"aliqua eiusmod dolore nisi ut\"\n        }\n      ],\n      \"userPermissions\": [\n        \"dolor incididunt\",\n        \"veniam laborum velit et\"\n      ]\n    },\n    \"number_id\": -20812622,\n    \"number\": {\n      \"id\": 53394714,\n      \"organization_id\": -50797402,\n      \"country\": \"nostrud commodo dolor aliquip\",\n      \"state\": \"velit consequat\",\n      \"city\": \"dolore sunt\",\n      \"number\": \"voluptate dolor culpa magna\",\n      \"number_vendor_id\": -36760366,\n      \"country_calling_code\": \"quis \",\n      \"national_number\": \"labore culpa amet in\",\n      \"formattedNumber\": \"consequat mollit cillum dolore\",\n      \"formatted_number\": \"proident do velit ex\",\n      \"short_code\": -89294378,\n      \"is_landline\": 6718760,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"tempo\",\n      \"area_code\": {\n        \"id\": 14349248,\n        \"area_code\": \"in incididunt nisi\",\n        \"state_code\": \"enim sit\",\n        \"state_name\": \"adipisicing cupidatat\",\n        \"country_code\": \"officia voluptate magna\",\n        \"time_zone\": \"dolor adipisicing\",\n        \"group_id\": 6932235\n      },\n      \"landline\": {\n        \"id\": -25477849,\n        \"number_id\": 40088096,\n        \"address_sid\": \"Lorem minim esse\",\n        \"sid\": \"minim\",\n        \"document_sid\": \"reprehenderit ea\",\n        \"status\": \"nisi voluptate\",\n        \"verification_attempts\": -35147573,\n        \"last_verify_attempt_at\": \"ad in\",\n        \"landline_name\": \"consectetur ullamco aliqua velit quis\",\n        \"street_address\": \"labore est dolore eu Lorem\",\n        \"city\": \"sunt dolore\",\n        \"state\": \"et anim commodo cupidatat\",\n        \"zip_code\": \"in ut pariatur\",\n        \"completed\": 29061828,\n        \"created_at\": \"aliqua ad est ea irure\",\n        \"updated_at\": \"fugiat\"\n      },\n      \"number_vendor\": {\n        \"id\": -13935223,\n        \"is_active\": true,\n        \"key\": \"sunt nulla aliqua\",\n        \"name\": \"mollit quis incididunt\",\n        \"credentials_prefix\": \"qui quis ad\",\n        \"twilio_sid\": \"\",\n        \"twilio_auth_token\": \"exercitation sed irure nisi\",\n        \"is_billable\": -46985321,\n        \"created_at\": \"Ut dolore in elit\",\n        \"updated_at\": \"non consequat eu culpa\"\n      },\n      \"call_forwarding\": {\n        \"id\": 80132769,\n        \"number_id\": -34369651,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"proident sed\",\n        \"country\": \"id fugiat esse\",\n        \"number\": \"veniam aute cupidatat\",\n        \"country_calling_code\": \"pariatur dolor Ut consequat\",\n        \"national_number\": \"aute qui\",\n        \"formatted_number\": \"ad tempor elit\",\n        \"extension\": \"exercitation Ut quis deserunt eu\",\n        \"created_at\": \"dolore magna aute\",\n        \"updated_at\": \"dolore cupidatat ipsum pariatur veniam\"\n      },\n      \"numberable_id\": 32522984,\n      \"numberable_type\": \"ad incididunt\",\n      \"numberable\": {\n        \"id\": 5903365,\n        \"organization_id\": 3267370,\n        \"owner_id\": 45971145,\n        \"team_id\": -63025470,\n        \"name\": \"labore non\",\n        \"created_at\": \"irure Ut tempor id\",\n        \"updated_at\": \"laborum ipsum tempor anim\"\n      }\n    },\n    \"allow_call\": true,\n    \"name\": \"qui et dol\",\n    \"group_name\": \"nostrud dolor Excepteur ea\",\n    \"is_group\": false,\n    \"participants\": [\n      {\n        \"id\": -89710531,\n        \"owner_id\": -15225584,\n        \"color\": \"dolor sint do\",\n        \"first_name\": \"occaecat magna sit esse\",\n        \"last_name\": \"nostrud in id ipsum\",\n        \"full_name\": \"ut laboris\",\n        \"email\": \"nostrud proident\",\n        \"photo_url\": \"est deserunt\",\n        \"number\": \"minim sit non et\",\n        \"country\": \"t\",\n        \"country_calling_code\": \"eiusmod sit consectetur dolor\",\n        \"national_number\": \"sit laboris pariatur ipsum exe\",\n        \"typeted_number\": \"sunt dolore ut\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"amet veli\",\n        \"opt_in_request_at\": \"eu non pariatur\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 47736289\n          },\n          {\n            \"number_id\": 98247064\n          }\n        ],\n        \"opt_in_at\": \"sunt officia Excepteur\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -26926167,\n            \"number_id\": 86453395,\n            \"name\": \"occaecat pariatur mollit proident\",\n            \"disabled\": false,\n            \"timestamp\": \"dolore amet Ut sin\",\n            \"value\": false\n          },\n          {\n            \"id\": -66997572,\n            \"number_id\": -24415001,\n            \"name\": \"Excepteur ad do\",\n            \"disabled\": false,\n            \"timestamp\": \"dolore\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"aute amet qui velit\",\n        \"updated_at\": \"quis nulla dolore ad\",\n        \"integration_vendor_id\": 92039145,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": 94890847,\n            \"key\": \"nulla mollit voluptate sunt consequat\",\n            \"name\": \"elit amet mollit\",\n            \"photo_url\": \"laborum Ut\"\n          },\n          {\n            \"id\": 83633940,\n            \"key\": \"velit dolore dolor laborum\",\n            \"name\": \"deserunt\",\n            \"photo_url\": \"qui incididunt\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 31315240,\n            \"custom_field_id\": 45236439,\n            \"contact_id\": -82081061,\n            \"field_key\": \"in fugiat nisi elit\",\n            \"organization_id\": -66047282,\n            \"text\": \"quis esse ut\",\n            \"number\": 45320340,\n            \"date\": \"minim dolore\",\n            \"created_at\": \"ullamco pariatur deserunt\",\n            \"updated_at\": \"dolor laborum tempor Duis\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": -79741325,\n            \"custom_field_id\": -94353297,\n            \"contact_id\": -98858780,\n            \"field_key\": \"ex et culpa consequat elit\",\n            \"organization_id\": 70086851,\n            \"text\": \"ut Ut qui\",\n            \"number\": 91016226,\n            \"date\": \"officia adipisicing Excepteur\",\n            \"created_at\": \"in sed consectetur cillum\",\n            \"updated_at\": \"Lorem nostrud ea\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 43195487,\n            \"name\": \"ut est cillum sed irure\",\n            \"label\": \"irure laboris nulla\",\n            \"created_at\": \"dolor sunt minim irure\"\n          },\n          {\n            \"id\": -47255501,\n            \"name\": \"adipisicing eu esse exercitation\",\n            \"label\": \"dolor pariatur anim amet eli\",\n            \"created_at\": \"sit proident enim\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 71304298,\n            \"text\": \"consequat ipsum qui aliqua ullamco\",\n            \"created_at\": \"occaecat do non\",\n            \"updated_at\": \"incididunt Ut\"\n          },\n          {\n            \"id\": 82098815,\n            \"text\": \"officia\",\n            \"created_at\": \"aute deserunt sit\",\n            \"updated_at\": \"adipisicing tempor voluptate laboris\"\n          }\n        ]\n      },\n      {\n        \"id\": 66289736,\n        \"owner_id\": 55702665,\n        \"color\": \"ipsum sit incididunt\",\n        \"first_name\": \"dolor\",\n        \"last_name\": \"voluptate nulla cupidatat reprehenderit\",\n        \"full_name\": \"dolor ipsum\",\n        \"email\": \"aliqua ea\",\n        \"photo_url\": \"eu\",\n        \"number\": \"nisi ut exercitation\",\n        \"country\": \"incididunt dolor consequat laborum Excepteur\",\n        \"country_calling_code\": \"Ut id in esse\",\n        \"national_number\": \"proident eu fugiat Ut\",\n        \"typeted_number\": \"ipsum nostrud\",\n        \"is_blocked\": true,\n        \"opt_out\": true,\n        \"opt_out_at\": \"commodo\",\n        \"opt_in_request_at\": \"minim in\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 28798840\n          },\n          {\n            \"number_id\": 50650724\n          }\n        ],\n        \"opt_in_at\": \"id ad cupidatat et pariatur\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 82509671,\n            \"number_id\": 46103394,\n            \"name\": \"elit\",\n            \"disabled\": true,\n            \"timestamp\": \"sint o\",\n            \"value\": true\n          },\n          {\n            \"id\": 83912286,\n            \"number_id\": 6605272,\n            \"name\": \"exercitation dolore adipisicing velit\",\n            \"disabled\": true,\n            \"timestamp\": \"velit ad in\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"dolore eiusmod Ut ex comm\",\n        \"updated_at\": \"non in\",\n        \"integration_vendor_id\": -5478621,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": -74015932,\n            \"key\": \"exercitation veniam\",\n            \"name\": \"anim cillum\",\n            \"photo_url\": \"dolor aute laboris Excepteur \"\n          },\n          {\n            \"id\": 90767861,\n            \"key\": \"ipsum ut tempor Ut\",\n            \"name\": \"anim do\",\n            \"photo_url\": \"dolor aute aliqua dolor\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -49891941,\n            \"custom_field_id\": 94192477,\n            \"contact_id\": 87889323,\n            \"field_key\": \"ut non et amet in\",\n            \"organization_id\": 88111475,\n            \"text\": \"cupidatat sint sed Ut minim\",\n            \"number\": -91030283,\n            \"date\": \"qui exercitation mollit consectetur\",\n            \"created_at\": \"sed sint\",\n            \"updated_at\": \"cillum Duis tempor in ut\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": 57506261,\n            \"custom_field_id\": -47956888,\n            \"contact_id\": -61067697,\n            \"field_key\": \"ea culpa nulla aliqua\",\n            \"organization_id\": -40022857,\n            \"text\": \"voluptate ut velit minim enim\",\n            \"number\": -78692995,\n            \"date\": \"amet velit\",\n            \"created_at\": \"voluptate Excepteur\",\n            \"updated_at\": \"Excepteur in dolore nisi\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 72256207,\n            \"name\": \"cupidatat est fugiat\",\n            \"label\": \"aute\",\n            \"created_at\": \"dolore mollit ipsum\"\n          },\n          {\n            \"id\": -90528530,\n            \"name\": \"cillum eiusmod amet\",\n            \"label\": \"veniam exercitation amet tempor\",\n            \"created_at\": \"reprehe\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 47451452,\n            \"text\": \"reprehenderit irure deserunt dolor\",\n            \"created_at\": \"incididunt\",\n            \"updated_at\": \"fugiat in\"\n          },\n          {\n            \"id\": -46083613,\n            \"text\": \"est adipisicing e\",\n            \"created_at\": \"ut\",\n            \"updated_at\": \"quis elit cillum pariatur\"\n          }\n        ]\n      }\n    ],\n    \"reassign_logs\": [\n      {\n        \"id\": 43561871,\n        \"conversation_id\": 30810817,\n        \"organization_id\": -94502100,\n        \"changer_user\": [\n          {\n            \"user_id\": -56084551,\n            \"first_name\": \"non ut cupidatat Excepteur laborum\",\n            \"last_name\": \"voluptate Excepteur laborum\"\n          },\n          {\n            \"user_id\": -25963601,\n            \"first_name\": \"sit cillum Lo\",\n            \"last_name\": \"pariatur\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 44673145,\n            \"first_name\": \"quis Duis Lorem in\",\n            \"last_name\": \"esse sunt eiusmod sit laborum\"\n          },\n          {\n            \"user_id\": 82211011,\n            \"first_name\": \"mollit\",\n            \"last_name\": \"sint nostrud et\"\n          }\n        ],\n        \"created_at\": \"esse reprehenderit\"\n      },\n      {\n        \"id\": -52561343,\n        \"conversation_id\": 65953371,\n        \"organization_id\": -14600883,\n        \"changer_user\": [\n          {\n            \"user_id\": -8491598,\n            \"first_name\": \"consectetur proident minim reprehenderit\",\n            \"last_name\": \"in amet dolore\"\n          },\n          {\n            \"user_id\": -87023764,\n            \"first_name\": \"consequat velit tempor\",\n            \"last_name\": \"deserunt pariatur\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": -35936533,\n            \"first_name\": \"ut aute sed esse\",\n            \"last_name\": \"sed esse veniam tempor\"\n          },\n          {\n            \"user_id\": 26238940,\n            \"first_name\": \"officia anim pariatur\",\n            \"last_name\": \"tempor sit officia non\"\n          }\n        ],\n        \"created_at\": \"adipisicing deserunt\"\n      }\n    ]\n  },\n  {\n    \"id\": 51581364,\n    \"inbox_id\": 55244496,\n    \"contact_id\": -29704994,\n    \"user_id\": -20479705,\n    \"last_message_at\": \"ut ex aute\",\n    \"last_manual_message_at\": \"incididunt anim tempor\",\n    \"last_read_at\": \"aliqua do proident\",\n    \"has_tagging\": true,\n    \"tagging_last_message_at\": \"sed cupidatat sint et\",\n    \"tagging_last_read_at\": \"in culpa sint\",\n    \"started_at\": \"magna ea\",\n    \"closed_at\": \"dolore nulla sit\",\n    \"owner\": {\n      \"id\": 34479288,\n      \"email\": \"Excepteur\",\n      \"first_name\": \"irure Ut s\",\n      \"last_name\": \"voluptate labore aliquip elit reprehenderit\",\n      \"full_name\": \"nisi Excepteur dolore laboris\",\n      \"role\": \"irure dolo\",\n      \"inbox_id\": -23244266,\n      \"organization_id\": -73377811,\n      \"photo_url\": \"Lorem dolor ut in\",\n      \"unread\": -68318921,\n      \"number\": \"occaecat sed\",\n      \"formatted_number\": \"esse\",\n      \"organizationNumber\": [\n        {\n          \"id\": -42775098,\n          \"country\": \"laboris quis magna\",\n          \"number\": \"in ut eiusmod laboris\",\n          \"formatted_number\": \"Duis dolore eu ullamco\",\n          \"mms\": \"ipsum nostrud\"\n        },\n        {\n          \"id\": -78973669,\n          \"country\": \"ea cillum\",\n          \"number\": \"occaecat aliqua\",\n          \"formatted_number\": \"voluptate in\",\n          \"mms\": \"esse nostrud sit aliqu\"\n        }\n      ],\n      \"userPermissions\": [\n        \"do Exc\",\n        \"eiusmod cupidatat elit fugiat\"\n      ]\n    },\n    \"number_id\": -45182692,\n    \"number\": {\n      \"id\": -66095591,\n      \"organization_id\": 92223598,\n      \"country\": \"sunt consequat culpa aute proident\",\n      \"state\": \"sint labore\",\n      \"city\": \"consectetur nulla\",\n      \"number\": \"aliquip nostrud officia eiusmod consequat\",\n      \"number_vendor_id\": -42996202,\n      \"country_calling_code\": \"Excepteur voluptate\",\n      \"national_number\": \"\",\n      \"formattedNumber\": \"dolor quis id ullamco ut\",\n      \"formatted_number\": \"Lorem sunt fugiat\",\n      \"short_code\": -41714174,\n      \"is_landline\": 79067372,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"occaecat laboris labore\",\n      \"area_code\": {\n        \"id\": -60162949,\n        \"area_code\": \"sed eiusmod\",\n        \"state_code\": \"reprehenderit exercitation aliquip eu\",\n        \"state_name\": \"aliqua commodo\",\n        \"country_code\": \"quis est et\",\n        \"time_zone\": \"amet dolor\",\n        \"group_id\": 80386215\n      },\n      \"landline\": {\n        \"id\": 34902831,\n        \"number_id\": 80817156,\n        \"address_sid\": \"consectetur velit sint ut anim\",\n        \"sid\": \"elit sit in mollit\",\n        \"document_sid\": \"quis ipsum dolore magna exercitation\",\n        \"status\": \"consectetur irure commodo dolore\",\n        \"verification_attempts\": 42854812,\n        \"last_verify_attempt_at\": \"deserunt reprehenderit id\",\n        \"landline_name\": \"ad tempor laborum\",\n        \"street_address\": \"amet sunt Duis ut et\",\n        \"city\": \"commodo\",\n        \"state\": \"enim\",\n        \"zip_code\": \"Excepteur dolore Lorem occaecat\",\n        \"completed\": -82050997,\n        \"created_at\": \"ipsum tempor commodo eu pariatur\",\n        \"updated_at\": \"aute aliqua in\"\n      },\n      \"number_vendor\": {\n        \"id\": 16695441,\n        \"is_active\": true,\n        \"key\": \"tempor exercitation\",\n        \"name\": \"reprehenderit irure commodo\",\n        \"credentials_prefix\": \"ullamco\",\n        \"twilio_sid\": \"sit do\",\n        \"twilio_auth_token\": \"eu ad\",\n        \"is_billable\": -54294838,\n        \"created_at\": \"officia tempor\",\n        \"updated_at\": \"do exercitation labore tempor laborum\"\n      },\n      \"call_forwarding\": {\n        \"id\": 2651077,\n        \"number_id\": 51510655,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"labore occaecat\",\n        \"country\": \"Ut nulla est \",\n        \"number\": \"mollit voluptate aute \",\n        \"country_calling_code\": \"culpa ullamco labore nostrud\",\n        \"national_number\": \"culpa exercitation eiusmod occaecat\",\n        \"formatted_number\": \"Lorem aliqua veniam dolore est\",\n        \"extension\": \"commodo u\",\n        \"created_at\": \"voluptate occaecat\",\n        \"updated_at\": \"ea sint dolore\"\n      },\n      \"numberable_id\": 80025744,\n      \"numberable_type\": \"qui consequat fugiat\",\n      \"numberable\": {\n        \"id\": -84640461,\n        \"organization_id\": 48385556,\n        \"owner_id\": -94804875,\n        \"team_id\": 9933814,\n        \"name\": \"commodo quis consectetur reprehenderit\",\n        \"created_at\": \"sit cillum exercitation aute Lorem\",\n        \"updated_at\": \"esse\"\n      }\n    },\n    \"allow_call\": true,\n    \"name\": \"est cillum magna occaecat\",\n    \"group_name\": \"aute est\",\n    \"is_group\": false,\n    \"participants\": [\n      {\n        \"id\": 6136039,\n        \"owner_id\": 25768886,\n        \"color\": \"adipisicing do dolor\",\n        \"first_name\": \"officia sunt\",\n        \"last_name\": \"exercitation adipisicing Ut\",\n        \"full_name\": \"cillum aliqua sunt ullamco\",\n        \"email\": \"tempor sunt\",\n        \"photo_url\": \"aliqua consectetur voluptate\",\n        \"number\": \"ipsum\",\n        \"country\": \"aute irure enim incididunt fugiat\",\n        \"country_calling_code\": \"in proident labore\",\n        \"national_number\": \"ullamco exercitation labor\",\n        \"typeted_number\": \"consequat labore nulla\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"aliquip deserunt exercitation labore\",\n        \"opt_in_request_at\": \"occaecat repr\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": -99293463\n          },\n          {\n            \"number_id\": -54325174\n          }\n        ],\n        \"opt_in_at\": \"Duis ut labore ex et\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -88680872,\n            \"number_id\": 14289946,\n            \"name\": \"mollit elit\",\n            \"disabled\": true,\n            \"timestamp\": \"non\",\n            \"value\": true\n          },\n          {\n            \"id\": 73446223,\n            \"number_id\": -44248410,\n            \"name\": \"et amet nulla nostrud\",\n            \"disabled\": true,\n            \"timestamp\": \"ut sunt laboris\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"do nisi\",\n        \"updated_at\": \"aute et sit\",\n        \"integration_vendor_id\": 81760258,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": -3302175,\n            \"key\": \"in commodo dolore fugiat\",\n            \"name\": \"pariatur Excepteur\",\n            \"photo_url\": \"occaecat dolor id\"\n          },\n          {\n            \"id\": -49536737,\n            \"key\": \"consectetur commodo\",\n            \"name\": \"aliqua pariatur magna\",\n            \"photo_url\": \"ullamco consequat labore ipsum\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -18468358,\n            \"custom_field_id\": -63845537,\n            \"contact_id\": 20257575,\n            \"field_key\": \"dolor qui et\",\n            \"organization_id\": 87958820,\n            \"text\": \"pariatur laborum repre\",\n            \"number\": 67551320,\n            \"date\": \"officia qui laboris\",\n            \"created_at\": \"ut\",\n            \"updated_at\": \"dolor reprehenderit consequat\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": -21627005,\n            \"custom_field_id\": -44904878,\n            \"contact_id\": 58381351,\n            \"field_key\": \"Duis dolore\",\n            \"organization_id\": 44505762,\n            \"text\": \"id commodo anim\",\n            \"number\": -11345326,\n            \"date\": \"commodo amet ipsum et\",\n            \"created_at\": \"in eu n\",\n            \"updated_at\": \"esse laboris proident rep\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 90753327,\n            \"name\": \"fugiat adipisic\",\n            \"label\": \"proident Lorem deserunt\",\n            \"created_at\": \"nostrud qui aute reprehenderit\"\n          },\n          {\n            \"id\": -95988802,\n            \"name\": \"ea voluptate consequat\",\n            \"label\": \"dolore ex ipsum\",\n            \"created_at\": \"culpa ut irure Duis\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -47679990,\n            \"text\": \"cupidatat ullamco dolor\",\n            \"created_at\": \"dolore et ea esse Lorem\",\n            \"updated_at\": \"cillum enim\"\n          },\n          {\n            \"id\": -84803713,\n            \"text\": \"non\",\n            \"created_at\": \"i\",\n            \"updated_at\": \"aliquip anim id cupidatat amet\"\n          }\n        ]\n      },\n      {\n        \"id\": -52997460,\n        \"owner_id\": 80999936,\n        \"color\": \"minim c\",\n        \"first_name\": \"laboris est\",\n        \"last_name\": \"sunt et irure Excepteur\",\n        \"full_name\": \"ex ipsum velit\",\n        \"email\": \"cupidatat et proident Lorem sint\",\n        \"photo_url\": \"adipisicing ut nisi\",\n        \"number\": \"irure in dolor\",\n        \"country\": \"dolore esse irure veniam\",\n        \"country_calling_code\": \"sunt proident velit in\",\n        \"national_number\": \"ullamco velit\",\n        \"typeted_number\": \"veniam\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"dolor pariatur pr\",\n        \"opt_in_request_at\": \"elit proident dolor\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 72645379\n          },\n          {\n            \"number_id\": 42371952\n          }\n        ],\n        \"opt_in_at\": \"quis minim\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -42660385,\n            \"number_id\": -80904115,\n            \"name\": \"sunt amet\",\n            \"disabled\": false,\n            \"timestamp\": \"culpa ea\",\n            \"value\": false\n          },\n          {\n            \"id\": 38406659,\n            \"number_id\": -57895378,\n            \"name\": \"anim qui est velit\",\n            \"disabled\": false,\n            \"timestamp\": \"reprehenderit do\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"est ex dolore\",\n        \"updated_at\": \"sit reprehe\",\n        \"integration_vendor_id\": 62651881,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 69566273,\n            \"key\": \"qui esse consectetur\",\n            \"name\": \"officia in\",\n            \"photo_url\": \"do consectetur Lorem\"\n          },\n          {\n            \"id\": -74910566,\n            \"key\": \"ullamco\",\n            \"name\": \"cupidatat\",\n            \"photo_url\": \"sit minim Ut\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -2195298,\n            \"custom_field_id\": -39780013,\n            \"contact_id\": 64670246,\n            \"field_key\": \"i\",\n            \"organization_id\": -68949306,\n            \"text\": \"ad\",\n            \"number\": 69756639,\n            \"date\": \"ut enim qui\",\n            \"created_at\": \"enim sunt sint dolore\",\n            \"updated_at\": \"nulla occaecat laboris\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": -2871115,\n            \"custom_field_id\": -88802147,\n            \"contact_id\": 8840437,\n            \"field_key\": \"in\",\n            \"organization_id\": -73791368,\n            \"text\": \"aute sunt elit nulla\",\n            \"number\": -79531054,\n            \"date\": \"eu culpa id\",\n            \"created_at\": \"magna Duis tempor Lorem deserunt\",\n            \"updated_at\": \"ut l\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": -21284104,\n            \"name\": \"anim officia minim ea\",\n            \"label\": \"adipisicing\",\n            \"created_at\": \"pariatur commodo\"\n          },\n          {\n            \"id\": 44567818,\n            \"name\": \"culpa laborum\",\n            \"label\": \"ut\",\n            \"created_at\": \"incididunt laborum exercitation\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -26006090,\n            \"text\": \"eu labore pariatur anim\",\n            \"created_at\": \"adipisicing laborum\",\n            \"updated_at\": \"anim Duis fugiat consequat veniam\"\n          },\n          {\n            \"id\": -59117202,\n            \"text\": \"in\",\n            \"created_at\": \"cons\",\n            \"updated_at\": \"sit dolor amet eiusmod\"\n          }\n        ]\n      }\n    ],\n    \"reassign_logs\": [\n      {\n        \"id\": 9714124,\n        \"conversation_id\": -32454861,\n        \"organization_id\": -79240769,\n        \"changer_user\": [\n          {\n            \"user_id\": -84873541,\n            \"first_name\": \"nulla consequat laboris qui aute\",\n            \"last_name\": \"mollit fugiat\"\n          },\n          {\n            \"user_id\": -95333861,\n            \"first_name\": \"labore dolo\",\n            \"last_name\": \"sint ex aliquip in\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": -24255864,\n            \"first_name\": \"u\",\n            \"last_name\": \"ut tempor\"\n          },\n          {\n            \"user_id\": -33092464,\n            \"first_name\": \"non in\",\n            \"last_name\": \"non mollit eiusmod ut\"\n          }\n        ],\n        \"created_at\": \"eiusmod sint Exc\"\n      },\n      {\n        \"id\": 85377745,\n        \"conversation_id\": -68921380,\n        \"organization_id\": 83850907,\n        \"changer_user\": [\n          {\n            \"user_id\": -37761915,\n            \"first_name\": \"nisi dolore dolor\",\n            \"last_name\": \"esse sit\"\n          },\n          {\n            \"user_id\": 62140917,\n            \"first_name\": \"enim aliqua in minim in\",\n            \"last_name\": \"veniam\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 67780345,\n            \"first_name\": \"labore ex non\",\n            \"last_name\": \"deserunt aute et aliquip\"\n          },\n          {\n            \"user_id\": -79369652,\n            \"first_name\": \"non dolore Ut\",\n            \"last_name\": \"exercitation ut\"\n          }\n        ],\n        \"created_at\": \"ipsum voluptate enim\"\n      }\n    ]\n  }\n]"}],"_postman_id":"88b6a267-0255-41f3-b099-00af44192201"},{"name":"Close conversations for the given team/inbox","id":"336334c3-c80d-4ce6-8947-c02236da4c52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 1,\n  \"ids\": [\n    1,\n    1\n  ],\n  \"delete_all\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//conversations/batch-queue/close","description":"<p>Close conversations for the given team/inbox</p>\n","urlObject":{"path":["conversations","batch-queue","close"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"1001a0ce-c51a-4f32-8de5-214e8d677d45","name":"Response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 1,\n  \"ids\": [\n    1,\n    1\n  ],\n  \"delete_all\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//conversations/batch-queue/close"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f9c7aab8-8774-4592-8bd8-cd0aaad9c7c9","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 1,\n  \"ids\": [\n    1,\n    1\n  ],\n  \"delete_all\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//conversations/batch-queue/close"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"}],"_postman_id":"336334c3-c80d-4ce6-8947-c02236da4c52"},{"name":"Get user`s conversations","id":"27602c5c-e171-4009-b11c-3d19904d7dcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations?filter=open&limit=-22811882&offset=65893348&before=2019-07-04&after=2019-07-04&exclude=65893348&query=voluptate&grouped_response=true","description":"<p>Retrieves the list of all the conversations of a specific contact id. <br /><br />List can be limited. Returned conversations can be initially ordered: </p><ul><li>By filter</li> <li>By time of the last event</li> <li>By query</li> <li>Excluding conversation by id </li></ul> <p>Every conversation in the list returns with a specific contact id, owner, and recent message.</p><p></p>\n","urlObject":{"path":["conversations"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Filter (assigned,unassigned only if current user is on team)</p>\n","type":"text/plain"},"key":"filter","value":"open"},{"description":{"content":"<p>(Required) Limit</p>\n","type":"text/plain"},"key":"limit","value":"-22811882"},{"description":{"content":"<p>Offset</p>\n","type":"text/plain"},"key":"offset","value":"65893348"},{"description":{"content":"<p>Last message before</p>\n","type":"text/plain"},"key":"before","value":"2019-07-04"},{"description":{"content":"<p>Last message after</p>\n","type":"text/plain"},"key":"after","value":"2019-07-04"},{"description":{"content":"<p>Exclude conversation by id</p>\n","type":"text/plain"},"key":"exclude","value":"65893348"},{"description":{"content":"<p>Contact first_name, last_name, email, number</p>\n","type":"text/plain"},"key":"query","value":"voluptate"},{"description":{"content":"<p>Is return grouped response</p>\n","type":"text/plain"},"key":"grouped_response","value":"true"}],"variable":[]}},"response":[{"id":"87019b23-eb32-4990-acf8-ce8c492d1a61","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations?filter=open&limit=-22811882&offset=65893348&before=2019-07-04&after=2019-07-04&exclude=65893348&query=voluptate&grouped_response=true","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations"],"query":[{"key":"filter","value":"open"},{"key":"limit","value":"-22811882"},{"key":"offset","value":"65893348"},{"key":"before","value":"2019-07-04"},{"key":"after","value":"2019-07-04"},{"key":"exclude","value":"65893348"},{"key":"query","value":"voluptate"},{"key":"grouped_response","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 20066609,\n    \"inbox_id\": 38378462,\n    \"contact_id\": 59007738,\n    \"user_id\": 4718119,\n    \"last_message_at\": \"Ut\",\n    \"last_manual_message_at\": \"quis\",\n    \"last_read_at\": \"veniam quis\",\n    \"has_tagging\": false,\n    \"tagging_last_message_at\": \"commodo ut velit\",\n    \"tagging_last_read_at\": \"amet qui aute commodo\",\n    \"started_at\": \"dolore laboris\",\n    \"closed_at\": \"quis consequat dese\",\n    \"owner\": {\n      \"id\": 20242421,\n      \"email\": \"reprehenderit magna labore ea tempor\",\n      \"first_name\": \"labore sed\",\n      \"last_name\": \"irure nulla in\",\n      \"full_name\": \"in cillum ut\",\n      \"role\": \"\",\n      \"inbox_id\": 69156874,\n      \"organization_id\": -8542202,\n      \"photo_url\": \"\",\n      \"unread\": -42986536,\n      \"number\": \"reprehenderit\",\n      \"formatted_number\": \"sunt laborum occaecat\",\n      \"organizationNumber\": [\n        {\n          \"id\": 19592684,\n          \"country\": \"commodo\",\n          \"number\": \"Duis laboris veniam nisi\",\n          \"formatted_number\": \"esse deserunt tempor\",\n          \"mms\": \"ad labore aliqua reprehenderit\"\n        },\n        {\n          \"id\": -58677776,\n          \"country\": \"minim nisi\",\n          \"number\": \"eiusmod\",\n          \"formatted_number\": \"id et est nisi qui\",\n          \"mms\": \"aliqua eiusmod dolore nisi ut\"\n        }\n      ],\n      \"userPermissions\": [\n        \"dolor incididunt\",\n        \"veniam laborum velit et\"\n      ]\n    },\n    \"number_id\": -20812622,\n    \"number\": {\n      \"id\": 53394714,\n      \"organization_id\": -50797402,\n      \"country\": \"nostrud commodo dolor aliquip\",\n      \"state\": \"velit consequat\",\n      \"city\": \"dolore sunt\",\n      \"number\": \"voluptate dolor culpa magna\",\n      \"number_vendor_id\": -36760366,\n      \"country_calling_code\": \"quis \",\n      \"national_number\": \"labore culpa amet in\",\n      \"formattedNumber\": \"consequat mollit cillum dolore\",\n      \"formatted_number\": \"proident do velit ex\",\n      \"short_code\": -89294378,\n      \"is_landline\": 6718760,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"tempo\",\n      \"area_code\": {\n        \"id\": 14349248,\n        \"area_code\": \"in incididunt nisi\",\n        \"state_code\": \"enim sit\",\n        \"state_name\": \"adipisicing cupidatat\",\n        \"country_code\": \"officia voluptate magna\",\n        \"time_zone\": \"dolor adipisicing\",\n        \"group_id\": 6932235\n      },\n      \"landline\": {\n        \"id\": -25477849,\n        \"number_id\": 40088096,\n        \"address_sid\": \"Lorem minim esse\",\n        \"sid\": \"minim\",\n        \"document_sid\": \"reprehenderit ea\",\n        \"status\": \"nisi voluptate\",\n        \"verification_attempts\": -35147573,\n        \"last_verify_attempt_at\": \"ad in\",\n        \"landline_name\": \"consectetur ullamco aliqua velit quis\",\n        \"street_address\": \"labore est dolore eu Lorem\",\n        \"city\": \"sunt dolore\",\n        \"state\": \"et anim commodo cupidatat\",\n        \"zip_code\": \"in ut pariatur\",\n        \"completed\": 29061828,\n        \"created_at\": \"aliqua ad est ea irure\",\n        \"updated_at\": \"fugiat\"\n      },\n      \"number_vendor\": {\n        \"id\": -13935223,\n        \"is_active\": true,\n        \"key\": \"sunt nulla aliqua\",\n        \"name\": \"mollit quis incididunt\",\n        \"credentials_prefix\": \"qui quis ad\",\n        \"twilio_sid\": \"\",\n        \"twilio_auth_token\": \"exercitation sed irure nisi\",\n        \"is_billable\": -46985321,\n        \"created_at\": \"Ut dolore in elit\",\n        \"updated_at\": \"non consequat eu culpa\"\n      },\n      \"call_forwarding\": {\n        \"id\": 80132769,\n        \"number_id\": -34369651,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"proident sed\",\n        \"country\": \"id fugiat esse\",\n        \"number\": \"veniam aute cupidatat\",\n        \"country_calling_code\": \"pariatur dolor Ut consequat\",\n        \"national_number\": \"aute qui\",\n        \"formatted_number\": \"ad tempor elit\",\n        \"extension\": \"exercitation Ut quis deserunt eu\",\n        \"created_at\": \"dolore magna aute\",\n        \"updated_at\": \"dolore cupidatat ipsum pariatur veniam\"\n      },\n      \"numberable_id\": 32522984,\n      \"numberable_type\": \"ad incididunt\",\n      \"numberable\": {\n        \"id\": 5903365,\n        \"organization_id\": 3267370,\n        \"owner_id\": 45971145,\n        \"team_id\": -63025470,\n        \"name\": \"labore non\",\n        \"created_at\": \"irure Ut tempor id\",\n        \"updated_at\": \"laborum ipsum tempor anim\"\n      }\n    },\n    \"allow_call\": true,\n    \"name\": \"qui et dol\",\n    \"group_name\": \"nostrud dolor Excepteur ea\",\n    \"is_group\": false,\n    \"participants\": [\n      {\n        \"id\": -89710531,\n        \"owner_id\": -15225584,\n        \"color\": \"dolor sint do\",\n        \"first_name\": \"occaecat magna sit esse\",\n        \"last_name\": \"nostrud in id ipsum\",\n        \"full_name\": \"ut laboris\",\n        \"email\": \"nostrud proident\",\n        \"photo_url\": \"est deserunt\",\n        \"number\": \"minim sit non et\",\n        \"country\": \"t\",\n        \"country_calling_code\": \"eiusmod sit consectetur dolor\",\n        \"national_number\": \"sit laboris pariatur ipsum exe\",\n        \"typeted_number\": \"sunt dolore ut\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"amet veli\",\n        \"opt_in_request_at\": \"eu non pariatur\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 47736289\n          },\n          {\n            \"number_id\": 98247064\n          }\n        ],\n        \"opt_in_at\": \"sunt officia Excepteur\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -26926167,\n            \"number_id\": 86453395,\n            \"name\": \"occaecat pariatur mollit proident\",\n            \"disabled\": false,\n            \"timestamp\": \"dolore amet Ut sin\",\n            \"value\": false\n          },\n          {\n            \"id\": -66997572,\n            \"number_id\": -24415001,\n            \"name\": \"Excepteur ad do\",\n            \"disabled\": false,\n            \"timestamp\": \"dolore\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"aute amet qui velit\",\n        \"updated_at\": \"quis nulla dolore ad\",\n        \"integration_vendor_id\": 92039145,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": 94890847,\n            \"key\": \"nulla mollit voluptate sunt consequat\",\n            \"name\": \"elit amet mollit\",\n            \"photo_url\": \"laborum Ut\"\n          },\n          {\n            \"id\": 83633940,\n            \"key\": \"velit dolore dolor laborum\",\n            \"name\": \"deserunt\",\n            \"photo_url\": \"qui incididunt\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 31315240,\n            \"custom_field_id\": 45236439,\n            \"contact_id\": -82081061,\n            \"field_key\": \"in fugiat nisi elit\",\n            \"organization_id\": -66047282,\n            \"text\": \"quis esse ut\",\n            \"number\": 45320340,\n            \"date\": \"minim dolore\",\n            \"created_at\": \"ullamco pariatur deserunt\",\n            \"updated_at\": \"dolor laborum tempor Duis\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": -79741325,\n            \"custom_field_id\": -94353297,\n            \"contact_id\": -98858780,\n            \"field_key\": \"ex et culpa consequat elit\",\n            \"organization_id\": 70086851,\n            \"text\": \"ut Ut qui\",\n            \"number\": 91016226,\n            \"date\": \"officia adipisicing Excepteur\",\n            \"created_at\": \"in sed consectetur cillum\",\n            \"updated_at\": \"Lorem nostrud ea\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 43195487,\n            \"name\": \"ut est cillum sed irure\",\n            \"label\": \"irure laboris nulla\",\n            \"created_at\": \"dolor sunt minim irure\"\n          },\n          {\n            \"id\": -47255501,\n            \"name\": \"adipisicing eu esse exercitation\",\n            \"label\": \"dolor pariatur anim amet eli\",\n            \"created_at\": \"sit proident enim\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 71304298,\n            \"text\": \"consequat ipsum qui aliqua ullamco\",\n            \"created_at\": \"occaecat do non\",\n            \"updated_at\": \"incididunt Ut\"\n          },\n          {\n            \"id\": 82098815,\n            \"text\": \"officia\",\n            \"created_at\": \"aute deserunt sit\",\n            \"updated_at\": \"adipisicing tempor voluptate laboris\"\n          }\n        ]\n      },\n      {\n        \"id\": 66289736,\n        \"owner_id\": 55702665,\n        \"color\": \"ipsum sit incididunt\",\n        \"first_name\": \"dolor\",\n        \"last_name\": \"voluptate nulla cupidatat reprehenderit\",\n        \"full_name\": \"dolor ipsum\",\n        \"email\": \"aliqua ea\",\n        \"photo_url\": \"eu\",\n        \"number\": \"nisi ut exercitation\",\n        \"country\": \"incididunt dolor consequat laborum Excepteur\",\n        \"country_calling_code\": \"Ut id in esse\",\n        \"national_number\": \"proident eu fugiat Ut\",\n        \"typeted_number\": \"ipsum nostrud\",\n        \"is_blocked\": true,\n        \"opt_out\": true,\n        \"opt_out_at\": \"commodo\",\n        \"opt_in_request_at\": \"minim in\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 28798840\n          },\n          {\n            \"number_id\": 50650724\n          }\n        ],\n        \"opt_in_at\": \"id ad cupidatat et pariatur\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 82509671,\n            \"number_id\": 46103394,\n            \"name\": \"elit\",\n            \"disabled\": true,\n            \"timestamp\": \"sint o\",\n            \"value\": true\n          },\n          {\n            \"id\": 83912286,\n            \"number_id\": 6605272,\n            \"name\": \"exercitation dolore adipisicing velit\",\n            \"disabled\": true,\n            \"timestamp\": \"velit ad in\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"dolore eiusmod Ut ex comm\",\n        \"updated_at\": \"non in\",\n        \"integration_vendor_id\": -5478621,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": -74015932,\n            \"key\": \"exercitation veniam\",\n            \"name\": \"anim cillum\",\n            \"photo_url\": \"dolor aute laboris Excepteur \"\n          },\n          {\n            \"id\": 90767861,\n            \"key\": \"ipsum ut tempor Ut\",\n            \"name\": \"anim do\",\n            \"photo_url\": \"dolor aute aliqua dolor\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -49891941,\n            \"custom_field_id\": 94192477,\n            \"contact_id\": 87889323,\n            \"field_key\": \"ut non et amet in\",\n            \"organization_id\": 88111475,\n            \"text\": \"cupidatat sint sed Ut minim\",\n            \"number\": -91030283,\n            \"date\": \"qui exercitation mollit consectetur\",\n            \"created_at\": \"sed sint\",\n            \"updated_at\": \"cillum Duis tempor in ut\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": 57506261,\n            \"custom_field_id\": -47956888,\n            \"contact_id\": -61067697,\n            \"field_key\": \"ea culpa nulla aliqua\",\n            \"organization_id\": -40022857,\n            \"text\": \"voluptate ut velit minim enim\",\n            \"number\": -78692995,\n            \"date\": \"amet velit\",\n            \"created_at\": \"voluptate Excepteur\",\n            \"updated_at\": \"Excepteur in dolore nisi\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 72256207,\n            \"name\": \"cupidatat est fugiat\",\n            \"label\": \"aute\",\n            \"created_at\": \"dolore mollit ipsum\"\n          },\n          {\n            \"id\": -90528530,\n            \"name\": \"cillum eiusmod amet\",\n            \"label\": \"veniam exercitation amet tempor\",\n            \"created_at\": \"reprehe\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 47451452,\n            \"text\": \"reprehenderit irure deserunt dolor\",\n            \"created_at\": \"incididunt\",\n            \"updated_at\": \"fugiat in\"\n          },\n          {\n            \"id\": -46083613,\n            \"text\": \"est adipisicing e\",\n            \"created_at\": \"ut\",\n            \"updated_at\": \"quis elit cillum pariatur\"\n          }\n        ]\n      }\n    ],\n    \"reassign_logs\": [\n      {\n        \"id\": 43561871,\n        \"conversation_id\": 30810817,\n        \"organization_id\": -94502100,\n        \"changer_user\": [\n          {\n            \"user_id\": -56084551,\n            \"first_name\": \"non ut cupidatat Excepteur laborum\",\n            \"last_name\": \"voluptate Excepteur laborum\"\n          },\n          {\n            \"user_id\": -25963601,\n            \"first_name\": \"sit cillum Lo\",\n            \"last_name\": \"pariatur\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 44673145,\n            \"first_name\": \"quis Duis Lorem in\",\n            \"last_name\": \"esse sunt eiusmod sit laborum\"\n          },\n          {\n            \"user_id\": 82211011,\n            \"first_name\": \"mollit\",\n            \"last_name\": \"sint nostrud et\"\n          }\n        ],\n        \"created_at\": \"esse reprehenderit\"\n      },\n      {\n        \"id\": -52561343,\n        \"conversation_id\": 65953371,\n        \"organization_id\": -14600883,\n        \"changer_user\": [\n          {\n            \"user_id\": -8491598,\n            \"first_name\": \"consectetur proident minim reprehenderit\",\n            \"last_name\": \"in amet dolore\"\n          },\n          {\n            \"user_id\": -87023764,\n            \"first_name\": \"consequat velit tempor\",\n            \"last_name\": \"deserunt pariatur\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": -35936533,\n            \"first_name\": \"ut aute sed esse\",\n            \"last_name\": \"sed esse veniam tempor\"\n          },\n          {\n            \"user_id\": 26238940,\n            \"first_name\": \"officia anim pariatur\",\n            \"last_name\": \"tempor sit officia non\"\n          }\n        ],\n        \"created_at\": \"adipisicing deserunt\"\n      }\n    ]\n  },\n  {\n    \"id\": 51581364,\n    \"inbox_id\": 55244496,\n    \"contact_id\": -29704994,\n    \"user_id\": -20479705,\n    \"last_message_at\": \"ut ex aute\",\n    \"last_manual_message_at\": \"incididunt anim tempor\",\n    \"last_read_at\": \"aliqua do proident\",\n    \"has_tagging\": true,\n    \"tagging_last_message_at\": \"sed cupidatat sint et\",\n    \"tagging_last_read_at\": \"in culpa sint\",\n    \"started_at\": \"magna ea\",\n    \"closed_at\": \"dolore nulla sit\",\n    \"owner\": {\n      \"id\": 34479288,\n      \"email\": \"Excepteur\",\n      \"first_name\": \"irure Ut s\",\n      \"last_name\": \"voluptate labore aliquip elit reprehenderit\",\n      \"full_name\": \"nisi Excepteur dolore laboris\",\n      \"role\": \"irure dolo\",\n      \"inbox_id\": -23244266,\n      \"organization_id\": -73377811,\n      \"photo_url\": \"Lorem dolor ut in\",\n      \"unread\": -68318921,\n      \"number\": \"occaecat sed\",\n      \"formatted_number\": \"esse\",\n      \"organizationNumber\": [\n        {\n          \"id\": -42775098,\n          \"country\": \"laboris quis magna\",\n          \"number\": \"in ut eiusmod laboris\",\n          \"formatted_number\": \"Duis dolore eu ullamco\",\n          \"mms\": \"ipsum nostrud\"\n        },\n        {\n          \"id\": -78973669,\n          \"country\": \"ea cillum\",\n          \"number\": \"occaecat aliqua\",\n          \"formatted_number\": \"voluptate in\",\n          \"mms\": \"esse nostrud sit aliqu\"\n        }\n      ],\n      \"userPermissions\": [\n        \"do Exc\",\n        \"eiusmod cupidatat elit fugiat\"\n      ]\n    },\n    \"number_id\": -45182692,\n    \"number\": {\n      \"id\": -66095591,\n      \"organization_id\": 92223598,\n      \"country\": \"sunt consequat culpa aute proident\",\n      \"state\": \"sint labore\",\n      \"city\": \"consectetur nulla\",\n      \"number\": \"aliquip nostrud officia eiusmod consequat\",\n      \"number_vendor_id\": -42996202,\n      \"country_calling_code\": \"Excepteur voluptate\",\n      \"national_number\": \"\",\n      \"formattedNumber\": \"dolor quis id ullamco ut\",\n      \"formatted_number\": \"Lorem sunt fugiat\",\n      \"short_code\": -41714174,\n      \"is_landline\": 79067372,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"occaecat laboris labore\",\n      \"area_code\": {\n        \"id\": -60162949,\n        \"area_code\": \"sed eiusmod\",\n        \"state_code\": \"reprehenderit exercitation aliquip eu\",\n        \"state_name\": \"aliqua commodo\",\n        \"country_code\": \"quis est et\",\n        \"time_zone\": \"amet dolor\",\n        \"group_id\": 80386215\n      },\n      \"landline\": {\n        \"id\": 34902831,\n        \"number_id\": 80817156,\n        \"address_sid\": \"consectetur velit sint ut anim\",\n        \"sid\": \"elit sit in mollit\",\n        \"document_sid\": \"quis ipsum dolore magna exercitation\",\n        \"status\": \"consectetur irure commodo dolore\",\n        \"verification_attempts\": 42854812,\n        \"last_verify_attempt_at\": \"deserunt reprehenderit id\",\n        \"landline_name\": \"ad tempor laborum\",\n        \"street_address\": \"amet sunt Duis ut et\",\n        \"city\": \"commodo\",\n        \"state\": \"enim\",\n        \"zip_code\": \"Excepteur dolore Lorem occaecat\",\n        \"completed\": -82050997,\n        \"created_at\": \"ipsum tempor commodo eu pariatur\",\n        \"updated_at\": \"aute aliqua in\"\n      },\n      \"number_vendor\": {\n        \"id\": 16695441,\n        \"is_active\": true,\n        \"key\": \"tempor exercitation\",\n        \"name\": \"reprehenderit irure commodo\",\n        \"credentials_prefix\": \"ullamco\",\n        \"twilio_sid\": \"sit do\",\n        \"twilio_auth_token\": \"eu ad\",\n        \"is_billable\": -54294838,\n        \"created_at\": \"officia tempor\",\n        \"updated_at\": \"do exercitation labore tempor laborum\"\n      },\n      \"call_forwarding\": {\n        \"id\": 2651077,\n        \"number_id\": 51510655,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"labore occaecat\",\n        \"country\": \"Ut nulla est \",\n        \"number\": \"mollit voluptate aute \",\n        \"country_calling_code\": \"culpa ullamco labore nostrud\",\n        \"national_number\": \"culpa exercitation eiusmod occaecat\",\n        \"formatted_number\": \"Lorem aliqua veniam dolore est\",\n        \"extension\": \"commodo u\",\n        \"created_at\": \"voluptate occaecat\",\n        \"updated_at\": \"ea sint dolore\"\n      },\n      \"numberable_id\": 80025744,\n      \"numberable_type\": \"qui consequat fugiat\",\n      \"numberable\": {\n        \"id\": -84640461,\n        \"organization_id\": 48385556,\n        \"owner_id\": -94804875,\n        \"team_id\": 9933814,\n        \"name\": \"commodo quis consectetur reprehenderit\",\n        \"created_at\": \"sit cillum exercitation aute Lorem\",\n        \"updated_at\": \"esse\"\n      }\n    },\n    \"allow_call\": true,\n    \"name\": \"est cillum magna occaecat\",\n    \"group_name\": \"aute est\",\n    \"is_group\": false,\n    \"participants\": [\n      {\n        \"id\": 6136039,\n        \"owner_id\": 25768886,\n        \"color\": \"adipisicing do dolor\",\n        \"first_name\": \"officia sunt\",\n        \"last_name\": \"exercitation adipisicing Ut\",\n        \"full_name\": \"cillum aliqua sunt ullamco\",\n        \"email\": \"tempor sunt\",\n        \"photo_url\": \"aliqua consectetur voluptate\",\n        \"number\": \"ipsum\",\n        \"country\": \"aute irure enim incididunt fugiat\",\n        \"country_calling_code\": \"in proident labore\",\n        \"national_number\": \"ullamco exercitation labor\",\n        \"typeted_number\": \"consequat labore nulla\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"aliquip deserunt exercitation labore\",\n        \"opt_in_request_at\": \"occaecat repr\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": -99293463\n          },\n          {\n            \"number_id\": -54325174\n          }\n        ],\n        \"opt_in_at\": \"Duis ut labore ex et\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -88680872,\n            \"number_id\": 14289946,\n            \"name\": \"mollit elit\",\n            \"disabled\": true,\n            \"timestamp\": \"non\",\n            \"value\": true\n          },\n          {\n            \"id\": 73446223,\n            \"number_id\": -44248410,\n            \"name\": \"et amet nulla nostrud\",\n            \"disabled\": true,\n            \"timestamp\": \"ut sunt laboris\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"do nisi\",\n        \"updated_at\": \"aute et sit\",\n        \"integration_vendor_id\": 81760258,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": -3302175,\n            \"key\": \"in commodo dolore fugiat\",\n            \"name\": \"pariatur Excepteur\",\n            \"photo_url\": \"occaecat dolor id\"\n          },\n          {\n            \"id\": -49536737,\n            \"key\": \"consectetur commodo\",\n            \"name\": \"aliqua pariatur magna\",\n            \"photo_url\": \"ullamco consequat labore ipsum\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -18468358,\n            \"custom_field_id\": -63845537,\n            \"contact_id\": 20257575,\n            \"field_key\": \"dolor qui et\",\n            \"organization_id\": 87958820,\n            \"text\": \"pariatur laborum repre\",\n            \"number\": 67551320,\n            \"date\": \"officia qui laboris\",\n            \"created_at\": \"ut\",\n            \"updated_at\": \"dolor reprehenderit consequat\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": -21627005,\n            \"custom_field_id\": -44904878,\n            \"contact_id\": 58381351,\n            \"field_key\": \"Duis dolore\",\n            \"organization_id\": 44505762,\n            \"text\": \"id commodo anim\",\n            \"number\": -11345326,\n            \"date\": \"commodo amet ipsum et\",\n            \"created_at\": \"in eu n\",\n            \"updated_at\": \"esse laboris proident rep\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 90753327,\n            \"name\": \"fugiat adipisic\",\n            \"label\": \"proident Lorem deserunt\",\n            \"created_at\": \"nostrud qui aute reprehenderit\"\n          },\n          {\n            \"id\": -95988802,\n            \"name\": \"ea voluptate consequat\",\n            \"label\": \"dolore ex ipsum\",\n            \"created_at\": \"culpa ut irure Duis\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -47679990,\n            \"text\": \"cupidatat ullamco dolor\",\n            \"created_at\": \"dolore et ea esse Lorem\",\n            \"updated_at\": \"cillum enim\"\n          },\n          {\n            \"id\": -84803713,\n            \"text\": \"non\",\n            \"created_at\": \"i\",\n            \"updated_at\": \"aliquip anim id cupidatat amet\"\n          }\n        ]\n      },\n      {\n        \"id\": -52997460,\n        \"owner_id\": 80999936,\n        \"color\": \"minim c\",\n        \"first_name\": \"laboris est\",\n        \"last_name\": \"sunt et irure Excepteur\",\n        \"full_name\": \"ex ipsum velit\",\n        \"email\": \"cupidatat et proident Lorem sint\",\n        \"photo_url\": \"adipisicing ut nisi\",\n        \"number\": \"irure in dolor\",\n        \"country\": \"dolore esse irure veniam\",\n        \"country_calling_code\": \"sunt proident velit in\",\n        \"national_number\": \"ullamco velit\",\n        \"typeted_number\": \"veniam\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"dolor pariatur pr\",\n        \"opt_in_request_at\": \"elit proident dolor\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 72645379\n          },\n          {\n            \"number_id\": 42371952\n          }\n        ],\n        \"opt_in_at\": \"quis minim\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -42660385,\n            \"number_id\": -80904115,\n            \"name\": \"sunt amet\",\n            \"disabled\": false,\n            \"timestamp\": \"culpa ea\",\n            \"value\": false\n          },\n          {\n            \"id\": 38406659,\n            \"number_id\": -57895378,\n            \"name\": \"anim qui est velit\",\n            \"disabled\": false,\n            \"timestamp\": \"reprehenderit do\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"est ex dolore\",\n        \"updated_at\": \"sit reprehe\",\n        \"integration_vendor_id\": 62651881,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 69566273,\n            \"key\": \"qui esse consectetur\",\n            \"name\": \"officia in\",\n            \"photo_url\": \"do consectetur Lorem\"\n          },\n          {\n            \"id\": -74910566,\n            \"key\": \"ullamco\",\n            \"name\": \"cupidatat\",\n            \"photo_url\": \"sit minim Ut\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -2195298,\n            \"custom_field_id\": -39780013,\n            \"contact_id\": 64670246,\n            \"field_key\": \"i\",\n            \"organization_id\": -68949306,\n            \"text\": \"ad\",\n            \"number\": 69756639,\n            \"date\": \"ut enim qui\",\n            \"created_at\": \"enim sunt sint dolore\",\n            \"updated_at\": \"nulla occaecat laboris\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": -2871115,\n            \"custom_field_id\": -88802147,\n            \"contact_id\": 8840437,\n            \"field_key\": \"in\",\n            \"organization_id\": -73791368,\n            \"text\": \"aute sunt elit nulla\",\n            \"number\": -79531054,\n            \"date\": \"eu culpa id\",\n            \"created_at\": \"magna Duis tempor Lorem deserunt\",\n            \"updated_at\": \"ut l\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": -21284104,\n            \"name\": \"anim officia minim ea\",\n            \"label\": \"adipisicing\",\n            \"created_at\": \"pariatur commodo\"\n          },\n          {\n            \"id\": 44567818,\n            \"name\": \"culpa laborum\",\n            \"label\": \"ut\",\n            \"created_at\": \"incididunt laborum exercitation\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -26006090,\n            \"text\": \"eu labore pariatur anim\",\n            \"created_at\": \"adipisicing laborum\",\n            \"updated_at\": \"anim Duis fugiat consequat veniam\"\n          },\n          {\n            \"id\": -59117202,\n            \"text\": \"in\",\n            \"created_at\": \"cons\",\n            \"updated_at\": \"sit dolor amet eiusmod\"\n          }\n        ]\n      }\n    ],\n    \"reassign_logs\": [\n      {\n        \"id\": 9714124,\n        \"conversation_id\": -32454861,\n        \"organization_id\": -79240769,\n        \"changer_user\": [\n          {\n            \"user_id\": -84873541,\n            \"first_name\": \"nulla consequat laboris qui aute\",\n            \"last_name\": \"mollit fugiat\"\n          },\n          {\n            \"user_id\": -95333861,\n            \"first_name\": \"labore dolo\",\n            \"last_name\": \"sint ex aliquip in\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": -24255864,\n            \"first_name\": \"u\",\n            \"last_name\": \"ut tempor\"\n          },\n          {\n            \"user_id\": -33092464,\n            \"first_name\": \"non in\",\n            \"last_name\": \"non mollit eiusmod ut\"\n          }\n        ],\n        \"created_at\": \"eiusmod sint Exc\"\n      },\n      {\n        \"id\": 85377745,\n        \"conversation_id\": -68921380,\n        \"organization_id\": 83850907,\n        \"changer_user\": [\n          {\n            \"user_id\": -37761915,\n            \"first_name\": \"nisi dolore dolor\",\n            \"last_name\": \"esse sit\"\n          },\n          {\n            \"user_id\": 62140917,\n            \"first_name\": \"enim aliqua in minim in\",\n            \"last_name\": \"veniam\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 67780345,\n            \"first_name\": \"labore ex non\",\n            \"last_name\": \"deserunt aute et aliquip\"\n          },\n          {\n            \"user_id\": -79369652,\n            \"first_name\": \"non dolore Ut\",\n            \"last_name\": \"exercitation ut\"\n          }\n        ],\n        \"created_at\": \"ipsum voluptate enim\"\n      }\n    ]\n  }\n]"}],"_postman_id":"27602c5c-e171-4009-b11c-3d19904d7dcd"},{"name":"Start a new conversation","id":"20255b8f-aa05-4945-97ab-8fa8c6724424","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations?contact_id=27950450&team_id=2517619&number_id=2517619","description":"<p>Starts a conversation with a specific contact. When the first message is sent to or received from a contact, a new conversation is created automatically.  <br /><br />In case a contact id is given, the endpoint returns a new conversation with them. In case team id is provided, the endpoint returns a new conversation in a shared inbox.</p>\n","urlObject":{"path":["conversations"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Contact ID</p>\n","type":"text/plain"},"key":"contact_id","value":"27950450"},{"description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"key":"team_id","value":"2517619"},{"description":{"content":"<p>Number ID</p>\n","type":"text/plain"},"key":"number_id","value":"2517619"}],"variable":[]}},"response":[{"id":"a583f4e7-6fdf-4fa6-ab1c-9ad357b2be5b","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations?contact_id=27950450&team_id=2517619&number_id=2517619","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations"],"query":[{"key":"contact_id","value":"27950450"},{"key":"team_id","value":"2517619"},{"key":"number_id","value":"2517619"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 21536422,\n  \"inbox_id\": 2518111,\n  \"contact_id\": -93367435,\n  \"user_id\": 70312675,\n  \"last_message_at\": \"ad sit Ut\",\n  \"last_read_at\": \"fugiat labore commodo\",\n  \"started_at\": \"non cup\",\n  \"closed_at\": \"Ut in enim non\",\n  \"contact\": {\n    \"id\": -94132736,\n    \"owner_id\": -77561544,\n    \"color\": \"Lorem enim culpa aliqua\",\n    \"first_name\": \"ut\",\n    \"last_name\": \"commodo dolor Excepteur\",\n    \"full_name\": \"veniam\",\n    \"email\": \"do enim dolor\",\n    \"photo_url\": \"deserunt commodo nulla minim Ut\",\n    \"number\": \"est quis exercitation deserunt sed\",\n    \"country\": \"enim Lorem\",\n    \"country_calling_code\": \"sint qui velit nostrud\",\n    \"national_number\": \"do in consequat ex\",\n    \"formatted_number\": \"deserunt elit\",\n    \"opt_out\": \"exercitation eu labore consequat\",\n    \"opt_out_at\": \"pariatur commodo culpa\",\n    \"opt_in_request_at\": \"pro\",\n    \"opt_in_at\": \"commodo in nulla qui\",\n    \"created_at\": \"eiusmod nisi tempor\",\n    \"updated_at\": \"ea ad\",\n    \"integration_vendor_id\": \"occaecat proident consequat\",\n    \"prevent_autolink\": true,\n    \"integration\": {\n      \"id\": 46989409,\n      \"key\": \"cillum\",\n      \"name\": \"\",\n      \"photo_url\": \"incididunt eiusmod ea ut\"\n    },\n    \"tags\": [\n      [\n        {\n          \"id\": -83009780,\n          \"name\": \"dolor in deserunt\",\n          \"label\": \"id labore\",\n          \"created_at\": \"Ut ea nisi\"\n        },\n        {\n          \"id\": 33478907,\n          \"name\": \"sunt officia Lorem ut\",\n          \"label\": \"culpa anim nisi cupidatat\",\n          \"created_at\": \"voluptate anim\"\n        }\n      ],\n      [\n        {\n          \"id\": 7832811,\n          \"name\": \"officia elit irure\",\n          \"label\": \"in\",\n          \"created_at\": \"dolor mollit\"\n        },\n        {\n          \"id\": -4419015,\n          \"name\": \"occaecat\",\n          \"label\": \"culpa est exercitation occaecat\",\n          \"created_at\": \"in labore\"\n        }\n      ]\n    ]\n  },\n  \"owner\": {\n    \"id\": -76377952,\n    \"first_name\": \"fugiat esse id nisi\",\n    \"last_name\": \"Excepteur do dolore aliqua\",\n    \"full_name\": \"dolor proident culpa\",\n    \"photo_url\": \"voluptate sit elit dolore\",\n    \"email\": \"consectetur in Ut occaecat\"\n  },\n  \"recent_message\": [\n    {\n      \"id\": -14701319,\n      \"body\": \"aliquip Ut ex\",\n      \"user_id\": 52826016,\n      \"type\": \"eu dolor reprehenderit\",\n      \"sent_at\": \"qui Ut commodo Duis\",\n      \"status\": \"enim in\"\n    },\n    {\n      \"id\": 87421583,\n      \"body\": \"velit\",\n      \"user_id\": 75318236,\n      \"type\": \"qui aute\",\n      \"sent_at\": \"anim reprehenderit enim\",\n      \"status\": \"do commodo ipsum aute\"\n    }\n  ]\n}"},{"id":"04ca52a7-9507-415e-99d2-b73afabd415a","name":"Unprocessable entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations?contact_id=27950450&team_id=2517619&number_id=2517619","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations"],"query":[{"key":"contact_id","value":"27950450"},{"key":"team_id","value":"2517619"},{"key":"number_id","value":"2517619"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"20255b8f-aa05-4945-97ab-8fa8c6724424"},{"name":"Open conversation","id":"f59a3dd7-b8ac-4789-ba01-57e68da30f79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/open","urlObject":{"path":["conversations",":conversation","open"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"67047b60-3496-4fe0-9281-fd381426e1d6","description":{"content":"<p>(Required) Conversation id</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"conversation"}]}},"response":[{"id":"3c64cb72-d40b-429d-97ef-cf6313b111e9","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/open","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations",":conversation","open"],"variable":[{"key":"conversation","value":"-46945205","description":"(Required) Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -2108737,\n  \"inbox_id\": 1988509,\n  \"contact_id\": -78515853,\n  \"user_id\": -28783750,\n  \"last_message_at\": \"eiusmod deserunt dolore sunt amet\",\n  \"last_manual_message_at\": \"esse\",\n  \"last_read_at\": \"nisi mini\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"in mollit\",\n  \"tagging_last_read_at\": \"voluptate\",\n  \"started_at\": \"proident adipisicing eu enim\",\n  \"closed_at\": \"proident esse minim cillum exercitation\",\n  \"owner\": {\n    \"id\": 99905774,\n    \"email\": \"laboris\",\n    \"first_name\": \"nisi Ut\",\n    \"last_name\": \"ea conse\",\n    \"full_name\": \"in ut tempor\",\n    \"role\": \"nisi labore Ut id\",\n    \"inbox_id\": -46614392,\n    \"organization_id\": 39268521,\n    \"photo_url\": \"enim vel\",\n    \"unread\": -32318824,\n    \"number\": \"Lorem est non\",\n    \"formatted_number\": \"Lorem dolore\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26892282,\n        \"country\": \"in dolor\",\n        \"number\": \"ipsum amet\",\n        \"formatted_number\": \"dolore magna\",\n        \"mms\": \"nulla fugiat dolore quis\"\n      },\n      {\n        \"id\": 50126318,\n        \"country\": \"laborum sunt nisi\",\n        \"number\": \"consequat\",\n        \"formatted_number\": \"reprehenderit id culpa Excepteur pariatur\",\n        \"mms\": \"dolor\"\n      }\n    ],\n    \"userPermissions\": [\n      \"commodo incididunt\",\n      \"Duis laborum adipisicing\"\n    ]\n  },\n  \"number_id\": 87640219,\n  \"number\": {\n    \"id\": 95524518,\n    \"organization_id\": 62599663,\n    \"country\": \"elit fugiat sed Ut nulla\",\n    \"state\": \"aliquip Ut dolor ut\",\n    \"city\": \"consequat consectetur nisi sint\",\n    \"number\": \"consectetur magna incididunt qui\",\n    \"number_vendor_id\": 92923797,\n    \"country_calling_code\": \"sint ex mollit\",\n    \"national_number\": \"dolor do\",\n    \"formattedNumber\": \"cillum\",\n    \"formatted_number\": \"ad occaecat U\",\n    \"short_code\": -47768422,\n    \"is_landline\": 39951816,\n    \"is_toll_free\": false,\n    \"is_aircall\": true,\n    \"voice\": false,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": false,\n    \"verified_status\": \"dolore enim\",\n    \"area_code\": {\n      \"id\": -7048576,\n      \"area_code\": \"culpa quis\",\n      \"state_code\": \"ad voluptate \",\n      \"state_name\": \"dolor cillum sit cupidatat\",\n      \"country_code\": \"nulla commodo\",\n      \"time_zone\": \"Lorem voluptate Ut aliqua ad\",\n      \"group_id\": 4271247\n    },\n    \"landline\": {\n      \"id\": 11162529,\n      \"number_id\": 18409564,\n      \"address_sid\": \"voluptate eiusmod esse irure\",\n      \"sid\": \"culpa commodo el\",\n      \"document_sid\": \"deserunt ullamc\",\n      \"status\": \"exercitation ullamco tempor nisi\",\n      \"verification_attempts\": 70491639,\n      \"last_verify_attempt_at\": \"reprehenderit velit\",\n      \"landline_name\": \"ad laborum\",\n      \"street_address\": \"velit labore\",\n      \"city\": \"veniam in id velit\",\n      \"state\": \"ut occaecat in\",\n      \"zip_code\": \"sint qui nostrud\",\n      \"completed\": -69370291,\n      \"created_at\": \"velit\",\n      \"updated_at\": \"cillum do ipsum commodo\"\n    },\n    \"number_vendor\": {\n      \"id\": 62447556,\n      \"is_active\": true,\n      \"key\": \"dolor ut minim in\",\n      \"name\": \"esse magna nulla amet dolore\",\n      \"credentials_prefix\": \"anim dolore aliqua consequat nulla\",\n      \"twilio_sid\": \"sunt officia elit\",\n      \"twilio_auth_token\": \"irure consectetur c\",\n      \"is_billable\": -8912338,\n      \"created_at\": \"velit anim\",\n      \"updated_at\": \"dolor ut dolo\"\n    },\n    \"call_forwarding\": {\n      \"id\": 8383999,\n      \"number_id\": -76952795,\n      \"is_active\": true,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"ullamco quis\",\n      \"country\": \"non enim sed dolore\",\n      \"number\": \"proident nisi commodo cupidatat\",\n      \"country_calling_code\": \"nisi cillum adipisicing\",\n      \"national_number\": \"reprehenderit Lorem sunt\",\n      \"formatted_number\": \"deserunt aute\",\n      \"extension\": \"voluptate\",\n      \"created_at\": \"et Ut ad non elit\",\n      \"updated_at\": \"veniam cillum\"\n    },\n    \"numberable_id\": 5245011,\n    \"numberable_type\": \"magna adipisicing\",\n    \"numberable\": {\n      \"id\": 63021081,\n      \"organization_id\": -91212722,\n      \"owner_id\": 7983909,\n      \"team_id\": -51870790,\n      \"name\": \"consequat Ut\",\n      \"created_at\": \"in ea minim\",\n      \"updated_at\": \"non veniam\"\n    }\n  },\n  \"allow_call\": true,\n  \"name\": \"dolor do\",\n  \"group_name\": \"enim culpa laborum dolore\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 15610939,\n      \"owner_id\": -92718637,\n      \"color\": \"ex\",\n      \"first_name\": \"reprehenderit quis ipsum\",\n      \"last_name\": \"reprehenderit proident irure aliqua\",\n      \"full_name\": \"ut reprehenderit officia\",\n      \"email\": \"ame\",\n      \"photo_url\": \"dolore irure nulla\",\n      \"number\": \"consequat\",\n      \"country\": \"ut minim amet\",\n      \"country_calling_code\": \"cupidatat\",\n      \"national_number\": \"officia nisi\",\n      \"typeted_number\": \"esse cupidatat\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"eu enim\",\n      \"opt_in_request_at\": \"sit ea aliqua exercitation sed\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -82386262\n        },\n        {\n          \"number_id\": -73700242\n        }\n      ],\n      \"opt_in_at\": \"qui sit\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 73680286,\n          \"number_id\": -58074907,\n          \"name\": \"dolor sed\",\n          \"disabled\": true,\n          \"timestamp\": \"reprehenderit\",\n          \"value\": false\n        },\n        {\n          \"id\": 82532236,\n          \"number_id\": 63531545,\n          \"name\": \"cupidatat veniam officia exercitation incididunt\",\n          \"disabled\": true,\n          \"timestamp\": \"magna ad\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"ullamco ut in\",\n      \"updated_at\": \"no\",\n      \"integration_vendor_id\": 95063998,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -14088660,\n          \"key\": \"sint elit\",\n          \"name\": \"esse nulla tempor dolore\",\n          \"photo_url\": \"ad magna in\"\n        },\n        {\n          \"id\": 72094498,\n          \"key\": \"eu ut nulla\",\n          \"name\": \"ex ut laboris\",\n          \"photo_url\": \"eiusmod quis sint in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 89566966,\n          \"custom_field_id\": 28544420,\n          \"contact_id\": -18677790,\n          \"field_key\": \"sunt\",\n          \"organization_id\": 16737846,\n          \"text\": \"tempor\",\n          \"number\": 72608645,\n          \"date\": \"dolore ullamco sit\",\n          \"created_at\": \"sunt ea\",\n          \"updated_at\": \"anim voluptate n\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -73530648,\n          \"custom_field_id\": 63216793,\n          \"contact_id\": -85567620,\n          \"field_key\": \"ipsum amet\",\n          \"organization_id\": 7756345,\n          \"text\": \"in sint incididunt\",\n          \"number\": -75756281,\n          \"date\": \"sed in laboris\",\n          \"created_at\": \"Duis esse aliqua\",\n          \"updated_at\": \"anim consequat cupidatat esse\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 91811830,\n          \"name\": \"dolore qui Lorem\",\n          \"label\": \"mollit velit deserunt\",\n          \"created_at\": \"ullamco proident ip\"\n        },\n        {\n          \"id\": 80768431,\n          \"name\": \"aliqua ut enim minim cupidatat\",\n          \"label\": \"consectetur\",\n          \"created_at\": \"velit commodo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -26150780,\n          \"text\": \"mollit amet labore in\",\n          \"created_at\": \"officia deserunt\",\n          \"updated_at\": \"aliquip ex ut\"\n        },\n        {\n          \"id\": 21087648,\n          \"text\": \"Ut nulla et\",\n          \"created_at\": \"do velit sint\",\n          \"updated_at\": \"nulla tempor amet eu in\"\n        }\n      ]\n    },\n    {\n      \"id\": -63929480,\n      \"owner_id\": 40660586,\n      \"color\": \"anim labore deserunt enim non\",\n      \"first_name\": \"nulla ullamco\",\n      \"last_name\": \"aute consequat dolor\",\n      \"full_name\": \"occaecat veniam\",\n      \"email\": \"culpa elit do\",\n      \"photo_url\": \"sit voluptate d\",\n      \"number\": \"irure\",\n      \"country\": \"ullamco amet cillum\",\n      \"country_calling_code\": \"mollit\",\n      \"national_number\": \"i\",\n      \"typeted_number\": \"mollit sed qui\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"minim est\",\n      \"opt_in_request_at\": \"in esse\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 61606162\n        },\n        {\n          \"number_id\": -29846808\n        }\n      ],\n      \"opt_in_at\": \"magna proident\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -28947393,\n          \"number_id\": -10811445,\n          \"name\": \"in ut nisi officia\",\n          \"disabled\": true,\n          \"timestamp\": \"pariatur Duis sit et\",\n          \"value\": false\n        },\n        {\n          \"id\": -10419148,\n          \"number_id\": 59732489,\n          \"name\": \"nostrud ullamco sunt\",\n          \"disabled\": false,\n          \"timestamp\": \"Lorem aute cillum\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"cupidatat magna adipisicing\",\n      \"updated_at\": \"commodo\",\n      \"integration_vendor_id\": -16662202,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 75336919,\n          \"key\": \"et ut\",\n          \"name\": \"ut tempor\",\n          \"photo_url\": \"quis aute i\"\n        },\n        {\n          \"id\": 53006239,\n          \"key\": \"pariatur consectetur v\",\n          \"name\": \"culpa\",\n          \"photo_url\": \"incididunt aliqua in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -48887206,\n          \"custom_field_id\": 1840762,\n          \"contact_id\": 70272917,\n          \"field_key\": \"velit Excepteur\",\n          \"organization_id\": -23963645,\n          \"text\": \"aute aliquip\",\n          \"number\": -17483065,\n          \"date\": \"fugiat amet ad\",\n          \"created_at\": \"nostrud in\",\n          \"updated_at\": \"anim proident nulla voluptate\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -18744873,\n          \"custom_field_id\": 17530678,\n          \"contact_id\": 49220893,\n          \"field_key\": \"culpa Excepteur nulla veniam\",\n          \"organization_id\": -30823407,\n          \"text\": \"est sint nostrud\",\n          \"number\": 32671223,\n          \"date\": \"sit cupidatat nulla velit l\",\n          \"created_at\": \"non proident quis ut\",\n          \"updated_at\": \"ipsum in\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -1496095,\n          \"name\": \"lab\",\n          \"label\": \"labore consectetur adipisicing\",\n          \"created_at\": \"do qui sed\"\n        },\n        {\n          \"id\": -29498844,\n          \"name\": \"reprehenderit in enim\",\n          \"label\": \"laboris ipsum enim\",\n          \"created_at\": \"consequat laborum consectetur Duis\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -82346709,\n          \"text\": \"est Duis\",\n          \"created_at\": \"incididunt Duis minim\",\n          \"updated_at\": \"adipisicing aliqua\"\n        },\n        {\n          \"id\": 7824183,\n          \"text\": \"ullamco minim fugiat\",\n          \"created_at\": \"nostrud minim consequat mollit\",\n          \"updated_at\": \"cillum adipisicing\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 91718787,\n      \"conversation_id\": 17339615,\n      \"organization_id\": -85852575,\n      \"changer_user\": [\n        {\n          \"user_id\": -94804109,\n          \"first_name\": \"deserunt velit minim\",\n          \"last_name\": \"laborum est\"\n        },\n        {\n          \"user_id\": 55896602,\n          \"first_name\": \"eiusmod esse consequ\",\n          \"last_name\": \"culpa velit amet\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 96993621,\n          \"first_name\": \"ut incididunt fugiat est occaecat\",\n          \"last_name\": \"cupidatat\"\n        },\n        {\n          \"user_id\": 34318518,\n          \"first_name\": \"\",\n          \"last_name\": \"dolor est ullamco consectetur\"\n        }\n      ],\n      \"created_at\": \"Duis commodo non ea ad\"\n    },\n    {\n      \"id\": 1131512,\n      \"conversation_id\": 99029150,\n      \"organization_id\": 27335628,\n      \"changer_user\": [\n        {\n          \"user_id\": -46614990,\n          \"first_name\": \"esse ea nostrud ipsum et\",\n          \"last_name\": \"voluptate\"\n        },\n        {\n          \"user_id\": 28357907,\n          \"first_name\": \"Ut aute proident sint velit\",\n          \"last_name\": \"dolore consectetur\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": -42795535,\n          \"first_name\": \"dolore ut deserunt\",\n          \"last_name\": \"ut nostrud Lorem commodo\"\n        },\n        {\n          \"user_id\": -2435625,\n          \"first_name\": \"proident officia incididunt\",\n          \"last_name\": \"dolor sint in\"\n        }\n      ],\n      \"created_at\": \"cillum laborum irure veniam\"\n    }\n  ]\n}"},{"id":"79dc8c06-5ccd-471f-9f6c-078ba770390b","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/open","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations",":conversation","open"],"variable":[{"key":"conversation","value":"-46945205","description":"(Required) Conversation id"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"ad elit ex sit commo\",\n  \"conversation_id\": 87126853\n}"}],"_postman_id":"f59a3dd7-b8ac-4789-ba01-57e68da30f79"},{"name":"Mark conversation as read","id":"e4eaf765-e565-4c2c-aac4-e57e19c84b91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/read","description":"<p>This endpoint changes the status of incoming messages in a given conversation to read by the current user. <br /><br />If you’ve read a message, the endpoint sets the <code>last_read_at</code> field with current time and the message becomes grouped with all the other read messages.</p>\n","urlObject":{"path":["conversations",":conversation","read"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"4ddb5fe0-4558-4229-b064-248f28f68bd1","description":{"content":"<p>(Required) ID of conversation</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"conversation"}]}},"response":[{"id":"a4263047-1efd-47dd-8a60-85de0bc6176e","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/read","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations",":conversation","read"],"variable":[{"key":"conversation","value":"-46945205","description":"(Required) ID of conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -2108737,\n  \"inbox_id\": 1988509,\n  \"contact_id\": -78515853,\n  \"user_id\": -28783750,\n  \"last_message_at\": \"eiusmod deserunt dolore sunt amet\",\n  \"last_manual_message_at\": \"esse\",\n  \"last_read_at\": \"nisi mini\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"in mollit\",\n  \"tagging_last_read_at\": \"voluptate\",\n  \"started_at\": \"proident adipisicing eu enim\",\n  \"closed_at\": \"proident esse minim cillum exercitation\",\n  \"owner\": {\n    \"id\": 99905774,\n    \"email\": \"laboris\",\n    \"first_name\": \"nisi Ut\",\n    \"last_name\": \"ea conse\",\n    \"full_name\": \"in ut tempor\",\n    \"role\": \"nisi labore Ut id\",\n    \"inbox_id\": -46614392,\n    \"organization_id\": 39268521,\n    \"photo_url\": \"enim vel\",\n    \"unread\": -32318824,\n    \"number\": \"Lorem est non\",\n    \"formatted_number\": \"Lorem dolore\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26892282,\n        \"country\": \"in dolor\",\n        \"number\": \"ipsum amet\",\n        \"formatted_number\": \"dolore magna\",\n        \"mms\": \"nulla fugiat dolore quis\"\n      },\n      {\n        \"id\": 50126318,\n        \"country\": \"laborum sunt nisi\",\n        \"number\": \"consequat\",\n        \"formatted_number\": \"reprehenderit id culpa Excepteur pariatur\",\n        \"mms\": \"dolor\"\n      }\n    ],\n    \"userPermissions\": [\n      \"commodo incididunt\",\n      \"Duis laborum adipisicing\"\n    ]\n  },\n  \"number_id\": 87640219,\n  \"number\": {\n    \"id\": 95524518,\n    \"organization_id\": 62599663,\n    \"country\": \"elit fugiat sed Ut nulla\",\n    \"state\": \"aliquip Ut dolor ut\",\n    \"city\": \"consequat consectetur nisi sint\",\n    \"number\": \"consectetur magna incididunt qui\",\n    \"number_vendor_id\": 92923797,\n    \"country_calling_code\": \"sint ex mollit\",\n    \"national_number\": \"dolor do\",\n    \"formattedNumber\": \"cillum\",\n    \"formatted_number\": \"ad occaecat U\",\n    \"short_code\": -47768422,\n    \"is_landline\": 39951816,\n    \"is_toll_free\": false,\n    \"is_aircall\": true,\n    \"voice\": false,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": false,\n    \"verified_status\": \"dolore enim\",\n    \"area_code\": {\n      \"id\": -7048576,\n      \"area_code\": \"culpa quis\",\n      \"state_code\": \"ad voluptate \",\n      \"state_name\": \"dolor cillum sit cupidatat\",\n      \"country_code\": \"nulla commodo\",\n      \"time_zone\": \"Lorem voluptate Ut aliqua ad\",\n      \"group_id\": 4271247\n    },\n    \"landline\": {\n      \"id\": 11162529,\n      \"number_id\": 18409564,\n      \"address_sid\": \"voluptate eiusmod esse irure\",\n      \"sid\": \"culpa commodo el\",\n      \"document_sid\": \"deserunt ullamc\",\n      \"status\": \"exercitation ullamco tempor nisi\",\n      \"verification_attempts\": 70491639,\n      \"last_verify_attempt_at\": \"reprehenderit velit\",\n      \"landline_name\": \"ad laborum\",\n      \"street_address\": \"velit labore\",\n      \"city\": \"veniam in id velit\",\n      \"state\": \"ut occaecat in\",\n      \"zip_code\": \"sint qui nostrud\",\n      \"completed\": -69370291,\n      \"created_at\": \"velit\",\n      \"updated_at\": \"cillum do ipsum commodo\"\n    },\n    \"number_vendor\": {\n      \"id\": 62447556,\n      \"is_active\": true,\n      \"key\": \"dolor ut minim in\",\n      \"name\": \"esse magna nulla amet dolore\",\n      \"credentials_prefix\": \"anim dolore aliqua consequat nulla\",\n      \"twilio_sid\": \"sunt officia elit\",\n      \"twilio_auth_token\": \"irure consectetur c\",\n      \"is_billable\": -8912338,\n      \"created_at\": \"velit anim\",\n      \"updated_at\": \"dolor ut dolo\"\n    },\n    \"call_forwarding\": {\n      \"id\": 8383999,\n      \"number_id\": -76952795,\n      \"is_active\": true,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"ullamco quis\",\n      \"country\": \"non enim sed dolore\",\n      \"number\": \"proident nisi commodo cupidatat\",\n      \"country_calling_code\": \"nisi cillum adipisicing\",\n      \"national_number\": \"reprehenderit Lorem sunt\",\n      \"formatted_number\": \"deserunt aute\",\n      \"extension\": \"voluptate\",\n      \"created_at\": \"et Ut ad non elit\",\n      \"updated_at\": \"veniam cillum\"\n    },\n    \"numberable_id\": 5245011,\n    \"numberable_type\": \"magna adipisicing\",\n    \"numberable\": {\n      \"id\": 63021081,\n      \"organization_id\": -91212722,\n      \"owner_id\": 7983909,\n      \"team_id\": -51870790,\n      \"name\": \"consequat Ut\",\n      \"created_at\": \"in ea minim\",\n      \"updated_at\": \"non veniam\"\n    }\n  },\n  \"allow_call\": true,\n  \"name\": \"dolor do\",\n  \"group_name\": \"enim culpa laborum dolore\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 15610939,\n      \"owner_id\": -92718637,\n      \"color\": \"ex\",\n      \"first_name\": \"reprehenderit quis ipsum\",\n      \"last_name\": \"reprehenderit proident irure aliqua\",\n      \"full_name\": \"ut reprehenderit officia\",\n      \"email\": \"ame\",\n      \"photo_url\": \"dolore irure nulla\",\n      \"number\": \"consequat\",\n      \"country\": \"ut minim amet\",\n      \"country_calling_code\": \"cupidatat\",\n      \"national_number\": \"officia nisi\",\n      \"typeted_number\": \"esse cupidatat\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"eu enim\",\n      \"opt_in_request_at\": \"sit ea aliqua exercitation sed\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -82386262\n        },\n        {\n          \"number_id\": -73700242\n        }\n      ],\n      \"opt_in_at\": \"qui sit\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 73680286,\n          \"number_id\": -58074907,\n          \"name\": \"dolor sed\",\n          \"disabled\": true,\n          \"timestamp\": \"reprehenderit\",\n          \"value\": false\n        },\n        {\n          \"id\": 82532236,\n          \"number_id\": 63531545,\n          \"name\": \"cupidatat veniam officia exercitation incididunt\",\n          \"disabled\": true,\n          \"timestamp\": \"magna ad\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"ullamco ut in\",\n      \"updated_at\": \"no\",\n      \"integration_vendor_id\": 95063998,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -14088660,\n          \"key\": \"sint elit\",\n          \"name\": \"esse nulla tempor dolore\",\n          \"photo_url\": \"ad magna in\"\n        },\n        {\n          \"id\": 72094498,\n          \"key\": \"eu ut nulla\",\n          \"name\": \"ex ut laboris\",\n          \"photo_url\": \"eiusmod quis sint in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 89566966,\n          \"custom_field_id\": 28544420,\n          \"contact_id\": -18677790,\n          \"field_key\": \"sunt\",\n          \"organization_id\": 16737846,\n          \"text\": \"tempor\",\n          \"number\": 72608645,\n          \"date\": \"dolore ullamco sit\",\n          \"created_at\": \"sunt ea\",\n          \"updated_at\": \"anim voluptate n\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -73530648,\n          \"custom_field_id\": 63216793,\n          \"contact_id\": -85567620,\n          \"field_key\": \"ipsum amet\",\n          \"organization_id\": 7756345,\n          \"text\": \"in sint incididunt\",\n          \"number\": -75756281,\n          \"date\": \"sed in laboris\",\n          \"created_at\": \"Duis esse aliqua\",\n          \"updated_at\": \"anim consequat cupidatat esse\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 91811830,\n          \"name\": \"dolore qui Lorem\",\n          \"label\": \"mollit velit deserunt\",\n          \"created_at\": \"ullamco proident ip\"\n        },\n        {\n          \"id\": 80768431,\n          \"name\": \"aliqua ut enim minim cupidatat\",\n          \"label\": \"consectetur\",\n          \"created_at\": \"velit commodo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -26150780,\n          \"text\": \"mollit amet labore in\",\n          \"created_at\": \"officia deserunt\",\n          \"updated_at\": \"aliquip ex ut\"\n        },\n        {\n          \"id\": 21087648,\n          \"text\": \"Ut nulla et\",\n          \"created_at\": \"do velit sint\",\n          \"updated_at\": \"nulla tempor amet eu in\"\n        }\n      ]\n    },\n    {\n      \"id\": -63929480,\n      \"owner_id\": 40660586,\n      \"color\": \"anim labore deserunt enim non\",\n      \"first_name\": \"nulla ullamco\",\n      \"last_name\": \"aute consequat dolor\",\n      \"full_name\": \"occaecat veniam\",\n      \"email\": \"culpa elit do\",\n      \"photo_url\": \"sit voluptate d\",\n      \"number\": \"irure\",\n      \"country\": \"ullamco amet cillum\",\n      \"country_calling_code\": \"mollit\",\n      \"national_number\": \"i\",\n      \"typeted_number\": \"mollit sed qui\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"minim est\",\n      \"opt_in_request_at\": \"in esse\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 61606162\n        },\n        {\n          \"number_id\": -29846808\n        }\n      ],\n      \"opt_in_at\": \"magna proident\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -28947393,\n          \"number_id\": -10811445,\n          \"name\": \"in ut nisi officia\",\n          \"disabled\": true,\n          \"timestamp\": \"pariatur Duis sit et\",\n          \"value\": false\n        },\n        {\n          \"id\": -10419148,\n          \"number_id\": 59732489,\n          \"name\": \"nostrud ullamco sunt\",\n          \"disabled\": false,\n          \"timestamp\": \"Lorem aute cillum\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"cupidatat magna adipisicing\",\n      \"updated_at\": \"commodo\",\n      \"integration_vendor_id\": -16662202,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 75336919,\n          \"key\": \"et ut\",\n          \"name\": \"ut tempor\",\n          \"photo_url\": \"quis aute i\"\n        },\n        {\n          \"id\": 53006239,\n          \"key\": \"pariatur consectetur v\",\n          \"name\": \"culpa\",\n          \"photo_url\": \"incididunt aliqua in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -48887206,\n          \"custom_field_id\": 1840762,\n          \"contact_id\": 70272917,\n          \"field_key\": \"velit Excepteur\",\n          \"organization_id\": -23963645,\n          \"text\": \"aute aliquip\",\n          \"number\": -17483065,\n          \"date\": \"fugiat amet ad\",\n          \"created_at\": \"nostrud in\",\n          \"updated_at\": \"anim proident nulla voluptate\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -18744873,\n          \"custom_field_id\": 17530678,\n          \"contact_id\": 49220893,\n          \"field_key\": \"culpa Excepteur nulla veniam\",\n          \"organization_id\": -30823407,\n          \"text\": \"est sint nostrud\",\n          \"number\": 32671223,\n          \"date\": \"sit cupidatat nulla velit l\",\n          \"created_at\": \"non proident quis ut\",\n          \"updated_at\": \"ipsum in\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -1496095,\n          \"name\": \"lab\",\n          \"label\": \"labore consectetur adipisicing\",\n          \"created_at\": \"do qui sed\"\n        },\n        {\n          \"id\": -29498844,\n          \"name\": \"reprehenderit in enim\",\n          \"label\": \"laboris ipsum enim\",\n          \"created_at\": \"consequat laborum consectetur Duis\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -82346709,\n          \"text\": \"est Duis\",\n          \"created_at\": \"incididunt Duis minim\",\n          \"updated_at\": \"adipisicing aliqua\"\n        },\n        {\n          \"id\": 7824183,\n          \"text\": \"ullamco minim fugiat\",\n          \"created_at\": \"nostrud minim consequat mollit\",\n          \"updated_at\": \"cillum adipisicing\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 91718787,\n      \"conversation_id\": 17339615,\n      \"organization_id\": -85852575,\n      \"changer_user\": [\n        {\n          \"user_id\": -94804109,\n          \"first_name\": \"deserunt velit minim\",\n          \"last_name\": \"laborum est\"\n        },\n        {\n          \"user_id\": 55896602,\n          \"first_name\": \"eiusmod esse consequ\",\n          \"last_name\": \"culpa velit amet\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 96993621,\n          \"first_name\": \"ut incididunt fugiat est occaecat\",\n          \"last_name\": \"cupidatat\"\n        },\n        {\n          \"user_id\": 34318518,\n          \"first_name\": \"\",\n          \"last_name\": \"dolor est ullamco consectetur\"\n        }\n      ],\n      \"created_at\": \"Duis commodo non ea ad\"\n    },\n    {\n      \"id\": 1131512,\n      \"conversation_id\": 99029150,\n      \"organization_id\": 27335628,\n      \"changer_user\": [\n        {\n          \"user_id\": -46614990,\n          \"first_name\": \"esse ea nostrud ipsum et\",\n          \"last_name\": \"voluptate\"\n        },\n        {\n          \"user_id\": 28357907,\n          \"first_name\": \"Ut aute proident sint velit\",\n          \"last_name\": \"dolore consectetur\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": -42795535,\n          \"first_name\": \"dolore ut deserunt\",\n          \"last_name\": \"ut nostrud Lorem commodo\"\n        },\n        {\n          \"user_id\": -2435625,\n          \"first_name\": \"proident officia incididunt\",\n          \"last_name\": \"dolor sint in\"\n        }\n      ],\n      \"created_at\": \"cillum laborum irure veniam\"\n    }\n  ]\n}"}],"_postman_id":"e4eaf765-e565-4c2c-aac4-e57e19c84b91"},{"name":"Assign conversation to user","id":"af11cbde-77ec-4276-8236-b5d8ff4b5dc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/reassign?user_id=45775914","description":"<p>Allows you to assign a conversation to a specific user who is the right person to provide a response. <br /><br />Blank <code>User ID</code> field sets a conversation to <code>Unassigned</code>.</p>\n","urlObject":{"path":["conversations",":conversation","reassign"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>User ID</p>\n","type":"text/plain"},"key":"user_id","value":"45775914"}],"variable":[{"id":"24e9bff3-1f7f-44b4-ac82-eeb500740965","description":{"content":"<p>(Required) Conversation id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"conversation"}]}},"response":[{"id":"10765128-048f-413d-899a-2c33ef453287","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/reassign?user_id=45775914","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations",":conversation","reassign"],"query":[{"key":"user_id","value":"45775914"}],"variable":[{"key":"conversation","value":"27950450","description":"(Required) Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -2108737,\n  \"inbox_id\": 1988509,\n  \"contact_id\": -78515853,\n  \"user_id\": -28783750,\n  \"last_message_at\": \"eiusmod deserunt dolore sunt amet\",\n  \"last_manual_message_at\": \"esse\",\n  \"last_read_at\": \"nisi mini\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"in mollit\",\n  \"tagging_last_read_at\": \"voluptate\",\n  \"started_at\": \"proident adipisicing eu enim\",\n  \"closed_at\": \"proident esse minim cillum exercitation\",\n  \"owner\": {\n    \"id\": 99905774,\n    \"email\": \"laboris\",\n    \"first_name\": \"nisi Ut\",\n    \"last_name\": \"ea conse\",\n    \"full_name\": \"in ut tempor\",\n    \"role\": \"nisi labore Ut id\",\n    \"inbox_id\": -46614392,\n    \"organization_id\": 39268521,\n    \"photo_url\": \"enim vel\",\n    \"unread\": -32318824,\n    \"number\": \"Lorem est non\",\n    \"formatted_number\": \"Lorem dolore\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26892282,\n        \"country\": \"in dolor\",\n        \"number\": \"ipsum amet\",\n        \"formatted_number\": \"dolore magna\",\n        \"mms\": \"nulla fugiat dolore quis\"\n      },\n      {\n        \"id\": 50126318,\n        \"country\": \"laborum sunt nisi\",\n        \"number\": \"consequat\",\n        \"formatted_number\": \"reprehenderit id culpa Excepteur pariatur\",\n        \"mms\": \"dolor\"\n      }\n    ],\n    \"userPermissions\": [\n      \"commodo incididunt\",\n      \"Duis laborum adipisicing\"\n    ]\n  },\n  \"number_id\": 87640219,\n  \"number\": {\n    \"id\": 95524518,\n    \"organization_id\": 62599663,\n    \"country\": \"elit fugiat sed Ut nulla\",\n    \"state\": \"aliquip Ut dolor ut\",\n    \"city\": \"consequat consectetur nisi sint\",\n    \"number\": \"consectetur magna incididunt qui\",\n    \"number_vendor_id\": 92923797,\n    \"country_calling_code\": \"sint ex mollit\",\n    \"national_number\": \"dolor do\",\n    \"formattedNumber\": \"cillum\",\n    \"formatted_number\": \"ad occaecat U\",\n    \"short_code\": -47768422,\n    \"is_landline\": 39951816,\n    \"is_toll_free\": false,\n    \"is_aircall\": true,\n    \"voice\": false,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": false,\n    \"verified_status\": \"dolore enim\",\n    \"area_code\": {\n      \"id\": -7048576,\n      \"area_code\": \"culpa quis\",\n      \"state_code\": \"ad voluptate \",\n      \"state_name\": \"dolor cillum sit cupidatat\",\n      \"country_code\": \"nulla commodo\",\n      \"time_zone\": \"Lorem voluptate Ut aliqua ad\",\n      \"group_id\": 4271247\n    },\n    \"landline\": {\n      \"id\": 11162529,\n      \"number_id\": 18409564,\n      \"address_sid\": \"voluptate eiusmod esse irure\",\n      \"sid\": \"culpa commodo el\",\n      \"document_sid\": \"deserunt ullamc\",\n      \"status\": \"exercitation ullamco tempor nisi\",\n      \"verification_attempts\": 70491639,\n      \"last_verify_attempt_at\": \"reprehenderit velit\",\n      \"landline_name\": \"ad laborum\",\n      \"street_address\": \"velit labore\",\n      \"city\": \"veniam in id velit\",\n      \"state\": \"ut occaecat in\",\n      \"zip_code\": \"sint qui nostrud\",\n      \"completed\": -69370291,\n      \"created_at\": \"velit\",\n      \"updated_at\": \"cillum do ipsum commodo\"\n    },\n    \"number_vendor\": {\n      \"id\": 62447556,\n      \"is_active\": true,\n      \"key\": \"dolor ut minim in\",\n      \"name\": \"esse magna nulla amet dolore\",\n      \"credentials_prefix\": \"anim dolore aliqua consequat nulla\",\n      \"twilio_sid\": \"sunt officia elit\",\n      \"twilio_auth_token\": \"irure consectetur c\",\n      \"is_billable\": -8912338,\n      \"created_at\": \"velit anim\",\n      \"updated_at\": \"dolor ut dolo\"\n    },\n    \"call_forwarding\": {\n      \"id\": 8383999,\n      \"number_id\": -76952795,\n      \"is_active\": true,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"ullamco quis\",\n      \"country\": \"non enim sed dolore\",\n      \"number\": \"proident nisi commodo cupidatat\",\n      \"country_calling_code\": \"nisi cillum adipisicing\",\n      \"national_number\": \"reprehenderit Lorem sunt\",\n      \"formatted_number\": \"deserunt aute\",\n      \"extension\": \"voluptate\",\n      \"created_at\": \"et Ut ad non elit\",\n      \"updated_at\": \"veniam cillum\"\n    },\n    \"numberable_id\": 5245011,\n    \"numberable_type\": \"magna adipisicing\",\n    \"numberable\": {\n      \"id\": 63021081,\n      \"organization_id\": -91212722,\n      \"owner_id\": 7983909,\n      \"team_id\": -51870790,\n      \"name\": \"consequat Ut\",\n      \"created_at\": \"in ea minim\",\n      \"updated_at\": \"non veniam\"\n    }\n  },\n  \"allow_call\": true,\n  \"name\": \"dolor do\",\n  \"group_name\": \"enim culpa laborum dolore\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 15610939,\n      \"owner_id\": -92718637,\n      \"color\": \"ex\",\n      \"first_name\": \"reprehenderit quis ipsum\",\n      \"last_name\": \"reprehenderit proident irure aliqua\",\n      \"full_name\": \"ut reprehenderit officia\",\n      \"email\": \"ame\",\n      \"photo_url\": \"dolore irure nulla\",\n      \"number\": \"consequat\",\n      \"country\": \"ut minim amet\",\n      \"country_calling_code\": \"cupidatat\",\n      \"national_number\": \"officia nisi\",\n      \"typeted_number\": \"esse cupidatat\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"eu enim\",\n      \"opt_in_request_at\": \"sit ea aliqua exercitation sed\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -82386262\n        },\n        {\n          \"number_id\": -73700242\n        }\n      ],\n      \"opt_in_at\": \"qui sit\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 73680286,\n          \"number_id\": -58074907,\n          \"name\": \"dolor sed\",\n          \"disabled\": true,\n          \"timestamp\": \"reprehenderit\",\n          \"value\": false\n        },\n        {\n          \"id\": 82532236,\n          \"number_id\": 63531545,\n          \"name\": \"cupidatat veniam officia exercitation incididunt\",\n          \"disabled\": true,\n          \"timestamp\": \"magna ad\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"ullamco ut in\",\n      \"updated_at\": \"no\",\n      \"integration_vendor_id\": 95063998,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -14088660,\n          \"key\": \"sint elit\",\n          \"name\": \"esse nulla tempor dolore\",\n          \"photo_url\": \"ad magna in\"\n        },\n        {\n          \"id\": 72094498,\n          \"key\": \"eu ut nulla\",\n          \"name\": \"ex ut laboris\",\n          \"photo_url\": \"eiusmod quis sint in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 89566966,\n          \"custom_field_id\": 28544420,\n          \"contact_id\": -18677790,\n          \"field_key\": \"sunt\",\n          \"organization_id\": 16737846,\n          \"text\": \"tempor\",\n          \"number\": 72608645,\n          \"date\": \"dolore ullamco sit\",\n          \"created_at\": \"sunt ea\",\n          \"updated_at\": \"anim voluptate n\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -73530648,\n          \"custom_field_id\": 63216793,\n          \"contact_id\": -85567620,\n          \"field_key\": \"ipsum amet\",\n          \"organization_id\": 7756345,\n          \"text\": \"in sint incididunt\",\n          \"number\": -75756281,\n          \"date\": \"sed in laboris\",\n          \"created_at\": \"Duis esse aliqua\",\n          \"updated_at\": \"anim consequat cupidatat esse\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 91811830,\n          \"name\": \"dolore qui Lorem\",\n          \"label\": \"mollit velit deserunt\",\n          \"created_at\": \"ullamco proident ip\"\n        },\n        {\n          \"id\": 80768431,\n          \"name\": \"aliqua ut enim minim cupidatat\",\n          \"label\": \"consectetur\",\n          \"created_at\": \"velit commodo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -26150780,\n          \"text\": \"mollit amet labore in\",\n          \"created_at\": \"officia deserunt\",\n          \"updated_at\": \"aliquip ex ut\"\n        },\n        {\n          \"id\": 21087648,\n          \"text\": \"Ut nulla et\",\n          \"created_at\": \"do velit sint\",\n          \"updated_at\": \"nulla tempor amet eu in\"\n        }\n      ]\n    },\n    {\n      \"id\": -63929480,\n      \"owner_id\": 40660586,\n      \"color\": \"anim labore deserunt enim non\",\n      \"first_name\": \"nulla ullamco\",\n      \"last_name\": \"aute consequat dolor\",\n      \"full_name\": \"occaecat veniam\",\n      \"email\": \"culpa elit do\",\n      \"photo_url\": \"sit voluptate d\",\n      \"number\": \"irure\",\n      \"country\": \"ullamco amet cillum\",\n      \"country_calling_code\": \"mollit\",\n      \"national_number\": \"i\",\n      \"typeted_number\": \"mollit sed qui\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"minim est\",\n      \"opt_in_request_at\": \"in esse\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 61606162\n        },\n        {\n          \"number_id\": -29846808\n        }\n      ],\n      \"opt_in_at\": \"magna proident\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -28947393,\n          \"number_id\": -10811445,\n          \"name\": \"in ut nisi officia\",\n          \"disabled\": true,\n          \"timestamp\": \"pariatur Duis sit et\",\n          \"value\": false\n        },\n        {\n          \"id\": -10419148,\n          \"number_id\": 59732489,\n          \"name\": \"nostrud ullamco sunt\",\n          \"disabled\": false,\n          \"timestamp\": \"Lorem aute cillum\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"cupidatat magna adipisicing\",\n      \"updated_at\": \"commodo\",\n      \"integration_vendor_id\": -16662202,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 75336919,\n          \"key\": \"et ut\",\n          \"name\": \"ut tempor\",\n          \"photo_url\": \"quis aute i\"\n        },\n        {\n          \"id\": 53006239,\n          \"key\": \"pariatur consectetur v\",\n          \"name\": \"culpa\",\n          \"photo_url\": \"incididunt aliqua in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -48887206,\n          \"custom_field_id\": 1840762,\n          \"contact_id\": 70272917,\n          \"field_key\": \"velit Excepteur\",\n          \"organization_id\": -23963645,\n          \"text\": \"aute aliquip\",\n          \"number\": -17483065,\n          \"date\": \"fugiat amet ad\",\n          \"created_at\": \"nostrud in\",\n          \"updated_at\": \"anim proident nulla voluptate\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -18744873,\n          \"custom_field_id\": 17530678,\n          \"contact_id\": 49220893,\n          \"field_key\": \"culpa Excepteur nulla veniam\",\n          \"organization_id\": -30823407,\n          \"text\": \"est sint nostrud\",\n          \"number\": 32671223,\n          \"date\": \"sit cupidatat nulla velit l\",\n          \"created_at\": \"non proident quis ut\",\n          \"updated_at\": \"ipsum in\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -1496095,\n          \"name\": \"lab\",\n          \"label\": \"labore consectetur adipisicing\",\n          \"created_at\": \"do qui sed\"\n        },\n        {\n          \"id\": -29498844,\n          \"name\": \"reprehenderit in enim\",\n          \"label\": \"laboris ipsum enim\",\n          \"created_at\": \"consequat laborum consectetur Duis\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -82346709,\n          \"text\": \"est Duis\",\n          \"created_at\": \"incididunt Duis minim\",\n          \"updated_at\": \"adipisicing aliqua\"\n        },\n        {\n          \"id\": 7824183,\n          \"text\": \"ullamco minim fugiat\",\n          \"created_at\": \"nostrud minim consequat mollit\",\n          \"updated_at\": \"cillum adipisicing\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 91718787,\n      \"conversation_id\": 17339615,\n      \"organization_id\": -85852575,\n      \"changer_user\": [\n        {\n          \"user_id\": -94804109,\n          \"first_name\": \"deserunt velit minim\",\n          \"last_name\": \"laborum est\"\n        },\n        {\n          \"user_id\": 55896602,\n          \"first_name\": \"eiusmod esse consequ\",\n          \"last_name\": \"culpa velit amet\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 96993621,\n          \"first_name\": \"ut incididunt fugiat est occaecat\",\n          \"last_name\": \"cupidatat\"\n        },\n        {\n          \"user_id\": 34318518,\n          \"first_name\": \"\",\n          \"last_name\": \"dolor est ullamco consectetur\"\n        }\n      ],\n      \"created_at\": \"Duis commodo non ea ad\"\n    },\n    {\n      \"id\": 1131512,\n      \"conversation_id\": 99029150,\n      \"organization_id\": 27335628,\n      \"changer_user\": [\n        {\n          \"user_id\": -46614990,\n          \"first_name\": \"esse ea nostrud ipsum et\",\n          \"last_name\": \"voluptate\"\n        },\n        {\n          \"user_id\": 28357907,\n          \"first_name\": \"Ut aute proident sint velit\",\n          \"last_name\": \"dolore consectetur\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": -42795535,\n          \"first_name\": \"dolore ut deserunt\",\n          \"last_name\": \"ut nostrud Lorem commodo\"\n        },\n        {\n          \"user_id\": -2435625,\n          \"first_name\": \"proident officia incididunt\",\n          \"last_name\": \"dolor sint in\"\n        }\n      ],\n      \"created_at\": \"cillum laborum irure veniam\"\n    }\n  ]\n}"}],"_postman_id":"af11cbde-77ec-4276-8236-b5d8ff4b5dc3"},{"name":"Search active conversations","id":"c9f078a9-931a-45c0-81c7-14d2b745ca5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations/search?term=company&type=laborum&per_page=-38849041&page=1","description":"<p>This API endpoint allows for using the search field to find active conversations in conversation history. It returns a list of conversations including contacts, owners, and recent messages by search term. <br /><br />This endpoint also allows you to set a per page number of returning conversations. Also, you are allowed to provide a page number that you want to view. These parameters are optional.</p>\n","urlObject":{"path":["conversations","search"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Search term (first/last name, email, number, formatted_number, tag)</p>\n","type":"text/plain"},"key":"term","value":"company"},{"description":{"content":"<p>Define search type: contacts or messages</p>\n","type":"text/plain"},"key":"type","value":"laborum"},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"per_page","value":"-38849041"},{"description":{"content":"<p>Page</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"5fd8c9de-861f-420c-b47a-7447f2df8817","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/search?term=company&type=laborum&per_page=-38849041&page=1","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations","search"],"query":[{"key":"term","value":"company"},{"key":"type","value":"laborum"},{"key":"per_page","value":"-38849041"},{"key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"results\": [\n    {\n      \"id\": -70224156,\n      \"inbox_id\": -99207049,\n      \"contact_id\": -58427186,\n      \"user_id\": 40461218,\n      \"last_message_at\": \"dolore et\",\n      \"last_manual_message_at\": \"minim laborum\",\n      \"last_read_at\": \"dolore dolor\",\n      \"has_tagging\": true,\n      \"tagging_last_message_at\": \"et nisi id\",\n      \"tagging_last_read_at\": \"cupidatat\",\n      \"started_at\": \"eiusmod mollit ea\",\n      \"closed_at\": \"irure reprehenderit\",\n      \"owner\": {\n        \"id\": 22352554,\n        \"email\": \"pr\",\n        \"first_name\": \"anim sit aute\",\n        \"last_name\": \"enim\",\n        \"full_name\": \"velit incididunt ullamco ea nulla\",\n        \"role\": \"do\",\n        \"inbox_id\": -19843419,\n        \"organization_id\": -43132639,\n        \"photo_url\": \"id mollit consectetur\",\n        \"unread\": -90231992,\n        \"number\": \"ipsum voluptate aliqua\",\n        \"formatted_number\": \"ut commodo minim\",\n        \"organizationNumber\": [\n          {\n            \"id\": 48949795,\n            \"country\": \"aute amet consectetur id\",\n            \"number\": \"Lorem laborum Excepteur veniam\",\n            \"formatted_number\": \"cillum\",\n            \"mms\": \"amet\"\n          },\n          {\n            \"id\": -87075881,\n            \"country\": \"ex eni\",\n            \"number\": \"veniam ad\",\n            \"formatted_number\": \"incididunt Ut laborum\",\n            \"mms\": \"irure cillum consequat laboris\"\n          }\n        ],\n        \"userPermissions\": [\n          \"Excepteur des\",\n          \"in ea deserunt dolor\"\n        ]\n      },\n      \"number_id\": -53430800,\n      \"number\": {\n        \"id\": 13904506,\n        \"organization_id\": -2291499,\n        \"country\": \"aliqua eu\",\n        \"state\": \"quis a\",\n        \"city\": \"voluptate eu\",\n        \"number\": \"aliquip eu\",\n        \"number_vendor_id\": 60780957,\n        \"country_calling_code\": \"ex nisi\",\n        \"national_number\": \"in in minim Lorem\",\n        \"formattedNumber\": \"magna fugiat ad quis\",\n        \"formatted_number\": \"dolore occaecat labore\",\n        \"short_code\": -77770970,\n        \"is_landline\": 12560398,\n        \"is_toll_free\": false,\n        \"is_aircall\": true,\n        \"voice\": true,\n        \"use_organization_call_settings\": false,\n        \"voice_outbound\": true,\n        \"mms\": true,\n        \"disabled\": true,\n        \"has_profile\": false,\n        \"verified_status\": \"ad nulla\",\n        \"area_code\": {\n          \"id\": 70345122,\n          \"area_code\": \"ullamco labore\",\n          \"state_code\": \"voluptate cupidatat\",\n          \"state_name\": \"Lorem mollit qui elit\",\n          \"country_code\": \"esse proident dolore \",\n          \"time_zone\": \"exercitation molli\",\n          \"group_id\": 16219967\n        },\n        \"landline\": {\n          \"id\": 12053918,\n          \"number_id\": -32827996,\n          \"address_sid\": \"consequat\",\n          \"sid\": \"commodo ad anim qui\",\n          \"document_sid\": \"et\",\n          \"status\": \"non Excepteur ut in exercitation\",\n          \"verification_attempts\": -5200496,\n          \"last_verify_attempt_at\": \"occaecat id nisi aute anim\",\n          \"landline_name\": \"laborum minim ut amet\",\n          \"street_address\": \"magna non in est\",\n          \"city\": \"do \",\n          \"state\": \"e\",\n          \"zip_code\": \"ea\",\n          \"completed\": 98249279,\n          \"created_at\": \"nostrud ad\",\n          \"updated_at\": \"adipisicing dolor\"\n        },\n        \"number_vendor\": {\n          \"id\": -84007105,\n          \"is_active\": false,\n          \"key\": \"occaecat anim\",\n          \"name\": \"dolore eu\",\n          \"credentials_prefix\": \"aliquip consectetur\",\n          \"twilio_sid\": \"dolor cupidatat\",\n          \"twilio_auth_token\": \"incididunt deserunt exercitation et\",\n          \"is_billable\": -23478293,\n          \"created_at\": \"irure\",\n          \"updated_at\": \"proident reprehenderit in\"\n        },\n        \"call_forwarding\": {\n          \"id\": -94323471,\n          \"number_id\": 92005046,\n          \"is_active\": false,\n          \"is_screening\": false,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"eiusmod incididunt in laboris\",\n          \"country\": \"elit id pariatur exercitation nostrud\",\n          \"number\": \"culpa amet\",\n          \"country_calling_code\": \"culpa\",\n          \"national_number\": \"non do\",\n          \"formatted_number\": \"sit adipisicing qui\",\n          \"extension\": \"sunt aute\",\n          \"created_at\": \"ut elit ut quis nostrud\",\n          \"updated_at\": \"cillum occaecat sint elit\"\n        },\n        \"numberable_id\": -39630487,\n        \"numberable_type\": \"in pariatur aliqua\",\n        \"numberable\": {\n          \"id\": 28794783,\n          \"organization_id\": -24586169,\n          \"owner_id\": 9691704,\n          \"team_id\": 39224479,\n          \"name\": \"tempor\",\n          \"created_at\": \"sunt mollit proident\",\n          \"updated_at\": \"dolore irure fugiat\"\n        }\n      },\n      \"allow_call\": true,\n      \"name\": \"irure voluptate\",\n      \"group_name\": \"nisi dolor mollit\",\n      \"is_group\": true,\n      \"participants\": [\n        {\n          \"id\": -22347218,\n          \"owner_id\": 66088101,\n          \"color\": \"culpa ut reprehenderit\",\n          \"first_name\": \"Excepteur sed velit ut anim\",\n          \"last_name\": \"et commodo mollit\",\n          \"full_name\": \"nulla et reprehenderit irure\",\n          \"email\": \"nulla dolor dolor ullamco voluptate\",\n          \"photo_url\": \"ut sint anim\",\n          \"number\": \"proident non labore\",\n          \"country\": \"in ea quis sit\",\n          \"country_calling_code\": \"do irure ut consectetur fugiat\",\n          \"national_number\": \"sit\",\n          \"typeted_number\": \"Duis cillum\",\n          \"is_blocked\": false,\n          \"opt_out\": true,\n          \"opt_out_at\": \"ex ad\",\n          \"opt_in_request_at\": \"ipsum Duis\",\n          \"opt_in_requests\": [\n            {\n              \"number_id\": 52051129\n            },\n            {\n              \"number_id\": 84920222\n            }\n          ],\n          \"opt_in_at\": \"proident Duis culpa Excepteur\",\n          \"shortcode_opt_outs\": [\n            {\n              \"id\": -24868574,\n              \"number_id\": 82788043,\n              \"name\": \"in\",\n              \"disabled\": false,\n              \"timestamp\": \"deserunt ad\",\n              \"value\": false\n            },\n            {\n              \"id\": -51187328,\n              \"number_id\": 99452814,\n              \"name\": \"elit nisi\",\n              \"disabled\": true,\n              \"timestamp\": \"nisi ut\",\n              \"value\": true\n            }\n          ],\n          \"created_at\": \"minim\",\n          \"updated_at\": \"Duis cupidatat\",\n          \"integration_vendor_id\": 20094788,\n          \"prevent_autolink\": false,\n          \"integration\": [\n            {\n              \"id\": 77667068,\n              \"key\": \"aliqua enim aliquip\",\n              \"name\": \"adipisicing culpa in consequat\",\n              \"photo_url\": \"ut qui minim eu Ut\"\n            },\n            {\n              \"id\": 83466937,\n              \"key\": \"sit ni\",\n              \"name\": \"aliqua\",\n              \"photo_url\": \"voluptate ut\"\n            }\n          ],\n          \"custom_fields\": [\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"custom_field_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"contact_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"field_key\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"organization_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"text\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"number\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"date\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"updated_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"custom_field_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"contact_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"field_key\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"organization_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"text\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"number\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"date\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"updated_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ],\n          \"tags\": [\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"name\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"label\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"name\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"label\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ],\n          \"notes\": [\n            {\n              \"id\": -35009565,\n              \"text\": \"laboris est qui Ut\",\n              \"created_at\": \"dolore sunt\",\n              \"updated_at\": \"Ex\"\n            },\n            {\n              \"id\": 41433268,\n              \"text\": \"magna\",\n              \"created_at\": \"laborum labore\",\n              \"updated_at\": \"culpa\"\n            }\n          ]\n        },\n        {\n          \"id\": 3139028,\n          \"owner_id\": 95842,\n          \"color\": \"dolore ut\",\n          \"first_name\": \"ex Duis culpa\",\n          \"last_name\": \"deserunt aliqua amet pariatur qui\",\n          \"full_name\": \"reprehenderit aute ex enim\",\n          \"email\": \"elit magna\",\n          \"photo_url\": \"proident non in Ex\",\n          \"number\": \"sit quis Excepteur Duis velit\",\n          \"country\": \"officia proident irure culpa\",\n          \"country_calling_code\": \"dolor laborum\",\n          \"national_number\": \"occaecat id incididunt\",\n          \"typeted_number\": \"dolor amet ut\",\n          \"is_blocked\": false,\n          \"opt_out\": false,\n          \"opt_out_at\": \"dolor aliqua ad\",\n          \"opt_in_request_at\": \"commodo anim velit culpa\",\n          \"opt_in_requests\": [\n            {\n              \"number_id\": 96524693\n            },\n            {\n              \"number_id\": 41376862\n            }\n          ],\n          \"opt_in_at\": \"eu\",\n          \"shortcode_opt_outs\": [\n            {\n              \"id\": 94419122,\n              \"number_id\": 55402286,\n              \"name\": \"officia anim occaecat commodo\",\n              \"disabled\": false,\n              \"timestamp\": \"aute\",\n              \"value\": true\n            },\n            {\n              \"id\": -4912426,\n              \"number_id\": -89644259,\n              \"name\": \"sint cupidatat ea\",\n              \"disabled\": true,\n              \"timestamp\": \"Excepteur Ut consectetur officia nostrud\",\n              \"value\": false\n            }\n          ],\n          \"created_at\": \"elit quis\",\n          \"updated_at\": \"in do ut\",\n          \"integration_vendor_id\": 91766815,\n          \"prevent_autolink\": false,\n          \"integration\": [\n            {\n              \"id\": 56589852,\n              \"key\": \"proident consectetur culpa adipisicing\",\n              \"name\": \"cupidatat ex anim culpa voluptate\",\n              \"photo_url\": \"nisi in aute\"\n            },\n            {\n              \"id\": 2876812,\n              \"key\": \"sed\",\n              \"name\": \"minim cupidatat est dolore\",\n              \"photo_url\": \"qui nostrud laborum\"\n            }\n          ],\n          \"custom_fields\": [\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"custom_field_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"contact_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"field_key\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"organization_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"text\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"number\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"date\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"updated_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"custom_field_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"contact_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"field_key\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"organization_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"text\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"number\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"date\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"updated_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ],\n          \"tags\": [\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"name\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"label\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"name\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"label\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ],\n          \"notes\": [\n            {\n              \"id\": -15520189,\n              \"text\": \"irure ad sint amet\",\n              \"created_at\": \"nisi deserunt\",\n              \"updated_at\": \"tempor ex esse dolore\"\n            },\n            {\n              \"id\": -27354207,\n              \"text\": \"anim aute aliqua laboris\",\n              \"created_at\": \"dolor ea\",\n              \"updated_at\": \"mollit culpa\"\n            }\n          ]\n        }\n      ],\n      \"reassign_logs\": [\n        {\n          \"id\": -43995439,\n          \"conversation_id\": -95224026,\n          \"organization_id\": 6057912,\n          \"changer_user\": [\n            {\n              \"user_id\": -24461354,\n              \"first_name\": \"consequat\",\n              \"last_name\": \"voluptate\"\n            },\n            {\n              \"user_id\": -52096879,\n              \"first_name\": \"voluptate Duis cillum dolor eiusmod\",\n              \"last_name\": \"Lorem sint Ut\"\n            }\n          ],\n          \"current_user\": [\n            {\n              \"user_id\": -14808442,\n              \"first_name\": \"sint cillum ea tempor\",\n              \"last_name\": \"aliquip consequat\"\n            },\n            {\n              \"user_id\": 36450364,\n              \"first_name\": \"proident ut Duis laborum\",\n              \"last_name\": \"ullamco officia Lorem dolore\"\n            }\n          ],\n          \"created_at\": \"ea adipisicing cillum id\"\n        },\n        {\n          \"id\": -97058913,\n          \"conversation_id\": -23426643,\n          \"organization_id\": -69302256,\n          \"changer_user\": [\n            {\n              \"user_id\": 74671480,\n              \"first_name\": \"sed elit\",\n              \"last_name\": \"ad ex\"\n            },\n            {\n              \"user_id\": 95581231,\n              \"first_name\": \"enim dolor\",\n              \"last_name\": \"dolor\"\n            }\n          ],\n          \"current_user\": [\n            {\n              \"user_id\": 41798709,\n              \"first_name\": \"exercitation elit mollit\",\n              \"last_name\": \"cillum aliquip\"\n            },\n            {\n              \"user_id\": 2392970,\n              \"first_name\": \"eiusm\",\n              \"last_name\": \"incididunt\"\n            }\n          ],\n          \"created_at\": \"Ex\"\n        }\n      ]\n    },\n    {\n      \"id\": -75032318,\n      \"inbox_id\": 57426463,\n      \"contact_id\": 85054767,\n      \"user_id\": 58506223,\n      \"last_message_at\": \"dolor in id reprehenderit\",\n      \"last_manual_message_at\": \"deserunt ex irure Excepteur\",\n      \"last_read_at\": \"aliqua in et labore\",\n      \"has_tagging\": false,\n      \"tagging_last_message_at\": \"incididunt laboris non\",\n      \"tagging_last_read_at\": \"incididunt adipisicing est\",\n      \"started_at\": \"adipisicing Duis mo\",\n      \"closed_at\": \"nulla proident dolor\",\n      \"owner\": {\n        \"id\": 64946981,\n        \"email\": \"ex et adipisicing\",\n        \"first_name\": \"exercitation dolore\",\n        \"last_name\": \"ex qui\",\n        \"full_name\": \"aute in\",\n        \"role\": \"laboris occaecat\",\n        \"inbox_id\": 1519116,\n        \"organization_id\": 39068580,\n        \"photo_url\": \"reprehenderit\",\n        \"unread\": 24111339,\n        \"number\": \"ipsum dolor\",\n        \"formatted_number\": \"aute Excepteur aliquip velit\",\n        \"organizationNumber\": [\n          {\n            \"id\": -54677554,\n            \"country\": \"anim in dolor laborum fugi\",\n            \"number\": \"Lorem eius\",\n            \"formatted_number\": \"veniam exercitat\",\n            \"mms\": \"veniam consequat\"\n          },\n          {\n            \"id\": -61744810,\n            \"country\": \"anim laboris\",\n            \"number\": \"tempor Ut\",\n            \"formatted_number\": \"cillum aliqui\",\n            \"mms\": \"tempor eu\"\n          }\n        ],\n        \"userPermissions\": [\n          \"aliqua do mollit\",\n          \"occaecat elit qui consectetur\"\n        ]\n      },\n      \"number_id\": 31041750,\n      \"number\": {\n        \"id\": 80391473,\n        \"organization_id\": 93105333,\n        \"country\": \"voluptate culpa adipisicing id\",\n        \"state\": \"nulla in ea deserunt esse\",\n        \"city\": \"est culpa\",\n        \"number\": \"aute occaecat dolor\",\n        \"number_vendor_id\": 12532134,\n        \"country_calling_code\": \"dolor anim culpa sit ut\",\n        \"national_number\": \"laborum conseq\",\n        \"formattedNumber\": \"et cillum\",\n        \"formatted_number\": \"mollit sunt\",\n        \"short_code\": 80395885,\n        \"is_landline\": 59212586,\n        \"is_toll_free\": true,\n        \"is_aircall\": true,\n        \"voice\": false,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": true,\n        \"mms\": false,\n        \"disabled\": true,\n        \"has_profile\": false,\n        \"verified_status\": \"e\",\n        \"area_code\": {\n          \"id\": -54059274,\n          \"area_code\": \"i\",\n          \"state_code\": \"magna sint labore c\",\n          \"state_name\": \"in\",\n          \"country_code\": \"magna ex\",\n          \"time_zone\": \"adipisicing aliquip enim mollit veniam\",\n          \"group_id\": -84627614\n        },\n        \"landline\": {\n          \"id\": -64189954,\n          \"number_id\": -52699239,\n          \"address_sid\": \"laborum dolor\",\n          \"sid\": \"dolore amet\",\n          \"document_sid\": \"dolore incididunt nostrud\",\n          \"status\": \"irure\",\n          \"verification_attempts\": -25193945,\n          \"last_verify_attempt_at\": \"qui in dolore adipisicing\",\n          \"landline_name\": \"adipisicing cillum elit\",\n          \"street_address\": \"labore ut occaecat nostrud\",\n          \"city\": \"nisi\",\n          \"state\": \"consectetur laboris Lorem commodo\",\n          \"zip_code\": \"cillum id\",\n          \"completed\": 15535681,\n          \"created_at\": \"in minim\",\n          \"updated_at\": \"ullamco nisi sunt ex\"\n        },\n        \"number_vendor\": {\n          \"id\": -91235455,\n          \"is_active\": true,\n          \"key\": \"exercitation\",\n          \"name\": \"consequat\",\n          \"credentials_prefix\": \"ullamco est\",\n          \"twilio_sid\": \"incididunt qui\",\n          \"twilio_auth_token\": \"dolor commodo\",\n          \"is_billable\": -63084492,\n          \"created_at\": \"aliqua\",\n          \"updated_at\": \"est\"\n        },\n        \"call_forwarding\": {\n          \"id\": -76293842,\n          \"number_id\": -3039089,\n          \"is_active\": true,\n          \"is_screening\": false,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"ut sint\",\n          \"country\": \"consequat\",\n          \"number\": \"Ut ipsum id esse\",\n          \"country_calling_code\": \"voluptate ex pariatur\",\n          \"national_number\": \"voluptate incididunt dolor veniam\",\n          \"formatted_number\": \"incididunt sint mollit\",\n          \"extension\": \"reprehenderit \",\n          \"created_at\": \"fugiat est qui cillum sit\",\n          \"updated_at\": \"sed dolore ipsum\"\n        },\n        \"numberable_id\": -89594270,\n        \"numberable_type\": \"sit Duis\",\n        \"numberable\": {\n          \"id\": -32481505,\n          \"organization_id\": 83077488,\n          \"owner_id\": 8890173,\n          \"team_id\": 19304018,\n          \"name\": \"ex nisi\",\n          \"created_at\": \"Excepteur esse minim proident\",\n          \"updated_at\": \"non ut\"\n        }\n      },\n      \"allow_call\": true,\n      \"name\": \"aliquip ullamco\",\n      \"group_name\": \"cillum in commodo id Duis\",\n      \"is_group\": true,\n      \"participants\": [\n        {\n          \"id\": -71405902,\n          \"owner_id\": -70044422,\n          \"color\": \"consequat deserunt aliqua\",\n          \"first_name\": \"irure velit in\",\n          \"last_name\": \"eu ullamco\",\n          \"full_name\": \"magna pariatur aliquip laborum nos\",\n          \"email\": \"anim officia dolore sit\",\n          \"photo_url\": \"cillum\",\n          \"number\": \"Lorem veniam eiusmod\",\n          \"country\": \"nostrud adipisicing exercitation labore dolor\",\n          \"country_calling_code\": \"enim laboris fugiat ad\",\n          \"national_number\": \"dolore\",\n          \"typeted_number\": \"ex sun\",\n          \"is_blocked\": false,\n          \"opt_out\": true,\n          \"opt_out_at\": \"Ut eiusmod n\",\n          \"opt_in_request_at\": \"ea quis proident enim\",\n          \"opt_in_requests\": [\n            {\n              \"number_id\": 53038044\n            },\n            {\n              \"number_id\": 75378720\n            }\n          ],\n          \"opt_in_at\": \"qui\",\n          \"shortcode_opt_outs\": [\n            {\n              \"id\": -73290876,\n              \"number_id\": -82724363,\n              \"name\": \"voluptate sit et\",\n              \"disabled\": false,\n              \"timestamp\": \"officia ea consequat\",\n              \"value\": false\n            },\n            {\n              \"id\": -6829395,\n              \"number_id\": 85360403,\n              \"name\": \"eu occaecat dolore\",\n              \"disabled\": false,\n              \"timestamp\": \"dolore aliqua sed Duis quis\",\n              \"value\": false\n            }\n          ],\n          \"created_at\": \"eiusmod Duis\",\n          \"updated_at\": \"eu veniam\",\n          \"integration_vendor_id\": 43241732,\n          \"prevent_autolink\": false,\n          \"integration\": [\n            {\n              \"id\": -64246732,\n              \"key\": \"ea voluptate \",\n              \"name\": \"sed anim ex pariatur irure\",\n              \"photo_url\": \"eu sed non incididunt\"\n            },\n            {\n              \"id\": -58730654,\n              \"key\": \"do eiusmod exercitation\",\n              \"name\": \"Excepteur consequat et anim est\",\n              \"photo_url\": \"veniam in commodo deserunt aliqua\"\n            }\n          ],\n          \"custom_fields\": [\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"custom_field_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"contact_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"field_key\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"organization_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"text\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"number\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"date\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"updated_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"custom_field_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"contact_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"field_key\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"organization_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"text\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"number\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"date\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"updated_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ],\n          \"tags\": [\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"name\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"label\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"name\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"label\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ],\n          \"notes\": [\n            {\n              \"id\": 46356916,\n              \"text\": \"do nisi\",\n              \"created_at\": \"sit aute commodo\",\n              \"updated_at\": \"eiusmod nostrud\"\n            },\n            {\n              \"id\": -38863200,\n              \"text\": \"officia quis cillum do\",\n              \"created_at\": \"magn\",\n              \"updated_at\": \"reprehenderit consectetur\"\n            }\n          ]\n        },\n        {\n          \"id\": 52055560,\n          \"owner_id\": 41822431,\n          \"color\": \"ex qui sint\",\n          \"first_name\": \"ut sunt aliquip sit\",\n          \"last_name\": \"ipsum in eiusmod\",\n          \"full_name\": \"laborum magna mollit\",\n          \"email\": \"aute si\",\n          \"photo_url\": \"sunt do\",\n          \"number\": \"consectetur quis officia\",\n          \"country\": \"enim laborum ea\",\n          \"country_calling_code\": \"Lorem nulla adipisicing consectetur\",\n          \"national_number\": \"aliquip sunt officia\",\n          \"typeted_number\": \"in Duis\",\n          \"is_blocked\": false,\n          \"opt_out\": true,\n          \"opt_out_at\": \"incididunt magna\",\n          \"opt_in_request_at\": \"ullamco\",\n          \"opt_in_requests\": [\n            {\n              \"number_id\": -79500181\n            },\n            {\n              \"number_id\": -45397066\n            }\n          ],\n          \"opt_in_at\": \"et eiusmod minim nostrud\",\n          \"shortcode_opt_outs\": [\n            {\n              \"id\": -59637018,\n              \"number_id\": -39276350,\n              \"name\": \"occaecat enim minim\",\n              \"disabled\": true,\n              \"timestamp\": \"Duis\",\n              \"value\": true\n            },\n            {\n              \"id\": 81102785,\n              \"number_id\": 3809185,\n              \"name\": \"officia dolore\",\n              \"disabled\": false,\n              \"timestamp\": \"sed dolore nulla aute nostrud\",\n              \"value\": false\n            }\n          ],\n          \"created_at\": \"est anim\",\n          \"updated_at\": \"est mollit voluptate\",\n          \"integration_vendor_id\": 28373185,\n          \"prevent_autolink\": false,\n          \"integration\": [\n            {\n              \"id\": 66086079,\n              \"key\": \"sint aute\",\n              \"name\": \"eiusmod in\",\n              \"photo_url\": \"aute irure ex\"\n            },\n            {\n              \"id\": -89091782,\n              \"key\": \"nostrud consequat\",\n              \"name\": \"magna incididunt veniam\",\n              \"photo_url\": \"eiusmod irure in\"\n            }\n          ],\n          \"custom_fields\": [\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"custom_field_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"contact_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"field_key\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"organization_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"text\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"number\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"date\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"updated_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"custom_field_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"contact_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"field_key\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"organization_id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"text\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"number\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"date\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"updated_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ],\n          \"tags\": [\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"name\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"label\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"id\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"name\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"label\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"created_at\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ],\n          \"notes\": [\n            {\n              \"id\": 57341036,\n              \"text\": \"tempor sit dolore adipisicing\",\n              \"created_at\": \"commodo laboris dolore\",\n              \"updated_at\": \"nostrud pariatur in Excepteur\"\n            },\n            {\n              \"id\": 43135101,\n              \"text\": \"dolor ad aute\",\n              \"created_at\": \"et sed mollit labore\",\n              \"updated_at\": \"in incididunt sint\"\n            }\n          ]\n        }\n      ],\n      \"reassign_logs\": [\n        {\n          \"id\": -97852548,\n          \"conversation_id\": 54345078,\n          \"organization_id\": -55087564,\n          \"changer_user\": [\n            {\n              \"user_id\": 73219258,\n              \"first_name\": \"eiusmod quis mollit sed\",\n              \"last_name\": \"quis nulla sint Excepteur\"\n            },\n            {\n              \"user_id\": -41547614,\n              \"first_name\": \"nostrud\",\n              \"last_name\": \"dolor sit\"\n            }\n          ],\n          \"current_user\": [\n            {\n              \"user_id\": 95083453,\n              \"first_name\": \"reprehenderit id\",\n              \"last_name\": \"labore\"\n            },\n            {\n              \"user_id\": 67852186,\n              \"first_name\": \"culpa cillum labore\",\n              \"last_name\": \"officia sint sit\"\n            }\n          ],\n          \"created_at\": \"non cillum amet anim\"\n        },\n        {\n          \"id\": 54267668,\n          \"conversation_id\": 78037397,\n          \"organization_id\": -89856586,\n          \"changer_user\": [\n            {\n              \"user_id\": -50999496,\n              \"first_name\": \"in consequat\",\n              \"last_name\": \"tempor mollit voluptate ut\"\n            },\n            {\n              \"user_id\": -46769580,\n              \"first_name\": \"est\",\n              \"last_name\": \"in aliquip\"\n            }\n          ],\n          \"current_user\": [\n            {\n              \"user_id\": 18216218,\n              \"first_name\": \"irure in\",\n              \"last_name\": \"veniam Lorem voluptate nostrud commodo\"\n            },\n            {\n              \"user_id\": -29334722,\n              \"first_name\": \"sed\",\n              \"last_name\": \"amet ullamco\"\n            }\n          ],\n          \"created_at\": \"minim officia\"\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"c9f078a9-931a-45c0-81c7-14d2b745ca5b"},{"name":"Get conversation by id","id":"ec0dbae6-bf14-4a16-9cbd-ce3509f837e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation","description":"<p>Returns detailed information about a particular existing conversation by a given conversation id. Information box includes: </p><ul><li>Information about contact</li> <li>Information about owner (conversation creator)</li> <li>The user the conversation is assigned to</li> <li>Latest message details, including content</li> <li>Conversation status</li> <li>Last seen date</li> <li>Conversation creation date</li> <li>Latest message date</li> <li>Team name</li></ul><p></p>\n","urlObject":{"path":["conversations",":conversation"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"69dd5934-ec1f-4229-8c45-736aae0166a8","description":{"content":"<p>(Required) ID of conversation</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"conversation"}]}},"response":[{"id":"cb93b639-a5ad-4ab9-8591-65471c359be7","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations",":conversation"],"variable":[{"key":"conversation","value":"-46945205","description":"(Required) ID of conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -2108737,\n  \"inbox_id\": 1988509,\n  \"contact_id\": -78515853,\n  \"user_id\": -28783750,\n  \"last_message_at\": \"eiusmod deserunt dolore sunt amet\",\n  \"last_manual_message_at\": \"esse\",\n  \"last_read_at\": \"nisi mini\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"in mollit\",\n  \"tagging_last_read_at\": \"voluptate\",\n  \"started_at\": \"proident adipisicing eu enim\",\n  \"closed_at\": \"proident esse minim cillum exercitation\",\n  \"owner\": {\n    \"id\": 99905774,\n    \"email\": \"laboris\",\n    \"first_name\": \"nisi Ut\",\n    \"last_name\": \"ea conse\",\n    \"full_name\": \"in ut tempor\",\n    \"role\": \"nisi labore Ut id\",\n    \"inbox_id\": -46614392,\n    \"organization_id\": 39268521,\n    \"photo_url\": \"enim vel\",\n    \"unread\": -32318824,\n    \"number\": \"Lorem est non\",\n    \"formatted_number\": \"Lorem dolore\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26892282,\n        \"country\": \"in dolor\",\n        \"number\": \"ipsum amet\",\n        \"formatted_number\": \"dolore magna\",\n        \"mms\": \"nulla fugiat dolore quis\"\n      },\n      {\n        \"id\": 50126318,\n        \"country\": \"laborum sunt nisi\",\n        \"number\": \"consequat\",\n        \"formatted_number\": \"reprehenderit id culpa Excepteur pariatur\",\n        \"mms\": \"dolor\"\n      }\n    ],\n    \"userPermissions\": [\n      \"commodo incididunt\",\n      \"Duis laborum adipisicing\"\n    ]\n  },\n  \"number_id\": 87640219,\n  \"number\": {\n    \"id\": 95524518,\n    \"organization_id\": 62599663,\n    \"country\": \"elit fugiat sed Ut nulla\",\n    \"state\": \"aliquip Ut dolor ut\",\n    \"city\": \"consequat consectetur nisi sint\",\n    \"number\": \"consectetur magna incididunt qui\",\n    \"number_vendor_id\": 92923797,\n    \"country_calling_code\": \"sint ex mollit\",\n    \"national_number\": \"dolor do\",\n    \"formattedNumber\": \"cillum\",\n    \"formatted_number\": \"ad occaecat U\",\n    \"short_code\": -47768422,\n    \"is_landline\": 39951816,\n    \"is_toll_free\": false,\n    \"is_aircall\": true,\n    \"voice\": false,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": false,\n    \"verified_status\": \"dolore enim\",\n    \"area_code\": {\n      \"id\": -7048576,\n      \"area_code\": \"culpa quis\",\n      \"state_code\": \"ad voluptate \",\n      \"state_name\": \"dolor cillum sit cupidatat\",\n      \"country_code\": \"nulla commodo\",\n      \"time_zone\": \"Lorem voluptate Ut aliqua ad\",\n      \"group_id\": 4271247\n    },\n    \"landline\": {\n      \"id\": 11162529,\n      \"number_id\": 18409564,\n      \"address_sid\": \"voluptate eiusmod esse irure\",\n      \"sid\": \"culpa commodo el\",\n      \"document_sid\": \"deserunt ullamc\",\n      \"status\": \"exercitation ullamco tempor nisi\",\n      \"verification_attempts\": 70491639,\n      \"last_verify_attempt_at\": \"reprehenderit velit\",\n      \"landline_name\": \"ad laborum\",\n      \"street_address\": \"velit labore\",\n      \"city\": \"veniam in id velit\",\n      \"state\": \"ut occaecat in\",\n      \"zip_code\": \"sint qui nostrud\",\n      \"completed\": -69370291,\n      \"created_at\": \"velit\",\n      \"updated_at\": \"cillum do ipsum commodo\"\n    },\n    \"number_vendor\": {\n      \"id\": 62447556,\n      \"is_active\": true,\n      \"key\": \"dolor ut minim in\",\n      \"name\": \"esse magna nulla amet dolore\",\n      \"credentials_prefix\": \"anim dolore aliqua consequat nulla\",\n      \"twilio_sid\": \"sunt officia elit\",\n      \"twilio_auth_token\": \"irure consectetur c\",\n      \"is_billable\": -8912338,\n      \"created_at\": \"velit anim\",\n      \"updated_at\": \"dolor ut dolo\"\n    },\n    \"call_forwarding\": {\n      \"id\": 8383999,\n      \"number_id\": -76952795,\n      \"is_active\": true,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"ullamco quis\",\n      \"country\": \"non enim sed dolore\",\n      \"number\": \"proident nisi commodo cupidatat\",\n      \"country_calling_code\": \"nisi cillum adipisicing\",\n      \"national_number\": \"reprehenderit Lorem sunt\",\n      \"formatted_number\": \"deserunt aute\",\n      \"extension\": \"voluptate\",\n      \"created_at\": \"et Ut ad non elit\",\n      \"updated_at\": \"veniam cillum\"\n    },\n    \"numberable_id\": 5245011,\n    \"numberable_type\": \"magna adipisicing\",\n    \"numberable\": {\n      \"id\": 63021081,\n      \"organization_id\": -91212722,\n      \"owner_id\": 7983909,\n      \"team_id\": -51870790,\n      \"name\": \"consequat Ut\",\n      \"created_at\": \"in ea minim\",\n      \"updated_at\": \"non veniam\"\n    }\n  },\n  \"allow_call\": true,\n  \"name\": \"dolor do\",\n  \"group_name\": \"enim culpa laborum dolore\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 15610939,\n      \"owner_id\": -92718637,\n      \"color\": \"ex\",\n      \"first_name\": \"reprehenderit quis ipsum\",\n      \"last_name\": \"reprehenderit proident irure aliqua\",\n      \"full_name\": \"ut reprehenderit officia\",\n      \"email\": \"ame\",\n      \"photo_url\": \"dolore irure nulla\",\n      \"number\": \"consequat\",\n      \"country\": \"ut minim amet\",\n      \"country_calling_code\": \"cupidatat\",\n      \"national_number\": \"officia nisi\",\n      \"typeted_number\": \"esse cupidatat\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"eu enim\",\n      \"opt_in_request_at\": \"sit ea aliqua exercitation sed\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -82386262\n        },\n        {\n          \"number_id\": -73700242\n        }\n      ],\n      \"opt_in_at\": \"qui sit\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 73680286,\n          \"number_id\": -58074907,\n          \"name\": \"dolor sed\",\n          \"disabled\": true,\n          \"timestamp\": \"reprehenderit\",\n          \"value\": false\n        },\n        {\n          \"id\": 82532236,\n          \"number_id\": 63531545,\n          \"name\": \"cupidatat veniam officia exercitation incididunt\",\n          \"disabled\": true,\n          \"timestamp\": \"magna ad\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"ullamco ut in\",\n      \"updated_at\": \"no\",\n      \"integration_vendor_id\": 95063998,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -14088660,\n          \"key\": \"sint elit\",\n          \"name\": \"esse nulla tempor dolore\",\n          \"photo_url\": \"ad magna in\"\n        },\n        {\n          \"id\": 72094498,\n          \"key\": \"eu ut nulla\",\n          \"name\": \"ex ut laboris\",\n          \"photo_url\": \"eiusmod quis sint in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 89566966,\n          \"custom_field_id\": 28544420,\n          \"contact_id\": -18677790,\n          \"field_key\": \"sunt\",\n          \"organization_id\": 16737846,\n          \"text\": \"tempor\",\n          \"number\": 72608645,\n          \"date\": \"dolore ullamco sit\",\n          \"created_at\": \"sunt ea\",\n          \"updated_at\": \"anim voluptate n\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -73530648,\n          \"custom_field_id\": 63216793,\n          \"contact_id\": -85567620,\n          \"field_key\": \"ipsum amet\",\n          \"organization_id\": 7756345,\n          \"text\": \"in sint incididunt\",\n          \"number\": -75756281,\n          \"date\": \"sed in laboris\",\n          \"created_at\": \"Duis esse aliqua\",\n          \"updated_at\": \"anim consequat cupidatat esse\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 91811830,\n          \"name\": \"dolore qui Lorem\",\n          \"label\": \"mollit velit deserunt\",\n          \"created_at\": \"ullamco proident ip\"\n        },\n        {\n          \"id\": 80768431,\n          \"name\": \"aliqua ut enim minim cupidatat\",\n          \"label\": \"consectetur\",\n          \"created_at\": \"velit commodo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -26150780,\n          \"text\": \"mollit amet labore in\",\n          \"created_at\": \"officia deserunt\",\n          \"updated_at\": \"aliquip ex ut\"\n        },\n        {\n          \"id\": 21087648,\n          \"text\": \"Ut nulla et\",\n          \"created_at\": \"do velit sint\",\n          \"updated_at\": \"nulla tempor amet eu in\"\n        }\n      ]\n    },\n    {\n      \"id\": -63929480,\n      \"owner_id\": 40660586,\n      \"color\": \"anim labore deserunt enim non\",\n      \"first_name\": \"nulla ullamco\",\n      \"last_name\": \"aute consequat dolor\",\n      \"full_name\": \"occaecat veniam\",\n      \"email\": \"culpa elit do\",\n      \"photo_url\": \"sit voluptate d\",\n      \"number\": \"irure\",\n      \"country\": \"ullamco amet cillum\",\n      \"country_calling_code\": \"mollit\",\n      \"national_number\": \"i\",\n      \"typeted_number\": \"mollit sed qui\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"minim est\",\n      \"opt_in_request_at\": \"in esse\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 61606162\n        },\n        {\n          \"number_id\": -29846808\n        }\n      ],\n      \"opt_in_at\": \"magna proident\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -28947393,\n          \"number_id\": -10811445,\n          \"name\": \"in ut nisi officia\",\n          \"disabled\": true,\n          \"timestamp\": \"pariatur Duis sit et\",\n          \"value\": false\n        },\n        {\n          \"id\": -10419148,\n          \"number_id\": 59732489,\n          \"name\": \"nostrud ullamco sunt\",\n          \"disabled\": false,\n          \"timestamp\": \"Lorem aute cillum\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"cupidatat magna adipisicing\",\n      \"updated_at\": \"commodo\",\n      \"integration_vendor_id\": -16662202,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 75336919,\n          \"key\": \"et ut\",\n          \"name\": \"ut tempor\",\n          \"photo_url\": \"quis aute i\"\n        },\n        {\n          \"id\": 53006239,\n          \"key\": \"pariatur consectetur v\",\n          \"name\": \"culpa\",\n          \"photo_url\": \"incididunt aliqua in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -48887206,\n          \"custom_field_id\": 1840762,\n          \"contact_id\": 70272917,\n          \"field_key\": \"velit Excepteur\",\n          \"organization_id\": -23963645,\n          \"text\": \"aute aliquip\",\n          \"number\": -17483065,\n          \"date\": \"fugiat amet ad\",\n          \"created_at\": \"nostrud in\",\n          \"updated_at\": \"anim proident nulla voluptate\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -18744873,\n          \"custom_field_id\": 17530678,\n          \"contact_id\": 49220893,\n          \"field_key\": \"culpa Excepteur nulla veniam\",\n          \"organization_id\": -30823407,\n          \"text\": \"est sint nostrud\",\n          \"number\": 32671223,\n          \"date\": \"sit cupidatat nulla velit l\",\n          \"created_at\": \"non proident quis ut\",\n          \"updated_at\": \"ipsum in\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -1496095,\n          \"name\": \"lab\",\n          \"label\": \"labore consectetur adipisicing\",\n          \"created_at\": \"do qui sed\"\n        },\n        {\n          \"id\": -29498844,\n          \"name\": \"reprehenderit in enim\",\n          \"label\": \"laboris ipsum enim\",\n          \"created_at\": \"consequat laborum consectetur Duis\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -82346709,\n          \"text\": \"est Duis\",\n          \"created_at\": \"incididunt Duis minim\",\n          \"updated_at\": \"adipisicing aliqua\"\n        },\n        {\n          \"id\": 7824183,\n          \"text\": \"ullamco minim fugiat\",\n          \"created_at\": \"nostrud minim consequat mollit\",\n          \"updated_at\": \"cillum adipisicing\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 91718787,\n      \"conversation_id\": 17339615,\n      \"organization_id\": -85852575,\n      \"changer_user\": [\n        {\n          \"user_id\": -94804109,\n          \"first_name\": \"deserunt velit minim\",\n          \"last_name\": \"laborum est\"\n        },\n        {\n          \"user_id\": 55896602,\n          \"first_name\": \"eiusmod esse consequ\",\n          \"last_name\": \"culpa velit amet\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 96993621,\n          \"first_name\": \"ut incididunt fugiat est occaecat\",\n          \"last_name\": \"cupidatat\"\n        },\n        {\n          \"user_id\": 34318518,\n          \"first_name\": \"\",\n          \"last_name\": \"dolor est ullamco consectetur\"\n        }\n      ],\n      \"created_at\": \"Duis commodo non ea ad\"\n    },\n    {\n      \"id\": 1131512,\n      \"conversation_id\": 99029150,\n      \"organization_id\": 27335628,\n      \"changer_user\": [\n        {\n          \"user_id\": -46614990,\n          \"first_name\": \"esse ea nostrud ipsum et\",\n          \"last_name\": \"voluptate\"\n        },\n        {\n          \"user_id\": 28357907,\n          \"first_name\": \"Ut aute proident sint velit\",\n          \"last_name\": \"dolore consectetur\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": -42795535,\n          \"first_name\": \"dolore ut deserunt\",\n          \"last_name\": \"ut nostrud Lorem commodo\"\n        },\n        {\n          \"user_id\": -2435625,\n          \"first_name\": \"proident officia incididunt\",\n          \"last_name\": \"dolor sint in\"\n        }\n      ],\n      \"created_at\": \"cillum laborum irure veniam\"\n    }\n  ]\n}"}],"_postman_id":"ec0dbae6-bf14-4a16-9cbd-ce3509f837e3"},{"name":"Update conversation","id":"bdf95b6c-26e4-4612-9c6a-a23fd2577a0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation?name=laborum","description":"<p>Update conversation</p>\n","urlObject":{"path":["conversations",":conversation"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Conversation name</p>\n","type":"text/plain"},"key":"name","value":"laborum"}],"variable":[{"id":"5aed16b2-7538-4ed3-9402-ce5ed160d0fe","description":{"content":"<p>(Required) The ID of the Conversation</p>\n","type":"text/plain"},"type":"any","value":"","key":"conversation"}]}},"response":[{"id":"38a4f3c1-364e-4296-8f57-9109275b41c6","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation?name=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations",":conversation"],"query":[{"key":"name","value":"laborum"}],"variable":[{"key":"conversation","value":"","description":"(Required) The ID of the Conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -2108737,\n  \"inbox_id\": 1988509,\n  \"contact_id\": -78515853,\n  \"user_id\": -28783750,\n  \"last_message_at\": \"eiusmod deserunt dolore sunt amet\",\n  \"last_manual_message_at\": \"esse\",\n  \"last_read_at\": \"nisi mini\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"in mollit\",\n  \"tagging_last_read_at\": \"voluptate\",\n  \"started_at\": \"proident adipisicing eu enim\",\n  \"closed_at\": \"proident esse minim cillum exercitation\",\n  \"owner\": {\n    \"id\": 99905774,\n    \"email\": \"laboris\",\n    \"first_name\": \"nisi Ut\",\n    \"last_name\": \"ea conse\",\n    \"full_name\": \"in ut tempor\",\n    \"role\": \"nisi labore Ut id\",\n    \"inbox_id\": -46614392,\n    \"organization_id\": 39268521,\n    \"photo_url\": \"enim vel\",\n    \"unread\": -32318824,\n    \"number\": \"Lorem est non\",\n    \"formatted_number\": \"Lorem dolore\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26892282,\n        \"country\": \"in dolor\",\n        \"number\": \"ipsum amet\",\n        \"formatted_number\": \"dolore magna\",\n        \"mms\": \"nulla fugiat dolore quis\"\n      },\n      {\n        \"id\": 50126318,\n        \"country\": \"laborum sunt nisi\",\n        \"number\": \"consequat\",\n        \"formatted_number\": \"reprehenderit id culpa Excepteur pariatur\",\n        \"mms\": \"dolor\"\n      }\n    ],\n    \"userPermissions\": [\n      \"commodo incididunt\",\n      \"Duis laborum adipisicing\"\n    ]\n  },\n  \"number_id\": 87640219,\n  \"number\": {\n    \"id\": 95524518,\n    \"organization_id\": 62599663,\n    \"country\": \"elit fugiat sed Ut nulla\",\n    \"state\": \"aliquip Ut dolor ut\",\n    \"city\": \"consequat consectetur nisi sint\",\n    \"number\": \"consectetur magna incididunt qui\",\n    \"number_vendor_id\": 92923797,\n    \"country_calling_code\": \"sint ex mollit\",\n    \"national_number\": \"dolor do\",\n    \"formattedNumber\": \"cillum\",\n    \"formatted_number\": \"ad occaecat U\",\n    \"short_code\": -47768422,\n    \"is_landline\": 39951816,\n    \"is_toll_free\": false,\n    \"is_aircall\": true,\n    \"voice\": false,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": false,\n    \"verified_status\": \"dolore enim\",\n    \"area_code\": {\n      \"id\": -7048576,\n      \"area_code\": \"culpa quis\",\n      \"state_code\": \"ad voluptate \",\n      \"state_name\": \"dolor cillum sit cupidatat\",\n      \"country_code\": \"nulla commodo\",\n      \"time_zone\": \"Lorem voluptate Ut aliqua ad\",\n      \"group_id\": 4271247\n    },\n    \"landline\": {\n      \"id\": 11162529,\n      \"number_id\": 18409564,\n      \"address_sid\": \"voluptate eiusmod esse irure\",\n      \"sid\": \"culpa commodo el\",\n      \"document_sid\": \"deserunt ullamc\",\n      \"status\": \"exercitation ullamco tempor nisi\",\n      \"verification_attempts\": 70491639,\n      \"last_verify_attempt_at\": \"reprehenderit velit\",\n      \"landline_name\": \"ad laborum\",\n      \"street_address\": \"velit labore\",\n      \"city\": \"veniam in id velit\",\n      \"state\": \"ut occaecat in\",\n      \"zip_code\": \"sint qui nostrud\",\n      \"completed\": -69370291,\n      \"created_at\": \"velit\",\n      \"updated_at\": \"cillum do ipsum commodo\"\n    },\n    \"number_vendor\": {\n      \"id\": 62447556,\n      \"is_active\": true,\n      \"key\": \"dolor ut minim in\",\n      \"name\": \"esse magna nulla amet dolore\",\n      \"credentials_prefix\": \"anim dolore aliqua consequat nulla\",\n      \"twilio_sid\": \"sunt officia elit\",\n      \"twilio_auth_token\": \"irure consectetur c\",\n      \"is_billable\": -8912338,\n      \"created_at\": \"velit anim\",\n      \"updated_at\": \"dolor ut dolo\"\n    },\n    \"call_forwarding\": {\n      \"id\": 8383999,\n      \"number_id\": -76952795,\n      \"is_active\": true,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"ullamco quis\",\n      \"country\": \"non enim sed dolore\",\n      \"number\": \"proident nisi commodo cupidatat\",\n      \"country_calling_code\": \"nisi cillum adipisicing\",\n      \"national_number\": \"reprehenderit Lorem sunt\",\n      \"formatted_number\": \"deserunt aute\",\n      \"extension\": \"voluptate\",\n      \"created_at\": \"et Ut ad non elit\",\n      \"updated_at\": \"veniam cillum\"\n    },\n    \"numberable_id\": 5245011,\n    \"numberable_type\": \"magna adipisicing\",\n    \"numberable\": {\n      \"id\": 63021081,\n      \"organization_id\": -91212722,\n      \"owner_id\": 7983909,\n      \"team_id\": -51870790,\n      \"name\": \"consequat Ut\",\n      \"created_at\": \"in ea minim\",\n      \"updated_at\": \"non veniam\"\n    }\n  },\n  \"allow_call\": true,\n  \"name\": \"dolor do\",\n  \"group_name\": \"enim culpa laborum dolore\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 15610939,\n      \"owner_id\": -92718637,\n      \"color\": \"ex\",\n      \"first_name\": \"reprehenderit quis ipsum\",\n      \"last_name\": \"reprehenderit proident irure aliqua\",\n      \"full_name\": \"ut reprehenderit officia\",\n      \"email\": \"ame\",\n      \"photo_url\": \"dolore irure nulla\",\n      \"number\": \"consequat\",\n      \"country\": \"ut minim amet\",\n      \"country_calling_code\": \"cupidatat\",\n      \"national_number\": \"officia nisi\",\n      \"typeted_number\": \"esse cupidatat\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"eu enim\",\n      \"opt_in_request_at\": \"sit ea aliqua exercitation sed\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -82386262\n        },\n        {\n          \"number_id\": -73700242\n        }\n      ],\n      \"opt_in_at\": \"qui sit\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 73680286,\n          \"number_id\": -58074907,\n          \"name\": \"dolor sed\",\n          \"disabled\": true,\n          \"timestamp\": \"reprehenderit\",\n          \"value\": false\n        },\n        {\n          \"id\": 82532236,\n          \"number_id\": 63531545,\n          \"name\": \"cupidatat veniam officia exercitation incididunt\",\n          \"disabled\": true,\n          \"timestamp\": \"magna ad\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"ullamco ut in\",\n      \"updated_at\": \"no\",\n      \"integration_vendor_id\": 95063998,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -14088660,\n          \"key\": \"sint elit\",\n          \"name\": \"esse nulla tempor dolore\",\n          \"photo_url\": \"ad magna in\"\n        },\n        {\n          \"id\": 72094498,\n          \"key\": \"eu ut nulla\",\n          \"name\": \"ex ut laboris\",\n          \"photo_url\": \"eiusmod quis sint in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 89566966,\n          \"custom_field_id\": 28544420,\n          \"contact_id\": -18677790,\n          \"field_key\": \"sunt\",\n          \"organization_id\": 16737846,\n          \"text\": \"tempor\",\n          \"number\": 72608645,\n          \"date\": \"dolore ullamco sit\",\n          \"created_at\": \"sunt ea\",\n          \"updated_at\": \"anim voluptate n\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -73530648,\n          \"custom_field_id\": 63216793,\n          \"contact_id\": -85567620,\n          \"field_key\": \"ipsum amet\",\n          \"organization_id\": 7756345,\n          \"text\": \"in sint incididunt\",\n          \"number\": -75756281,\n          \"date\": \"sed in laboris\",\n          \"created_at\": \"Duis esse aliqua\",\n          \"updated_at\": \"anim consequat cupidatat esse\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 91811830,\n          \"name\": \"dolore qui Lorem\",\n          \"label\": \"mollit velit deserunt\",\n          \"created_at\": \"ullamco proident ip\"\n        },\n        {\n          \"id\": 80768431,\n          \"name\": \"aliqua ut enim minim cupidatat\",\n          \"label\": \"consectetur\",\n          \"created_at\": \"velit commodo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -26150780,\n          \"text\": \"mollit amet labore in\",\n          \"created_at\": \"officia deserunt\",\n          \"updated_at\": \"aliquip ex ut\"\n        },\n        {\n          \"id\": 21087648,\n          \"text\": \"Ut nulla et\",\n          \"created_at\": \"do velit sint\",\n          \"updated_at\": \"nulla tempor amet eu in\"\n        }\n      ]\n    },\n    {\n      \"id\": -63929480,\n      \"owner_id\": 40660586,\n      \"color\": \"anim labore deserunt enim non\",\n      \"first_name\": \"nulla ullamco\",\n      \"last_name\": \"aute consequat dolor\",\n      \"full_name\": \"occaecat veniam\",\n      \"email\": \"culpa elit do\",\n      \"photo_url\": \"sit voluptate d\",\n      \"number\": \"irure\",\n      \"country\": \"ullamco amet cillum\",\n      \"country_calling_code\": \"mollit\",\n      \"national_number\": \"i\",\n      \"typeted_number\": \"mollit sed qui\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"minim est\",\n      \"opt_in_request_at\": \"in esse\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 61606162\n        },\n        {\n          \"number_id\": -29846808\n        }\n      ],\n      \"opt_in_at\": \"magna proident\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -28947393,\n          \"number_id\": -10811445,\n          \"name\": \"in ut nisi officia\",\n          \"disabled\": true,\n          \"timestamp\": \"pariatur Duis sit et\",\n          \"value\": false\n        },\n        {\n          \"id\": -10419148,\n          \"number_id\": 59732489,\n          \"name\": \"nostrud ullamco sunt\",\n          \"disabled\": false,\n          \"timestamp\": \"Lorem aute cillum\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"cupidatat magna adipisicing\",\n      \"updated_at\": \"commodo\",\n      \"integration_vendor_id\": -16662202,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 75336919,\n          \"key\": \"et ut\",\n          \"name\": \"ut tempor\",\n          \"photo_url\": \"quis aute i\"\n        },\n        {\n          \"id\": 53006239,\n          \"key\": \"pariatur consectetur v\",\n          \"name\": \"culpa\",\n          \"photo_url\": \"incididunt aliqua in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -48887206,\n          \"custom_field_id\": 1840762,\n          \"contact_id\": 70272917,\n          \"field_key\": \"velit Excepteur\",\n          \"organization_id\": -23963645,\n          \"text\": \"aute aliquip\",\n          \"number\": -17483065,\n          \"date\": \"fugiat amet ad\",\n          \"created_at\": \"nostrud in\",\n          \"updated_at\": \"anim proident nulla voluptate\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -18744873,\n          \"custom_field_id\": 17530678,\n          \"contact_id\": 49220893,\n          \"field_key\": \"culpa Excepteur nulla veniam\",\n          \"organization_id\": -30823407,\n          \"text\": \"est sint nostrud\",\n          \"number\": 32671223,\n          \"date\": \"sit cupidatat nulla velit l\",\n          \"created_at\": \"non proident quis ut\",\n          \"updated_at\": \"ipsum in\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -1496095,\n          \"name\": \"lab\",\n          \"label\": \"labore consectetur adipisicing\",\n          \"created_at\": \"do qui sed\"\n        },\n        {\n          \"id\": -29498844,\n          \"name\": \"reprehenderit in enim\",\n          \"label\": \"laboris ipsum enim\",\n          \"created_at\": \"consequat laborum consectetur Duis\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -82346709,\n          \"text\": \"est Duis\",\n          \"created_at\": \"incididunt Duis minim\",\n          \"updated_at\": \"adipisicing aliqua\"\n        },\n        {\n          \"id\": 7824183,\n          \"text\": \"ullamco minim fugiat\",\n          \"created_at\": \"nostrud minim consequat mollit\",\n          \"updated_at\": \"cillum adipisicing\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 91718787,\n      \"conversation_id\": 17339615,\n      \"organization_id\": -85852575,\n      \"changer_user\": [\n        {\n          \"user_id\": -94804109,\n          \"first_name\": \"deserunt velit minim\",\n          \"last_name\": \"laborum est\"\n        },\n        {\n          \"user_id\": 55896602,\n          \"first_name\": \"eiusmod esse consequ\",\n          \"last_name\": \"culpa velit amet\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 96993621,\n          \"first_name\": \"ut incididunt fugiat est occaecat\",\n          \"last_name\": \"cupidatat\"\n        },\n        {\n          \"user_id\": 34318518,\n          \"first_name\": \"\",\n          \"last_name\": \"dolor est ullamco consectetur\"\n        }\n      ],\n      \"created_at\": \"Duis commodo non ea ad\"\n    },\n    {\n      \"id\": 1131512,\n      \"conversation_id\": 99029150,\n      \"organization_id\": 27335628,\n      \"changer_user\": [\n        {\n          \"user_id\": -46614990,\n          \"first_name\": \"esse ea nostrud ipsum et\",\n          \"last_name\": \"voluptate\"\n        },\n        {\n          \"user_id\": 28357907,\n          \"first_name\": \"Ut aute proident sint velit\",\n          \"last_name\": \"dolore consectetur\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": -42795535,\n          \"first_name\": \"dolore ut deserunt\",\n          \"last_name\": \"ut nostrud Lorem commodo\"\n        },\n        {\n          \"user_id\": -2435625,\n          \"first_name\": \"proident officia incididunt\",\n          \"last_name\": \"dolor sint in\"\n        }\n      ],\n      \"created_at\": \"cillum laborum irure veniam\"\n    }\n  ]\n}"}],"_postman_id":"bdf95b6c-26e4-4612-9c6a-a23fd2577a0e"},{"name":"Switch conversation","id":"35d0c250-c8aa-487c-bc4c-aa207e6faf58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/switch","description":"<p>Switch conversation</p>\n","urlObject":{"path":["conversations",":conversation","switch"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"330b5663-060a-4645-bbd8-253531580f6b","description":{"content":"<p>(Required) The ID of the Conversation</p>\n","type":"text/plain"},"type":"any","value":"","key":"conversation"}]}},"response":[{"id":"40a8c1be-16d9-4821-b9a2-26d5d4816ae1","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/switch","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations",":conversation","switch"],"variable":[{"key":"conversation","value":"","description":"(Required) The ID of the Conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -34397648,\n  \"filter\": \"et incididu\",\n  \"unread\": -29060709\n}"}],"_postman_id":"35d0c250-c8aa-487c-bc4c-aa207e6faf58"},{"name":"Mark conversation as unread","id":"67d30546-a9df-413d-b79f-cabb59cd1496","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/unread","description":"<p>If you read a message, but want to take some time before addressing it, the message can be marked as unread. <br /><br />This endpoint changes the status of messages in a given conversation to unread by the current user. Marking a message as unread displays the bold dot mark on the conversation in the conversation sidebar. <br /><br />The message becomes grouped with all the other unread messages as the last_read_at field is set as empty.</p>\n","urlObject":{"path":["conversations",":conversation","unread"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"4d0180a8-14e9-4377-889e-ad062a8bed6a","description":{"content":"<p>(Required) Conversation id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"conversation"}]}},"response":[{"id":"e78dc2b8-6f0b-4312-ba5b-6a1944e0d874","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversations/:conversation/unread","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversations",":conversation","unread"],"variable":[{"key":"conversation","value":"27950450","description":"(Required) Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -2108737,\n  \"inbox_id\": 1988509,\n  \"contact_id\": -78515853,\n  \"user_id\": -28783750,\n  \"last_message_at\": \"eiusmod deserunt dolore sunt amet\",\n  \"last_manual_message_at\": \"esse\",\n  \"last_read_at\": \"nisi mini\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"in mollit\",\n  \"tagging_last_read_at\": \"voluptate\",\n  \"started_at\": \"proident adipisicing eu enim\",\n  \"closed_at\": \"proident esse minim cillum exercitation\",\n  \"owner\": {\n    \"id\": 99905774,\n    \"email\": \"laboris\",\n    \"first_name\": \"nisi Ut\",\n    \"last_name\": \"ea conse\",\n    \"full_name\": \"in ut tempor\",\n    \"role\": \"nisi labore Ut id\",\n    \"inbox_id\": -46614392,\n    \"organization_id\": 39268521,\n    \"photo_url\": \"enim vel\",\n    \"unread\": -32318824,\n    \"number\": \"Lorem est non\",\n    \"formatted_number\": \"Lorem dolore\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26892282,\n        \"country\": \"in dolor\",\n        \"number\": \"ipsum amet\",\n        \"formatted_number\": \"dolore magna\",\n        \"mms\": \"nulla fugiat dolore quis\"\n      },\n      {\n        \"id\": 50126318,\n        \"country\": \"laborum sunt nisi\",\n        \"number\": \"consequat\",\n        \"formatted_number\": \"reprehenderit id culpa Excepteur pariatur\",\n        \"mms\": \"dolor\"\n      }\n    ],\n    \"userPermissions\": [\n      \"commodo incididunt\",\n      \"Duis laborum adipisicing\"\n    ]\n  },\n  \"number_id\": 87640219,\n  \"number\": {\n    \"id\": 95524518,\n    \"organization_id\": 62599663,\n    \"country\": \"elit fugiat sed Ut nulla\",\n    \"state\": \"aliquip Ut dolor ut\",\n    \"city\": \"consequat consectetur nisi sint\",\n    \"number\": \"consectetur magna incididunt qui\",\n    \"number_vendor_id\": 92923797,\n    \"country_calling_code\": \"sint ex mollit\",\n    \"national_number\": \"dolor do\",\n    \"formattedNumber\": \"cillum\",\n    \"formatted_number\": \"ad occaecat U\",\n    \"short_code\": -47768422,\n    \"is_landline\": 39951816,\n    \"is_toll_free\": false,\n    \"is_aircall\": true,\n    \"voice\": false,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": false,\n    \"verified_status\": \"dolore enim\",\n    \"area_code\": {\n      \"id\": -7048576,\n      \"area_code\": \"culpa quis\",\n      \"state_code\": \"ad voluptate \",\n      \"state_name\": \"dolor cillum sit cupidatat\",\n      \"country_code\": \"nulla commodo\",\n      \"time_zone\": \"Lorem voluptate Ut aliqua ad\",\n      \"group_id\": 4271247\n    },\n    \"landline\": {\n      \"id\": 11162529,\n      \"number_id\": 18409564,\n      \"address_sid\": \"voluptate eiusmod esse irure\",\n      \"sid\": \"culpa commodo el\",\n      \"document_sid\": \"deserunt ullamc\",\n      \"status\": \"exercitation ullamco tempor nisi\",\n      \"verification_attempts\": 70491639,\n      \"last_verify_attempt_at\": \"reprehenderit velit\",\n      \"landline_name\": \"ad laborum\",\n      \"street_address\": \"velit labore\",\n      \"city\": \"veniam in id velit\",\n      \"state\": \"ut occaecat in\",\n      \"zip_code\": \"sint qui nostrud\",\n      \"completed\": -69370291,\n      \"created_at\": \"velit\",\n      \"updated_at\": \"cillum do ipsum commodo\"\n    },\n    \"number_vendor\": {\n      \"id\": 62447556,\n      \"is_active\": true,\n      \"key\": \"dolor ut minim in\",\n      \"name\": \"esse magna nulla amet dolore\",\n      \"credentials_prefix\": \"anim dolore aliqua consequat nulla\",\n      \"twilio_sid\": \"sunt officia elit\",\n      \"twilio_auth_token\": \"irure consectetur c\",\n      \"is_billable\": -8912338,\n      \"created_at\": \"velit anim\",\n      \"updated_at\": \"dolor ut dolo\"\n    },\n    \"call_forwarding\": {\n      \"id\": 8383999,\n      \"number_id\": -76952795,\n      \"is_active\": true,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"ullamco quis\",\n      \"country\": \"non enim sed dolore\",\n      \"number\": \"proident nisi commodo cupidatat\",\n      \"country_calling_code\": \"nisi cillum adipisicing\",\n      \"national_number\": \"reprehenderit Lorem sunt\",\n      \"formatted_number\": \"deserunt aute\",\n      \"extension\": \"voluptate\",\n      \"created_at\": \"et Ut ad non elit\",\n      \"updated_at\": \"veniam cillum\"\n    },\n    \"numberable_id\": 5245011,\n    \"numberable_type\": \"magna adipisicing\",\n    \"numberable\": {\n      \"id\": 63021081,\n      \"organization_id\": -91212722,\n      \"owner_id\": 7983909,\n      \"team_id\": -51870790,\n      \"name\": \"consequat Ut\",\n      \"created_at\": \"in ea minim\",\n      \"updated_at\": \"non veniam\"\n    }\n  },\n  \"allow_call\": true,\n  \"name\": \"dolor do\",\n  \"group_name\": \"enim culpa laborum dolore\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 15610939,\n      \"owner_id\": -92718637,\n      \"color\": \"ex\",\n      \"first_name\": \"reprehenderit quis ipsum\",\n      \"last_name\": \"reprehenderit proident irure aliqua\",\n      \"full_name\": \"ut reprehenderit officia\",\n      \"email\": \"ame\",\n      \"photo_url\": \"dolore irure nulla\",\n      \"number\": \"consequat\",\n      \"country\": \"ut minim amet\",\n      \"country_calling_code\": \"cupidatat\",\n      \"national_number\": \"officia nisi\",\n      \"typeted_number\": \"esse cupidatat\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"eu enim\",\n      \"opt_in_request_at\": \"sit ea aliqua exercitation sed\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -82386262\n        },\n        {\n          \"number_id\": -73700242\n        }\n      ],\n      \"opt_in_at\": \"qui sit\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 73680286,\n          \"number_id\": -58074907,\n          \"name\": \"dolor sed\",\n          \"disabled\": true,\n          \"timestamp\": \"reprehenderit\",\n          \"value\": false\n        },\n        {\n          \"id\": 82532236,\n          \"number_id\": 63531545,\n          \"name\": \"cupidatat veniam officia exercitation incididunt\",\n          \"disabled\": true,\n          \"timestamp\": \"magna ad\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"ullamco ut in\",\n      \"updated_at\": \"no\",\n      \"integration_vendor_id\": 95063998,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -14088660,\n          \"key\": \"sint elit\",\n          \"name\": \"esse nulla tempor dolore\",\n          \"photo_url\": \"ad magna in\"\n        },\n        {\n          \"id\": 72094498,\n          \"key\": \"eu ut nulla\",\n          \"name\": \"ex ut laboris\",\n          \"photo_url\": \"eiusmod quis sint in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 89566966,\n          \"custom_field_id\": 28544420,\n          \"contact_id\": -18677790,\n          \"field_key\": \"sunt\",\n          \"organization_id\": 16737846,\n          \"text\": \"tempor\",\n          \"number\": 72608645,\n          \"date\": \"dolore ullamco sit\",\n          \"created_at\": \"sunt ea\",\n          \"updated_at\": \"anim voluptate n\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -73530648,\n          \"custom_field_id\": 63216793,\n          \"contact_id\": -85567620,\n          \"field_key\": \"ipsum amet\",\n          \"organization_id\": 7756345,\n          \"text\": \"in sint incididunt\",\n          \"number\": -75756281,\n          \"date\": \"sed in laboris\",\n          \"created_at\": \"Duis esse aliqua\",\n          \"updated_at\": \"anim consequat cupidatat esse\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 91811830,\n          \"name\": \"dolore qui Lorem\",\n          \"label\": \"mollit velit deserunt\",\n          \"created_at\": \"ullamco proident ip\"\n        },\n        {\n          \"id\": 80768431,\n          \"name\": \"aliqua ut enim minim cupidatat\",\n          \"label\": \"consectetur\",\n          \"created_at\": \"velit commodo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -26150780,\n          \"text\": \"mollit amet labore in\",\n          \"created_at\": \"officia deserunt\",\n          \"updated_at\": \"aliquip ex ut\"\n        },\n        {\n          \"id\": 21087648,\n          \"text\": \"Ut nulla et\",\n          \"created_at\": \"do velit sint\",\n          \"updated_at\": \"nulla tempor amet eu in\"\n        }\n      ]\n    },\n    {\n      \"id\": -63929480,\n      \"owner_id\": 40660586,\n      \"color\": \"anim labore deserunt enim non\",\n      \"first_name\": \"nulla ullamco\",\n      \"last_name\": \"aute consequat dolor\",\n      \"full_name\": \"occaecat veniam\",\n      \"email\": \"culpa elit do\",\n      \"photo_url\": \"sit voluptate d\",\n      \"number\": \"irure\",\n      \"country\": \"ullamco amet cillum\",\n      \"country_calling_code\": \"mollit\",\n      \"national_number\": \"i\",\n      \"typeted_number\": \"mollit sed qui\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"minim est\",\n      \"opt_in_request_at\": \"in esse\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 61606162\n        },\n        {\n          \"number_id\": -29846808\n        }\n      ],\n      \"opt_in_at\": \"magna proident\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -28947393,\n          \"number_id\": -10811445,\n          \"name\": \"in ut nisi officia\",\n          \"disabled\": true,\n          \"timestamp\": \"pariatur Duis sit et\",\n          \"value\": false\n        },\n        {\n          \"id\": -10419148,\n          \"number_id\": 59732489,\n          \"name\": \"nostrud ullamco sunt\",\n          \"disabled\": false,\n          \"timestamp\": \"Lorem aute cillum\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"cupidatat magna adipisicing\",\n      \"updated_at\": \"commodo\",\n      \"integration_vendor_id\": -16662202,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 75336919,\n          \"key\": \"et ut\",\n          \"name\": \"ut tempor\",\n          \"photo_url\": \"quis aute i\"\n        },\n        {\n          \"id\": 53006239,\n          \"key\": \"pariatur consectetur v\",\n          \"name\": \"culpa\",\n          \"photo_url\": \"incididunt aliqua in\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -48887206,\n          \"custom_field_id\": 1840762,\n          \"contact_id\": 70272917,\n          \"field_key\": \"velit Excepteur\",\n          \"organization_id\": -23963645,\n          \"text\": \"aute aliquip\",\n          \"number\": -17483065,\n          \"date\": \"fugiat amet ad\",\n          \"created_at\": \"nostrud in\",\n          \"updated_at\": \"anim proident nulla voluptate\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -18744873,\n          \"custom_field_id\": 17530678,\n          \"contact_id\": 49220893,\n          \"field_key\": \"culpa Excepteur nulla veniam\",\n          \"organization_id\": -30823407,\n          \"text\": \"est sint nostrud\",\n          \"number\": 32671223,\n          \"date\": \"sit cupidatat nulla velit l\",\n          \"created_at\": \"non proident quis ut\",\n          \"updated_at\": \"ipsum in\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -1496095,\n          \"name\": \"lab\",\n          \"label\": \"labore consectetur adipisicing\",\n          \"created_at\": \"do qui sed\"\n        },\n        {\n          \"id\": -29498844,\n          \"name\": \"reprehenderit in enim\",\n          \"label\": \"laboris ipsum enim\",\n          \"created_at\": \"consequat laborum consectetur Duis\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -82346709,\n          \"text\": \"est Duis\",\n          \"created_at\": \"incididunt Duis minim\",\n          \"updated_at\": \"adipisicing aliqua\"\n        },\n        {\n          \"id\": 7824183,\n          \"text\": \"ullamco minim fugiat\",\n          \"created_at\": \"nostrud minim consequat mollit\",\n          \"updated_at\": \"cillum adipisicing\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 91718787,\n      \"conversation_id\": 17339615,\n      \"organization_id\": -85852575,\n      \"changer_user\": [\n        {\n          \"user_id\": -94804109,\n          \"first_name\": \"deserunt velit minim\",\n          \"last_name\": \"laborum est\"\n        },\n        {\n          \"user_id\": 55896602,\n          \"first_name\": \"eiusmod esse consequ\",\n          \"last_name\": \"culpa velit amet\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 96993621,\n          \"first_name\": \"ut incididunt fugiat est occaecat\",\n          \"last_name\": \"cupidatat\"\n        },\n        {\n          \"user_id\": 34318518,\n          \"first_name\": \"\",\n          \"last_name\": \"dolor est ullamco consectetur\"\n        }\n      ],\n      \"created_at\": \"Duis commodo non ea ad\"\n    },\n    {\n      \"id\": 1131512,\n      \"conversation_id\": 99029150,\n      \"organization_id\": 27335628,\n      \"changer_user\": [\n        {\n          \"user_id\": -46614990,\n          \"first_name\": \"esse ea nostrud ipsum et\",\n          \"last_name\": \"voluptate\"\n        },\n        {\n          \"user_id\": 28357907,\n          \"first_name\": \"Ut aute proident sint velit\",\n          \"last_name\": \"dolore consectetur\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": -42795535,\n          \"first_name\": \"dolore ut deserunt\",\n          \"last_name\": \"ut nostrud Lorem commodo\"\n        },\n        {\n          \"user_id\": -2435625,\n          \"first_name\": \"proident officia incididunt\",\n          \"last_name\": \"dolor sint in\"\n        }\n      ],\n      \"created_at\": \"cillum laborum irure veniam\"\n    }\n  ]\n}"}],"_postman_id":"67d30546-a9df-413d-b79f-cabb59cd1496"}],"id":"ca5b7c9f-d0b1-4b7f-8284-1656a84eadd3","description":"<p>When the first private message is sent to an app user or received from an app user, a conversation is automatically created for them. The SalesMessage Conversations API includes endpoints related to working with conversations. <br /><br />The API endpoints enable your application to act as a chat agent for message exchange between users. Thus, it allows for managing conversations.</p>\n","_postman_id":"ca5b7c9f-d0b1-4b7f-8284-1656a84eadd3"},{"name":"Messages","item":[{"name":"Delete scheduled message","id":"e11a7ad6-5be7-43fc-a833-7f81c5f31e21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages/:message","description":"<p>Delete scheduled message by id</p>\n","urlObject":{"path":["messages",":message"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"43ecc7eb-591b-4071-82f6-1a045c52397a","description":{"content":"<p>(Required) The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"}]}},"response":[{"id":"85fa2682-f10e-4265-b79c-f608ac41767d","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:message","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":message"],"variable":[{"key":"message","value":"","description":"(Required) The ID of the Message"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"eiusmod dolor\"\n}"}],"_postman_id":"e11a7ad6-5be7-43fc-a833-7f81c5f31e21"},{"name":"Upload files","id":"5e8c1d33-1f81-49a0-bd0b-1358104be0d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"[\"quis exercitation cupidatat\",\"dolor incididunt\"]","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.1//messages/files/upload","description":"<p>This endpoint allows for uploading files by public API for the contact. <br /><br />The types of messages available for the contacts include texts, images, url links, files, vcards, .pdf and more. Additionally, there’s an ability to include up to five image files, attachments, hyperlinks to book appointments, send gifs, and emojis just like regular texting. <br /><br />Any uploaded file turners into a short hyperlink which leads to the original file to view the attachment.</p>\n","urlObject":{"path":["messages","files","upload"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"01f1710e-5ae7-4b7c-af71-8a73cef50255","name":"JSON Outbound Message","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"[\"minim consequat\",\"velit cupidatat dolor\"]","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.1//messages/files/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"urls\": [\n    {\n      \"url\": \"aliqua velit aute\",\n      \"content_type\": \"Lorem Ut in ex\"\n    },\n    {\n      \"url\": \"Lorem\",\n      \"content_type\": \"tempor ut\"\n    }\n  ]\n}"},{"id":"266ff6d6-692a-4488-9f86-2cc09ac52d86","name":"Unprocessable Content","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"[\"minim consequat\",\"velit cupidatat dolor\"]","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.1//messages/files/upload"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"files.0\": [\n    \"We currently only allow: image/jpeg, image/gif, image/png, image/bmp, text/vcard\",\n    \"We currently only allow: image/jpeg, image/gif, image/png, image/bmp, text/vcard\"\n  ]\n}"}],"_postman_id":"5e8c1d33-1f81-49a0-bd0b-1358104be0d1"},{"name":"Get messages by contacts","id":"79cef0cd-06e4-4e73-8f2f-c7014d332ecb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages/contacts?contacts[]=57824058&contacts[]=76665986&team_id=46945205&limit=20&before=46945205","description":"<p>Returns an array of messages found by Contact ID and Inbox ID. If multiple Contact IDs are provided, this endpoint will search for group conversations with these IDs.</p>\n","urlObject":{"path":["messages","contacts"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"key":"contacts[]","value":"57824058"},{"key":"contacts[]","value":"76665986"},{"description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"key":"team_id","value":"46945205"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"limit","value":"20"},{"description":{"content":"<p>Before</p>\n","type":"text/plain"},"key":"before","value":"46945205"}],"variable":[]}},"response":[{"id":"ceb62317-f3fd-4cfa-970a-2a3236b37ae8","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/contacts?contacts=91455370&contacts=19715930&team_id=-46945205&limit=20&before=-46945205","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages","contacts"],"query":[{"key":"contacts","value":"91455370"},{"key":"contacts","value":"19715930"},{"key":"team_id","value":"-46945205"},{"key":"limit","value":"20"},{"key":"before","value":"-46945205"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 75553107,\n    \"conversation_id\": 44589606,\n    \"automated\": false,\n    \"status\": \"consequat ut laboris nostrud\",\n    \"type\": \"laboris\",\n    \"mms_status\": \"esse non qui anim commodo\",\n    \"body\": \"reprehenderit occaecat sed\",\n    \"body_raw\": \"dolore aliquip officia\",\n    \"has_tagging\": true,\n    \"icon\": \"sit velit consequat\",\n    \"received_at\": \"Ut aliquip\",\n    \"send_at\": \"ea enim\",\n    \"queued_at\": \"ut tempor in est Lorem\",\n    \"sent_at\": \"mollit nostrud consequat sunt\",\n    \"delivered_at\": \"esse nulla nisi\",\n    \"failed_at\": \"occaecat ut\",\n    \"failed_reason\": \"in nisi fugiat\",\n    \"created_at\": \"ipsum et\",\n    \"stop_on_response\": true,\n    \"record\": {\n      \"id\": 19922617,\n      \"message_id\": 35431026,\n      \"sid\": \"nulla eiusmod\",\n      \"record_id\": \"aliqua ad aute\",\n      \"duration\": -56162112,\n      \"status\": \"Ut\",\n      \"url\": \"do\",\n      \"is_voicemail\": false,\n      \"created_at\": \"laborum ut Lorem amet veniam\",\n      \"updated_at\": \"aliqua ea commodo deserunt\"\n    },\n    \"user_id\": -72894126,\n    \"source_id\": -22199754,\n    \"source\": \"Excepteur non\",\n    \"contact\": {\n      \"id\": 6377298,\n      \"owner_id\": -76613515,\n      \"color\": \"dolor aute\",\n      \"first_name\": \"elit labore nulla\",\n      \"last_name\": \"incididunt ut in est pariatur\",\n      \"full_name\": \"commodo sed dolor\",\n      \"email\": \"labore voluptate Ut\",\n      \"photo_url\": \"dolor minim eu tempor\",\n      \"number\": \"nulla elit temp\",\n      \"country\": \"exercitation velit\",\n      \"country_calling_code\": \"officia proident sit aliqua\",\n      \"national_number\": \"ullamco proident\",\n      \"typeted_number\": \"Excepteur enim nulla culpa\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"quis\",\n      \"opt_in_request_at\": \"dolore anim\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 18495245\n        },\n        {\n          \"number_id\": -14355354\n        }\n      ],\n      \"opt_in_at\": \"sunt\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -4060950,\n          \"number_id\": -98702053,\n          \"name\": \"Duis dolore\",\n          \"disabled\": true,\n          \"timestamp\": \"eiusmod\",\n          \"value\": false\n        },\n        {\n          \"id\": -84142728,\n          \"number_id\": -30431253,\n          \"name\": \"mollit nulla al\",\n          \"disabled\": false,\n          \"timestamp\": \"Ut dolor\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"cil\",\n      \"updated_at\": \"sunt esse id dolo\",\n      \"integration_vendor_id\": -15929749,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -5353513,\n          \"key\": \"ad sit non\",\n          \"name\": \"tempor\",\n          \"photo_url\": \"nisi in aute in dolore\"\n        },\n        {\n          \"id\": 37753786,\n          \"key\": \"elit eiusmod\",\n          \"name\": \"laboris\",\n          \"photo_url\": \"nostrud\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -65349264,\n          \"custom_field_id\": -99623380,\n          \"contact_id\": -52788908,\n          \"field_key\": \"consectetur magna deserunt ut\",\n          \"organization_id\": -67386526,\n          \"text\": \"esse ut id veniam\",\n          \"number\": -68242981,\n          \"date\": \"qui enim officia\",\n          \"created_at\": \"incididunt\",\n          \"updated_at\": \"quis qui in c\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 75257821,\n          \"custom_field_id\": 82354475,\n          \"contact_id\": -10177506,\n          \"field_key\": \"laborum eiusmod fugiat\",\n          \"organization_id\": 76089518,\n          \"text\": \"Duis aute \",\n          \"number\": -76134365,\n          \"date\": \"Duis commodo veniam\",\n          \"created_at\": \"Duis ad ut pariatur dolore\",\n          \"updated_at\": \"consectetur Duis proident ex\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -47064806,\n          \"name\": \"s\",\n          \"label\": \"cupidatat proident nisi\",\n          \"created_at\": \"nostrud magna eiusmod\"\n        },\n        {\n          \"id\": -54029135,\n          \"name\": \"enim c\",\n          \"label\": \"Excepteur consectetur qui qui\",\n          \"created_at\": \"velit ullamco\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -92166232,\n          \"text\": \"enim aute\",\n          \"created_at\": \"est ea\",\n          \"updated_at\": \"commodo ut reprehenderit dolor\"\n        },\n        {\n          \"id\": -79968630,\n          \"text\": \"venia\",\n          \"created_at\": \"sit\",\n          \"updated_at\": \"in\"\n        }\n      ]\n    },\n    \"user\": {\n      \"id\": 16305270,\n      \"email\": \"consecte\",\n      \"first_name\": \"nulla commodo\",\n      \"last_name\": \"exercitation enim ut eiusmod\",\n      \"full_name\": \"adipisicing incididunt sint\",\n      \"role\": \"aute reprehende\",\n      \"inbox_id\": 94923440,\n      \"organization_id\": -98424672,\n      \"photo_url\": \"amet cupidatat laborum\",\n      \"unread\": 67604163,\n      \"number\": \"ullamco non minim Excepteur culpa\",\n      \"formatted_number\": \"dolor\",\n      \"organizationNumber\": [\n        {\n          \"id\": 27486777,\n          \"country\": \"est anim\",\n          \"number\": \"consequat laboris dolor\",\n          \"formatted_number\": \"minim pariatur enim\",\n          \"mms\": \"Lorem deserunt Duis sint\"\n        },\n        {\n          \"id\": -1487747,\n          \"country\": \"ullamco dolor\",\n          \"number\": \"incididunt\",\n          \"formatted_number\": \"dolor do Duis\",\n          \"mms\": \"eu\"\n        }\n      ],\n      \"userPermissions\": [\n        \"laboris minim\",\n        \"veniam et\"\n      ]\n    },\n    \"pending_mentions\": [\n      {\n        \"id\": 25912443,\n        \"email\": \"ut e\",\n        \"first_name\": \"ullamco et cupidatat\",\n        \"last_name\": \"exercitation dolore velit tempor\",\n        \"full_name\": \"adipisicing ex mollit\",\n        \"role\": \"nulla\",\n        \"inbox_id\": 86281885,\n        \"organization_id\": 35788264,\n        \"photo_url\": \"cupidatat exercitation\",\n        \"unread\": -42215402,\n        \"number\": \"culpa id ea ul\",\n        \"formatted_number\": \"do fugiat dolore aute id\",\n        \"organizationNumber\": [\n          {\n            \"id\": 79122038,\n            \"country\": \"ipsum non aute\",\n            \"number\": \"sint ut pariatur\",\n            \"formatted_number\": \"qui Lorem id sint\",\n            \"mms\": \"nulla deserunt veniam dolore\"\n          },\n          {\n            \"id\": -46711595,\n            \"country\": \"non do ad exercitation enim\",\n            \"number\": \"ipsum quis esse qui aliquip\",\n            \"formatted_number\": \"qui labore sit\",\n            \"mms\": \"laborum aliqua consequat\"\n          }\n        ],\n        \"userPermissions\": [\n          \"non consectetur est cillum\",\n          \"amet nisi pariatur\"\n        ]\n      },\n      {\n        \"id\": -12713288,\n        \"email\": \"cillum\",\n        \"first_name\": \"occaecat ex\",\n        \"last_name\": \"dolore anim occaecat Ut \",\n        \"full_name\": \"laboris deser\",\n        \"role\": \"amet\",\n        \"inbox_id\": 68589746,\n        \"organization_id\": 35521166,\n        \"photo_url\": \"eiusmod nisi dolor commodo\",\n        \"unread\": -86629415,\n        \"number\": \"aliqua consequat\",\n        \"formatted_number\": \"do cupidatat est\",\n        \"organizationNumber\": [\n          {\n            \"id\": 15818242,\n            \"country\": \"nulla irure anim\",\n            \"number\": \"ex irure\",\n            \"formatted_number\": \"d\",\n            \"mms\": \"officia laboris est aliqu\"\n          },\n          {\n            \"id\": 63349133,\n            \"country\": \"ipsum adipisicing esse\",\n            \"number\": \"nisi velit\",\n            \"formatted_number\": \"sed fugiat\",\n            \"mms\": \"laboris pariatur amet velit\"\n          }\n        ],\n        \"userPermissions\": [\n          \"ipsum ut\",\n          \"velit proident quis occaecat\"\n        ]\n      }\n    ],\n    \"media\": [\n      {\n        \"id\": -72936924,\n        \"content_type\": \"consectetur reprehenderit ir\",\n        \"source\": \"non nulla incididunt consect\",\n        \"source_short\": \"dolor ea\",\n        \"created_at\": \"elit ad consequat\"\n      },\n      {\n        \"id\": 11474746,\n        \"content_type\": \"consectetur tempor esse\",\n        \"source\": \"commodo elit voluptate\",\n        \"source_short\": \"proident ad velit ma\",\n        \"created_at\": \"anim incididunt ea sed et\"\n      }\n    ]\n  },\n  {\n    \"id\": 41898518,\n    \"conversation_id\": 85510362,\n    \"automated\": false,\n    \"status\": \"proident laborum sunt e\",\n    \"type\": \"labore non Excepteur\",\n    \"mms_status\": \"veniam velit officia sit\",\n    \"body\": \"ad sit irure\",\n    \"body_raw\": \"ipsum aliqua incididunt quis in\",\n    \"has_tagging\": false,\n    \"icon\": \"esse sed\",\n    \"received_at\": \"minim elit adipisicing Excepteur\",\n    \"send_at\": \"qui anim pariatur mollit non\",\n    \"queued_at\": \"consectetur consequat\",\n    \"sent_at\": \"fugiat voluptate occaecat\",\n    \"delivered_at\": \"laborum\",\n    \"failed_at\": \"ut laborum occaecat\",\n    \"failed_reason\": \"sint\",\n    \"created_at\": \"ullamco \",\n    \"stop_on_response\": true,\n    \"record\": {\n      \"id\": -24462878,\n      \"message_id\": 33060813,\n      \"sid\": \"reprehenderit nisi\",\n      \"record_id\": \"ex\",\n      \"duration\": 24062012,\n      \"status\": \"aliquip adipisicing nisi sint\",\n      \"url\": \"sit est dolor pariatur\",\n      \"is_voicemail\": true,\n      \"created_at\": \"ullamco esse sit\",\n      \"updated_at\": \"qui in\"\n    },\n    \"user_id\": 22612255,\n    \"source_id\": 76253984,\n    \"source\": \"velit aliquip\",\n    \"contact\": {\n      \"id\": 25831341,\n      \"owner_id\": -40230973,\n      \"color\": \"consectetur veniam\",\n      \"first_name\": \"culpa amet id dolor tempor\",\n      \"last_name\": \"sint reprehenderit magna laborum\",\n      \"full_name\": \"magna cillum ea Duis do\",\n      \"email\": \"in nostrud dolore proident\",\n      \"photo_url\": \"consectetur anim velit sed aliqua\",\n      \"number\": \"dolor ullamco officia consequat\",\n      \"country\": \"s\",\n      \"country_calling_code\": \"officia irure ad consectetur\",\n      \"national_number\": \"ea magna do minim\",\n      \"typeted_number\": \"eu commodo veniam\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"nulla elit aliquip nostrud\",\n      \"opt_in_request_at\": \"te\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -51997989\n        },\n        {\n          \"number_id\": -73646333\n        }\n      ],\n      \"opt_in_at\": \"commodo consequat minim\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -7601430,\n          \"number_id\": -4994536,\n          \"name\": \"veniam dolore exercitation\",\n          \"disabled\": false,\n          \"timestamp\": \"velit non nisi sit Ut\",\n          \"value\": false\n        },\n        {\n          \"id\": -83112096,\n          \"number_id\": 42196051,\n          \"name\": \"elit incididunt\",\n          \"disabled\": true,\n          \"timestamp\": \"labore mollit commodo anim\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"quis proident\",\n      \"updated_at\": \"in ut\",\n      \"integration_vendor_id\": -55376656,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 17155647,\n          \"key\": \"do Duis\",\n          \"name\": \"anim non esse\",\n          \"photo_url\": \"in culpa\"\n        },\n        {\n          \"id\": -66914616,\n          \"key\": \"qui ullamco\",\n          \"name\": \"nulla cillum voluptate ut\",\n          \"photo_url\": \"est\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -91875087,\n          \"custom_field_id\": 51678841,\n          \"contact_id\": -33000727,\n          \"field_key\": \"quis\",\n          \"organization_id\": 96297309,\n          \"text\": \"ullamco conseq\",\n          \"number\": 68624994,\n          \"date\": \"commodo amet qui laboris\",\n          \"created_at\": \"ex\",\n          \"updated_at\": \"elit et ipsum\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -7563290,\n          \"custom_field_id\": -61333906,\n          \"contact_id\": -92679447,\n          \"field_key\": \"eu\",\n          \"organization_id\": -82868739,\n          \"text\": \"laborum Excepteur esse cillum\",\n          \"number\": -616263,\n          \"date\": \"commodo nostrud sit\",\n          \"created_at\": \"qui minim\",\n          \"updated_at\": \"Lorem magna adipisicing\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -49299474,\n          \"name\": \"ex dolor magna ad\",\n          \"label\": \"pariatur dolor exercitation ex\",\n          \"created_at\": \"amet deserunt sit\"\n        },\n        {\n          \"id\": 35639229,\n          \"name\": \"velit minim\",\n          \"label\": \"cupidatat in proident\",\n          \"created_at\": \"cupidatat fugiat\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3058079,\n          \"text\": \"tempor am\",\n          \"created_at\": \"Ut ad\",\n          \"updated_at\": \"dolore\"\n        },\n        {\n          \"id\": -77131510,\n          \"text\": \"aliquip ut quis\",\n          \"created_at\": \"non\",\n          \"updated_at\": \"ea nulla consectetur\"\n        }\n      ]\n    },\n    \"user\": {\n      \"id\": 54390044,\n      \"email\": \"eu amet el\",\n      \"first_name\": \"sint non reprehenderit fugiat\",\n      \"last_name\": \"proident nisi ut in\",\n      \"full_name\": \"incididunt veniam cupidatat\",\n      \"role\": \"voluptate sed in\",\n      \"inbox_id\": 99372188,\n      \"organization_id\": 80769804,\n      \"photo_url\": \"adipisicing aute eiusmod\",\n      \"unread\": 29142223,\n      \"number\": \"mollit pariatur enim et id\",\n      \"formatted_number\": \"do eu deserunt cillum\",\n      \"organizationNumber\": [\n        {\n          \"id\": 19414597,\n          \"country\": \"Lorem officia\",\n          \"number\": \"anim nisi laborum\",\n          \"formatted_number\": \"ea consectetur Excepteur\",\n          \"mms\": \"do anim\"\n        },\n        {\n          \"id\": 57321019,\n          \"country\": \"proident irure\",\n          \"number\": \"commodo sit\",\n          \"formatted_number\": \"id sed mollit sit reprehenderit\",\n          \"mms\": \"exercitation et in aliqua\"\n        }\n      ],\n      \"userPermissions\": [\n        \"ullamco reprehenderit esse cillum\",\n        \"eu ex Lorem Ut\"\n      ]\n    },\n    \"pending_mentions\": [\n      {\n        \"id\": -13676596,\n        \"email\": \"sit adipisicing mollit\",\n        \"first_name\": \"cupidatat ex\",\n        \"last_name\": \"elit mollit\",\n        \"full_name\": \"ut magna\",\n        \"role\": \"occaecat exercitation ullamco dolor\",\n        \"inbox_id\": -92416633,\n        \"organization_id\": -65913181,\n        \"photo_url\": \"ea aliquip\",\n        \"unread\": -9474554,\n        \"number\": \"fugiat\",\n        \"formatted_number\": \"Duis et exercitation proident\",\n        \"organizationNumber\": [\n          {\n            \"id\": 37612783,\n            \"country\": \"et id aute\",\n            \"number\": \"laboris volup\",\n            \"formatted_number\": \"enim\",\n            \"mms\": \"commodo in\"\n          },\n          {\n            \"id\": -31156708,\n            \"country\": \"in laboris qui Lorem\",\n            \"number\": \"magna\",\n            \"formatted_number\": \"sed\",\n            \"mms\": \"sed adipisicing ipsum amet incididunt\"\n          }\n        ],\n        \"userPermissions\": [\n          \"sint\",\n          \"deserunt aliqua\"\n        ]\n      },\n      {\n        \"id\": 9091141,\n        \"email\": \"non dolor amet\",\n        \"first_name\": \"voluptate\",\n        \"last_name\": \"elit labore incididunt\",\n        \"full_name\": \"qui\",\n        \"role\": \"cupidatat ullamco eiusmod dolore enim\",\n        \"inbox_id\": 81737429,\n        \"organization_id\": -41263568,\n        \"photo_url\": \"aliquip \",\n        \"unread\": -84739729,\n        \"number\": \"eiusmod Duis\",\n        \"formatted_number\": \"dolore \",\n        \"organizationNumber\": [\n          {\n            \"id\": -86023305,\n            \"country\": \"in\",\n            \"number\": \"enim nulla pariatur do\",\n            \"formatted_number\": \"non repre\",\n            \"mms\": \"dolore Excepteur laborum\"\n          },\n          {\n            \"id\": -32426454,\n            \"country\": \"sit velit proident\",\n            \"number\": \"id ut adipisicing aliquip\",\n            \"formatted_number\": \"consect\",\n            \"mms\": \"reprehenderit et\"\n          }\n        ],\n        \"userPermissions\": [\n          \"Excepteur dolor Lor\",\n          \"sed Ut\"\n        ]\n      }\n    ],\n    \"media\": [\n      {\n        \"id\": -38453943,\n        \"content_type\": \"nostrud\",\n        \"source\": \"officia in in quis\",\n        \"source_short\": \"occaeca\",\n        \"created_at\": \"Lorem ipsum cupidatat incididunt\"\n      },\n      {\n        \"id\": 97616773,\n        \"content_type\": \"exercitation amet tempor consequat dolore\",\n        \"source\": \"qui sint\",\n        \"source_short\": \"sed la\",\n        \"created_at\": \"ad exercitation tempor minim nulla\"\n      }\n    ]\n  }\n]"}],"_postman_id":"79cef0cd-06e4-4e73-8f2f-c7014d332ecb"},{"name":"Get user conversation","id":"9d7c49f1-8823-4fbd-bb04-824885a16667","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages/:conversation?limit=-22811882&before=65893348&grouped_response=false","description":"<p>This API endpoint returns a paginated list of current user conversations including the latest messages. Will return most recent messages first. <br /><br />The request is used to fetch thread message information by <code>conversation_id</code>.</p>\n","urlObject":{"path":["messages",":conversation"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Limit</p>\n","type":"text/plain"},"key":"limit","value":"-22811882"},{"description":{"content":"<p>Where message id is less than</p>\n","type":"text/plain"},"key":"before","value":"65893348"},{"description":{"content":"<p>Is return grouped response</p>\n","type":"text/plain"},"key":"grouped_response","value":"false"}],"variable":[{"id":"fe0182f6-57b3-41fd-9909-e4ec5d6539a5","description":{"content":"<p>(Required) ID of conversation</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"conversation"}]}},"response":[{"id":"ae9183b4-69aa-42ff-b8a7-023335592704","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:conversation?limit=-22811882&before=65893348&grouped_response=true","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":conversation"],"query":[{"key":"limit","value":"-22811882"},{"key":"before","value":"65893348"},{"key":"grouped_response","value":"true"}],"variable":[{"key":"conversation","value":"-46945205","description":"(Required) ID of conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 75553107,\n    \"conversation_id\": 44589606,\n    \"automated\": false,\n    \"status\": \"consequat ut laboris nostrud\",\n    \"type\": \"laboris\",\n    \"mms_status\": \"esse non qui anim commodo\",\n    \"body\": \"reprehenderit occaecat sed\",\n    \"body_raw\": \"dolore aliquip officia\",\n    \"has_tagging\": true,\n    \"icon\": \"sit velit consequat\",\n    \"received_at\": \"Ut aliquip\",\n    \"send_at\": \"ea enim\",\n    \"queued_at\": \"ut tempor in est Lorem\",\n    \"sent_at\": \"mollit nostrud consequat sunt\",\n    \"delivered_at\": \"esse nulla nisi\",\n    \"failed_at\": \"occaecat ut\",\n    \"failed_reason\": \"in nisi fugiat\",\n    \"created_at\": \"ipsum et\",\n    \"stop_on_response\": true,\n    \"record\": {\n      \"id\": 19922617,\n      \"message_id\": 35431026,\n      \"sid\": \"nulla eiusmod\",\n      \"record_id\": \"aliqua ad aute\",\n      \"duration\": -56162112,\n      \"status\": \"Ut\",\n      \"url\": \"do\",\n      \"is_voicemail\": false,\n      \"created_at\": \"laborum ut Lorem amet veniam\",\n      \"updated_at\": \"aliqua ea commodo deserunt\"\n    },\n    \"user_id\": -72894126,\n    \"source_id\": -22199754,\n    \"source\": \"Excepteur non\",\n    \"contact\": {\n      \"id\": 6377298,\n      \"owner_id\": -76613515,\n      \"color\": \"dolor aute\",\n      \"first_name\": \"elit labore nulla\",\n      \"last_name\": \"incididunt ut in est pariatur\",\n      \"full_name\": \"commodo sed dolor\",\n      \"email\": \"labore voluptate Ut\",\n      \"photo_url\": \"dolor minim eu tempor\",\n      \"number\": \"nulla elit temp\",\n      \"country\": \"exercitation velit\",\n      \"country_calling_code\": \"officia proident sit aliqua\",\n      \"national_number\": \"ullamco proident\",\n      \"typeted_number\": \"Excepteur enim nulla culpa\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"quis\",\n      \"opt_in_request_at\": \"dolore anim\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 18495245\n        },\n        {\n          \"number_id\": -14355354\n        }\n      ],\n      \"opt_in_at\": \"sunt\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -4060950,\n          \"number_id\": -98702053,\n          \"name\": \"Duis dolore\",\n          \"disabled\": true,\n          \"timestamp\": \"eiusmod\",\n          \"value\": false\n        },\n        {\n          \"id\": -84142728,\n          \"number_id\": -30431253,\n          \"name\": \"mollit nulla al\",\n          \"disabled\": false,\n          \"timestamp\": \"Ut dolor\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"cil\",\n      \"updated_at\": \"sunt esse id dolo\",\n      \"integration_vendor_id\": -15929749,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -5353513,\n          \"key\": \"ad sit non\",\n          \"name\": \"tempor\",\n          \"photo_url\": \"nisi in aute in dolore\"\n        },\n        {\n          \"id\": 37753786,\n          \"key\": \"elit eiusmod\",\n          \"name\": \"laboris\",\n          \"photo_url\": \"nostrud\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -65349264,\n          \"custom_field_id\": -99623380,\n          \"contact_id\": -52788908,\n          \"field_key\": \"consectetur magna deserunt ut\",\n          \"organization_id\": -67386526,\n          \"text\": \"esse ut id veniam\",\n          \"number\": -68242981,\n          \"date\": \"qui enim officia\",\n          \"created_at\": \"incididunt\",\n          \"updated_at\": \"quis qui in c\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 75257821,\n          \"custom_field_id\": 82354475,\n          \"contact_id\": -10177506,\n          \"field_key\": \"laborum eiusmod fugiat\",\n          \"organization_id\": 76089518,\n          \"text\": \"Duis aute \",\n          \"number\": -76134365,\n          \"date\": \"Duis commodo veniam\",\n          \"created_at\": \"Duis ad ut pariatur dolore\",\n          \"updated_at\": \"consectetur Duis proident ex\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -47064806,\n          \"name\": \"s\",\n          \"label\": \"cupidatat proident nisi\",\n          \"created_at\": \"nostrud magna eiusmod\"\n        },\n        {\n          \"id\": -54029135,\n          \"name\": \"enim c\",\n          \"label\": \"Excepteur consectetur qui qui\",\n          \"created_at\": \"velit ullamco\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -92166232,\n          \"text\": \"enim aute\",\n          \"created_at\": \"est ea\",\n          \"updated_at\": \"commodo ut reprehenderit dolor\"\n        },\n        {\n          \"id\": -79968630,\n          \"text\": \"venia\",\n          \"created_at\": \"sit\",\n          \"updated_at\": \"in\"\n        }\n      ]\n    },\n    \"user\": {\n      \"id\": 16305270,\n      \"email\": \"consecte\",\n      \"first_name\": \"nulla commodo\",\n      \"last_name\": \"exercitation enim ut eiusmod\",\n      \"full_name\": \"adipisicing incididunt sint\",\n      \"role\": \"aute reprehende\",\n      \"inbox_id\": 94923440,\n      \"organization_id\": -98424672,\n      \"photo_url\": \"amet cupidatat laborum\",\n      \"unread\": 67604163,\n      \"number\": \"ullamco non minim Excepteur culpa\",\n      \"formatted_number\": \"dolor\",\n      \"organizationNumber\": [\n        {\n          \"id\": 27486777,\n          \"country\": \"est anim\",\n          \"number\": \"consequat laboris dolor\",\n          \"formatted_number\": \"minim pariatur enim\",\n          \"mms\": \"Lorem deserunt Duis sint\"\n        },\n        {\n          \"id\": -1487747,\n          \"country\": \"ullamco dolor\",\n          \"number\": \"incididunt\",\n          \"formatted_number\": \"dolor do Duis\",\n          \"mms\": \"eu\"\n        }\n      ],\n      \"userPermissions\": [\n        \"laboris minim\",\n        \"veniam et\"\n      ]\n    },\n    \"pending_mentions\": [\n      {\n        \"id\": 25912443,\n        \"email\": \"ut e\",\n        \"first_name\": \"ullamco et cupidatat\",\n        \"last_name\": \"exercitation dolore velit tempor\",\n        \"full_name\": \"adipisicing ex mollit\",\n        \"role\": \"nulla\",\n        \"inbox_id\": 86281885,\n        \"organization_id\": 35788264,\n        \"photo_url\": \"cupidatat exercitation\",\n        \"unread\": -42215402,\n        \"number\": \"culpa id ea ul\",\n        \"formatted_number\": \"do fugiat dolore aute id\",\n        \"organizationNumber\": [\n          {\n            \"id\": 79122038,\n            \"country\": \"ipsum non aute\",\n            \"number\": \"sint ut pariatur\",\n            \"formatted_number\": \"qui Lorem id sint\",\n            \"mms\": \"nulla deserunt veniam dolore\"\n          },\n          {\n            \"id\": -46711595,\n            \"country\": \"non do ad exercitation enim\",\n            \"number\": \"ipsum quis esse qui aliquip\",\n            \"formatted_number\": \"qui labore sit\",\n            \"mms\": \"laborum aliqua consequat\"\n          }\n        ],\n        \"userPermissions\": [\n          \"non consectetur est cillum\",\n          \"amet nisi pariatur\"\n        ]\n      },\n      {\n        \"id\": -12713288,\n        \"email\": \"cillum\",\n        \"first_name\": \"occaecat ex\",\n        \"last_name\": \"dolore anim occaecat Ut \",\n        \"full_name\": \"laboris deser\",\n        \"role\": \"amet\",\n        \"inbox_id\": 68589746,\n        \"organization_id\": 35521166,\n        \"photo_url\": \"eiusmod nisi dolor commodo\",\n        \"unread\": -86629415,\n        \"number\": \"aliqua consequat\",\n        \"formatted_number\": \"do cupidatat est\",\n        \"organizationNumber\": [\n          {\n            \"id\": 15818242,\n            \"country\": \"nulla irure anim\",\n            \"number\": \"ex irure\",\n            \"formatted_number\": \"d\",\n            \"mms\": \"officia laboris est aliqu\"\n          },\n          {\n            \"id\": 63349133,\n            \"country\": \"ipsum adipisicing esse\",\n            \"number\": \"nisi velit\",\n            \"formatted_number\": \"sed fugiat\",\n            \"mms\": \"laboris pariatur amet velit\"\n          }\n        ],\n        \"userPermissions\": [\n          \"ipsum ut\",\n          \"velit proident quis occaecat\"\n        ]\n      }\n    ],\n    \"media\": [\n      {\n        \"id\": -72936924,\n        \"content_type\": \"consectetur reprehenderit ir\",\n        \"source\": \"non nulla incididunt consect\",\n        \"source_short\": \"dolor ea\",\n        \"created_at\": \"elit ad consequat\"\n      },\n      {\n        \"id\": 11474746,\n        \"content_type\": \"consectetur tempor esse\",\n        \"source\": \"commodo elit voluptate\",\n        \"source_short\": \"proident ad velit ma\",\n        \"created_at\": \"anim incididunt ea sed et\"\n      }\n    ]\n  },\n  {\n    \"id\": 41898518,\n    \"conversation_id\": 85510362,\n    \"automated\": false,\n    \"status\": \"proident laborum sunt e\",\n    \"type\": \"labore non Excepteur\",\n    \"mms_status\": \"veniam velit officia sit\",\n    \"body\": \"ad sit irure\",\n    \"body_raw\": \"ipsum aliqua incididunt quis in\",\n    \"has_tagging\": false,\n    \"icon\": \"esse sed\",\n    \"received_at\": \"minim elit adipisicing Excepteur\",\n    \"send_at\": \"qui anim pariatur mollit non\",\n    \"queued_at\": \"consectetur consequat\",\n    \"sent_at\": \"fugiat voluptate occaecat\",\n    \"delivered_at\": \"laborum\",\n    \"failed_at\": \"ut laborum occaecat\",\n    \"failed_reason\": \"sint\",\n    \"created_at\": \"ullamco \",\n    \"stop_on_response\": true,\n    \"record\": {\n      \"id\": -24462878,\n      \"message_id\": 33060813,\n      \"sid\": \"reprehenderit nisi\",\n      \"record_id\": \"ex\",\n      \"duration\": 24062012,\n      \"status\": \"aliquip adipisicing nisi sint\",\n      \"url\": \"sit est dolor pariatur\",\n      \"is_voicemail\": true,\n      \"created_at\": \"ullamco esse sit\",\n      \"updated_at\": \"qui in\"\n    },\n    \"user_id\": 22612255,\n    \"source_id\": 76253984,\n    \"source\": \"velit aliquip\",\n    \"contact\": {\n      \"id\": 25831341,\n      \"owner_id\": -40230973,\n      \"color\": \"consectetur veniam\",\n      \"first_name\": \"culpa amet id dolor tempor\",\n      \"last_name\": \"sint reprehenderit magna laborum\",\n      \"full_name\": \"magna cillum ea Duis do\",\n      \"email\": \"in nostrud dolore proident\",\n      \"photo_url\": \"consectetur anim velit sed aliqua\",\n      \"number\": \"dolor ullamco officia consequat\",\n      \"country\": \"s\",\n      \"country_calling_code\": \"officia irure ad consectetur\",\n      \"national_number\": \"ea magna do minim\",\n      \"typeted_number\": \"eu commodo veniam\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"nulla elit aliquip nostrud\",\n      \"opt_in_request_at\": \"te\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -51997989\n        },\n        {\n          \"number_id\": -73646333\n        }\n      ],\n      \"opt_in_at\": \"commodo consequat minim\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -7601430,\n          \"number_id\": -4994536,\n          \"name\": \"veniam dolore exercitation\",\n          \"disabled\": false,\n          \"timestamp\": \"velit non nisi sit Ut\",\n          \"value\": false\n        },\n        {\n          \"id\": -83112096,\n          \"number_id\": 42196051,\n          \"name\": \"elit incididunt\",\n          \"disabled\": true,\n          \"timestamp\": \"labore mollit commodo anim\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"quis proident\",\n      \"updated_at\": \"in ut\",\n      \"integration_vendor_id\": -55376656,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 17155647,\n          \"key\": \"do Duis\",\n          \"name\": \"anim non esse\",\n          \"photo_url\": \"in culpa\"\n        },\n        {\n          \"id\": -66914616,\n          \"key\": \"qui ullamco\",\n          \"name\": \"nulla cillum voluptate ut\",\n          \"photo_url\": \"est\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -91875087,\n          \"custom_field_id\": 51678841,\n          \"contact_id\": -33000727,\n          \"field_key\": \"quis\",\n          \"organization_id\": 96297309,\n          \"text\": \"ullamco conseq\",\n          \"number\": 68624994,\n          \"date\": \"commodo amet qui laboris\",\n          \"created_at\": \"ex\",\n          \"updated_at\": \"elit et ipsum\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": -7563290,\n          \"custom_field_id\": -61333906,\n          \"contact_id\": -92679447,\n          \"field_key\": \"eu\",\n          \"organization_id\": -82868739,\n          \"text\": \"laborum Excepteur esse cillum\",\n          \"number\": -616263,\n          \"date\": \"commodo nostrud sit\",\n          \"created_at\": \"qui minim\",\n          \"updated_at\": \"Lorem magna adipisicing\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -49299474,\n          \"name\": \"ex dolor magna ad\",\n          \"label\": \"pariatur dolor exercitation ex\",\n          \"created_at\": \"amet deserunt sit\"\n        },\n        {\n          \"id\": 35639229,\n          \"name\": \"velit minim\",\n          \"label\": \"cupidatat in proident\",\n          \"created_at\": \"cupidatat fugiat\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3058079,\n          \"text\": \"tempor am\",\n          \"created_at\": \"Ut ad\",\n          \"updated_at\": \"dolore\"\n        },\n        {\n          \"id\": -77131510,\n          \"text\": \"aliquip ut quis\",\n          \"created_at\": \"non\",\n          \"updated_at\": \"ea nulla consectetur\"\n        }\n      ]\n    },\n    \"user\": {\n      \"id\": 54390044,\n      \"email\": \"eu amet el\",\n      \"first_name\": \"sint non reprehenderit fugiat\",\n      \"last_name\": \"proident nisi ut in\",\n      \"full_name\": \"incididunt veniam cupidatat\",\n      \"role\": \"voluptate sed in\",\n      \"inbox_id\": 99372188,\n      \"organization_id\": 80769804,\n      \"photo_url\": \"adipisicing aute eiusmod\",\n      \"unread\": 29142223,\n      \"number\": \"mollit pariatur enim et id\",\n      \"formatted_number\": \"do eu deserunt cillum\",\n      \"organizationNumber\": [\n        {\n          \"id\": 19414597,\n          \"country\": \"Lorem officia\",\n          \"number\": \"anim nisi laborum\",\n          \"formatted_number\": \"ea consectetur Excepteur\",\n          \"mms\": \"do anim\"\n        },\n        {\n          \"id\": 57321019,\n          \"country\": \"proident irure\",\n          \"number\": \"commodo sit\",\n          \"formatted_number\": \"id sed mollit sit reprehenderit\",\n          \"mms\": \"exercitation et in aliqua\"\n        }\n      ],\n      \"userPermissions\": [\n        \"ullamco reprehenderit esse cillum\",\n        \"eu ex Lorem Ut\"\n      ]\n    },\n    \"pending_mentions\": [\n      {\n        \"id\": -13676596,\n        \"email\": \"sit adipisicing mollit\",\n        \"first_name\": \"cupidatat ex\",\n        \"last_name\": \"elit mollit\",\n        \"full_name\": \"ut magna\",\n        \"role\": \"occaecat exercitation ullamco dolor\",\n        \"inbox_id\": -92416633,\n        \"organization_id\": -65913181,\n        \"photo_url\": \"ea aliquip\",\n        \"unread\": -9474554,\n        \"number\": \"fugiat\",\n        \"formatted_number\": \"Duis et exercitation proident\",\n        \"organizationNumber\": [\n          {\n            \"id\": 37612783,\n            \"country\": \"et id aute\",\n            \"number\": \"laboris volup\",\n            \"formatted_number\": \"enim\",\n            \"mms\": \"commodo in\"\n          },\n          {\n            \"id\": -31156708,\n            \"country\": \"in laboris qui Lorem\",\n            \"number\": \"magna\",\n            \"formatted_number\": \"sed\",\n            \"mms\": \"sed adipisicing ipsum amet incididunt\"\n          }\n        ],\n        \"userPermissions\": [\n          \"sint\",\n          \"deserunt aliqua\"\n        ]\n      },\n      {\n        \"id\": 9091141,\n        \"email\": \"non dolor amet\",\n        \"first_name\": \"voluptate\",\n        \"last_name\": \"elit labore incididunt\",\n        \"full_name\": \"qui\",\n        \"role\": \"cupidatat ullamco eiusmod dolore enim\",\n        \"inbox_id\": 81737429,\n        \"organization_id\": -41263568,\n        \"photo_url\": \"aliquip \",\n        \"unread\": -84739729,\n        \"number\": \"eiusmod Duis\",\n        \"formatted_number\": \"dolore \",\n        \"organizationNumber\": [\n          {\n            \"id\": -86023305,\n            \"country\": \"in\",\n            \"number\": \"enim nulla pariatur do\",\n            \"formatted_number\": \"non repre\",\n            \"mms\": \"dolore Excepteur laborum\"\n          },\n          {\n            \"id\": -32426454,\n            \"country\": \"sit velit proident\",\n            \"number\": \"id ut adipisicing aliquip\",\n            \"formatted_number\": \"consect\",\n            \"mms\": \"reprehenderit et\"\n          }\n        ],\n        \"userPermissions\": [\n          \"Excepteur dolor Lor\",\n          \"sed Ut\"\n        ]\n      }\n    ],\n    \"media\": [\n      {\n        \"id\": -38453943,\n        \"content_type\": \"nostrud\",\n        \"source\": \"officia in in quis\",\n        \"source_short\": \"occaeca\",\n        \"created_at\": \"Lorem ipsum cupidatat incididunt\"\n      },\n      {\n        \"id\": 97616773,\n        \"content_type\": \"exercitation amet tempor consequat dolore\",\n        \"source\": \"qui sint\",\n        \"source_short\": \"sed la\",\n        \"created_at\": \"ad exercitation tempor minim nulla\"\n      }\n    ]\n  }\n]"}],"_postman_id":"9d7c49f1-8823-4fbd-bb04-824885a16667"},{"name":"Send SMS","id":"6918cbb5-eef8-4048-bc34-3c4fc58b1f58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages/:conversation?message=laborum&send_at=2020-12-01&media_url=","description":"<p>Send SMS message via API. This API endpoint allows for sending an SMS message from a phone number that belongs to an authenticated account. <br /><br />Messages are sent on behalf of a user, may include attachments. Actual links included in text messages will be sent as clickable hyperlinks.</p>\n","urlObject":{"path":["messages",":conversation"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Message</p>\n","type":"text/plain"},"key":"message","value":"laborum"},{"description":{"content":"<p>Send At</p>\n","type":"text/plain"},"key":"send_at","value":"2020-12-01"},{"description":{"content":"<p>Url for media</p>\n","type":"text/plain"},"key":"media_url","value":""}],"variable":[{"id":"3a9488e3-84e4-40e1-b654-c9897c3e2e96","description":{"content":"<p>(Required) Conversation id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"conversation"}]}},"response":[{"id":"1f75ed9b-ba3f-41c4-8f1b-1a9825f5acac","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:conversation?message=laborum&send_at=2020-12-01&media_url=","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":conversation"],"query":[{"key":"message","value":"laborum"},{"key":"send_at","value":"2020-12-01"},{"key":"media_url","value":""}],"variable":[{"key":"conversation","value":"27950450","description":"(Required) Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -96488284,\n  \"conversation_id\": -58481741,\n  \"automated\": true,\n  \"status\": \"enim nisi eu\",\n  \"type\": \"ut\",\n  \"mms_status\": \"aute ullamco culpa pariatur\",\n  \"body\": \"elit deserunt\",\n  \"body_raw\": \"officia\",\n  \"has_tagging\": false,\n  \"icon\": \"consequat in\",\n  \"received_at\": \"non\",\n  \"send_at\": \"esse adipisicing ipsum in laborum\",\n  \"queued_at\": \"minim incididunt\",\n  \"sent_at\": \"esse Lorem laboris\",\n  \"delivered_at\": \"officia aute pariatur\",\n  \"failed_at\": \"irure non laboris incididunt\",\n  \"failed_reason\": \"consequat consectetur fugiat culpa\",\n  \"created_at\": \"aliqua pariatur in\",\n  \"stop_on_response\": false,\n  \"record\": {\n    \"id\": -59453435,\n    \"message_id\": -96832515,\n    \"sid\": \"ea enim\",\n    \"record_id\": \"anim ipsum do\",\n    \"duration\": 37974802,\n    \"status\": \"proident do nulla d\",\n    \"url\": \"amet fugiat ut reprehenderit\",\n    \"is_voicemail\": false,\n    \"created_at\": \"enim eiusmod\",\n    \"updated_at\": \"velit aliqua reprehenderit\"\n  },\n  \"user_id\": -12119061,\n  \"source_id\": -28984223,\n  \"source\": \"ut\",\n  \"contact\": {\n    \"id\": 91088116,\n    \"owner_id\": -60704738,\n    \"color\": \"commodo cillum\",\n    \"first_name\": \"Lorem aute fugiat\",\n    \"last_name\": \"velit sint anim\",\n    \"full_name\": \"Duis ut id\",\n    \"email\": \"ex\",\n    \"photo_url\": \"culpa\",\n    \"number\": \"ut consectetur ullamco dolor\",\n    \"country\": \"do\",\n    \"country_calling_code\": \"consequat non deserunt culpa\",\n    \"national_number\": \"aute eiusmod\",\n    \"typeted_number\": \"pariatur\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"aute consectetur proident\",\n    \"opt_in_request_at\": \"occaecat mollit\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -30955482\n      },\n      {\n        \"number_id\": 22700103\n      }\n    ],\n    \"opt_in_at\": \"sint exercitation veniam sed nisi\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -8612238,\n        \"number_id\": 96272669,\n        \"name\": \"laboris sit fugiat pari\",\n        \"disabled\": true,\n        \"timestamp\": \"ut quis do Lorem\",\n        \"value\": true\n      },\n      {\n        \"id\": -85212453,\n        \"number_id\": 12989392,\n        \"name\": \"in et ut\",\n        \"disabled\": true,\n        \"timestamp\": \"id incididunt eiusmod cillum\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"minim labore dolore aliqua\",\n    \"updated_at\": \"laboris sint\",\n    \"integration_vendor_id\": 52476108,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": 99060454,\n        \"key\": \"in anim elit\",\n        \"name\": \"exercitation\",\n        \"photo_url\": \"dolore irure\"\n      },\n      {\n        \"id\": 76204003,\n        \"key\": \"ex reprehenderit amet\",\n        \"name\": \"deserunt\",\n        \"photo_url\": \"velit minim\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 60715432,\n        \"custom_field_id\": 48276386,\n        \"contact_id\": 39196079,\n        \"field_key\": \"adipisicing proident\",\n        \"organization_id\": -75259989,\n        \"text\": \"dolore esse laborum incididunt\",\n        \"number\": -46579899,\n        \"date\": \"Excepteur non ipsum amet\",\n        \"created_at\": \"deserun\",\n        \"updated_at\": \"sint non officia sit\",\n        \"value\": [\n          {\n            \"type\": \"Ut ex amet\",\n            \"value\": \"deserunt non\"\n          },\n          {\n            \"type\": \"laborum enim Ut\",\n            \"value\": \"Lorem commodo labore\"\n          }\n        ]\n      },\n      {\n        \"id\": -70709235,\n        \"custom_field_id\": 26590191,\n        \"contact_id\": -46631813,\n        \"field_key\": \"enim Ut nisi\",\n        \"organization_id\": -23011331,\n        \"text\": \"dolor consequat sint Ut\",\n        \"number\": -90250801,\n        \"date\": \"magna proident\",\n        \"created_at\": \"n\",\n        \"updated_at\": \"Lorem Duis\",\n        \"value\": [\n          {\n            \"type\": \"id Ut ex aliquip\",\n            \"value\": \"pariatur fugiat laboris\"\n          },\n          {\n            \"type\": \"do\",\n            \"value\": \"Ut ullamco ea\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 20232062,\n        \"name\": \"ad sunt\",\n        \"label\": \"nulla sed ut\",\n        \"created_at\": \"tempor Lorem culpa ut ullamco\"\n      },\n      {\n        \"id\": -38046060,\n        \"name\": \"dolore quis\",\n        \"label\": \"qui aliqua magna voluptate\",\n        \"created_at\": \"ipsum sint ex occaecat eu\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -214948,\n        \"text\": \"reprehenderit mollit\",\n        \"created_at\": \"aute nisi si\",\n        \"updated_at\": \"esse est Lorem\"\n      },\n      {\n        \"id\": -31159362,\n        \"text\": \"consequat magna aute qui\",\n        \"created_at\": \"eu est \",\n        \"updated_at\": \"tempor\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 38838309,\n    \"email\": \"eiusmod nisi\",\n    \"first_name\": \"nostrud incididunt qu\",\n    \"last_name\": \"elit ipsum\",\n    \"full_name\": \"dolore consectetur dolor Excepteur\",\n    \"role\": \"in enim in\",\n    \"inbox_id\": 51715230,\n    \"organization_id\": 71561898,\n    \"photo_url\": \"velit deserunt sunt dolore\",\n    \"unread\": -50128554,\n    \"number\": \"in Duis ullamco dolore sint\",\n    \"formatted_number\": \"esse et\",\n    \"organizationNumber\": [\n      {\n        \"id\": -86044635,\n        \"country\": \"proident reprehenderit\",\n        \"number\": \"do nisi id\",\n        \"formatted_number\": \"ipsum ut id in\",\n        \"mms\": \"laboris proident\"\n      },\n      {\n        \"id\": 9395009,\n        \"country\": \"est ea\",\n        \"number\": \"anim\",\n        \"formatted_number\": \"incididunt Ut nostrud\",\n        \"mms\": \"tempor labore adipisicing est\"\n      }\n    ],\n    \"userPermissions\": [\n      \"anim ut elit\",\n      \"deserunt\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": -3076559,\n      \"email\": \"dolor fugiat\",\n      \"first_name\": \"occaecat fug\",\n      \"last_name\": \"in anim\",\n      \"full_name\": \"eiusmod culpa\",\n      \"role\": \"officia Lo\",\n      \"inbox_id\": 95816824,\n      \"organization_id\": -99869044,\n      \"photo_url\": \"ea\",\n      \"unread\": -10324878,\n      \"number\": \"sunt\",\n      \"formatted_number\": \"aliqua\",\n      \"organizationNumber\": [\n        {\n          \"id\": 60919685,\n          \"country\": \"ad ut dolor ut ipsum\",\n          \"number\": \"sint eu ea\",\n          \"formatted_number\": \"voluptate dolor\",\n          \"mms\": \"Duis sit consequat enim \"\n        },\n        {\n          \"id\": -87539046,\n          \"country\": \"irure\",\n          \"number\": \"cupidatat nisi pariatur\",\n          \"formatted_number\": \"aliqua fugiat et\",\n          \"mms\": \"aliquip aliqua voluptate anim\"\n        }\n      ],\n      \"userPermissions\": [\n        \"eu ipsum\",\n        \"aute cupidat\"\n      ]\n    },\n    {\n      \"id\": -25127541,\n      \"email\": \"aliquip incididunt qui deserunt cupidatat\",\n      \"first_name\": \"cupidatat\",\n      \"last_name\": \"dolore\",\n      \"full_name\": \"eu\",\n      \"role\": \"sit\",\n      \"inbox_id\": -2680336,\n      \"organization_id\": 23007616,\n      \"photo_url\": \"in\",\n      \"unread\": -41016453,\n      \"number\": \"ex exercitation commodo nulla\",\n      \"formatted_number\": \"anim ullamco enim ex\",\n      \"organizationNumber\": [\n        {\n          \"id\": -59261576,\n          \"country\": \"sed minim mollit\",\n          \"number\": \"Lorem cillum enim\",\n          \"formatted_number\": \"laboris esse ut nisi\",\n          \"mms\": \"deserunt exercitation non velit\"\n        },\n        {\n          \"id\": -41018011,\n          \"country\": \"Duis incididunt\",\n          \"number\": \"est ut tempor Ut\",\n          \"formatted_number\": \"officia commodo consectetur\",\n          \"mms\": \"ut ut culpa\"\n        }\n      ],\n      \"userPermissions\": [\n        \"minim\",\n        \"Lorem non dolore\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": -20432784,\n      \"content_type\": \"sed dolore laborum\",\n      \"source\": \"in fugiat veniam aliquip\",\n      \"source_short\": \"nisi quis laboris\",\n      \"created_at\": \"sunt in mollit\"\n    },\n    {\n      \"id\": 56623880,\n      \"content_type\": \"in culpa\",\n      \"source\": \"et eiusmod\",\n      \"source_short\": \"ullamco dolo\",\n      \"created_at\": \"commodo sint\"\n    }\n  ]\n}"}],"_postman_id":"6918cbb5-eef8-4048-bc34-3c4fc58b1f58"},{"name":"Retry to send media","id":"94e39b41-0482-43d0-8c62-f5f39e23c882","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages/:message/media/retry","description":"<p>Retry to send media</p>\n","urlObject":{"path":["messages",":message","media","retry"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"c6762532-e0d8-4a95-928b-b09f1148d9cf","description":{"content":"<p>(Required) The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"}]}},"response":[{"id":"e2fa0513-547f-4f45-b306-089ff74fe469","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:message/media/retry","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":message","media","retry"],"variable":[{"key":"message","value":"","description":"(Required) The ID of the Message"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Processing.\"\n}"},{"id":"d4217239-8ace-45d8-ba3e-d749745d17aa","name":"No media or media delivered","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:message/media/retry","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":message","media","retry"],"variable":[{"key":"message","value":"","description":"(Required) The ID of the Message"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"This action is unauthorized.\",\n  \"status\": 403\n}"}],"_postman_id":"94e39b41-0482-43d0-8c62-f5f39e23c882"},{"name":"Retry to send the message","id":"6f003933-f136-45f2-86a2-53890d13c050","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages/:message/retry","description":"<p>Retry to send the message</p>\n","urlObject":{"path":["messages",":message","retry"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"6c7cfdeb-4f97-4580-aa9d-6ef163e53cb8","description":{"content":"<p>(Required) The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"}]}},"response":[{"id":"6d9cce97-e24e-4d68-9f32-fdc4a49afe3a","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:message/retry","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":message","retry"],"variable":[{"key":"message","value":"","description":"(Required) The ID of the Message"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -96488284,\n  \"conversation_id\": -58481741,\n  \"automated\": true,\n  \"status\": \"enim nisi eu\",\n  \"type\": \"ut\",\n  \"mms_status\": \"aute ullamco culpa pariatur\",\n  \"body\": \"elit deserunt\",\n  \"body_raw\": \"officia\",\n  \"has_tagging\": false,\n  \"icon\": \"consequat in\",\n  \"received_at\": \"non\",\n  \"send_at\": \"esse adipisicing ipsum in laborum\",\n  \"queued_at\": \"minim incididunt\",\n  \"sent_at\": \"esse Lorem laboris\",\n  \"delivered_at\": \"officia aute pariatur\",\n  \"failed_at\": \"irure non laboris incididunt\",\n  \"failed_reason\": \"consequat consectetur fugiat culpa\",\n  \"created_at\": \"aliqua pariatur in\",\n  \"stop_on_response\": false,\n  \"record\": {\n    \"id\": -59453435,\n    \"message_id\": -96832515,\n    \"sid\": \"ea enim\",\n    \"record_id\": \"anim ipsum do\",\n    \"duration\": 37974802,\n    \"status\": \"proident do nulla d\",\n    \"url\": \"amet fugiat ut reprehenderit\",\n    \"is_voicemail\": false,\n    \"created_at\": \"enim eiusmod\",\n    \"updated_at\": \"velit aliqua reprehenderit\"\n  },\n  \"user_id\": -12119061,\n  \"source_id\": -28984223,\n  \"source\": \"ut\",\n  \"contact\": {\n    \"id\": 91088116,\n    \"owner_id\": -60704738,\n    \"color\": \"commodo cillum\",\n    \"first_name\": \"Lorem aute fugiat\",\n    \"last_name\": \"velit sint anim\",\n    \"full_name\": \"Duis ut id\",\n    \"email\": \"ex\",\n    \"photo_url\": \"culpa\",\n    \"number\": \"ut consectetur ullamco dolor\",\n    \"country\": \"do\",\n    \"country_calling_code\": \"consequat non deserunt culpa\",\n    \"national_number\": \"aute eiusmod\",\n    \"typeted_number\": \"pariatur\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"aute consectetur proident\",\n    \"opt_in_request_at\": \"occaecat mollit\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -30955482\n      },\n      {\n        \"number_id\": 22700103\n      }\n    ],\n    \"opt_in_at\": \"sint exercitation veniam sed nisi\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -8612238,\n        \"number_id\": 96272669,\n        \"name\": \"laboris sit fugiat pari\",\n        \"disabled\": true,\n        \"timestamp\": \"ut quis do Lorem\",\n        \"value\": true\n      },\n      {\n        \"id\": -85212453,\n        \"number_id\": 12989392,\n        \"name\": \"in et ut\",\n        \"disabled\": true,\n        \"timestamp\": \"id incididunt eiusmod cillum\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"minim labore dolore aliqua\",\n    \"updated_at\": \"laboris sint\",\n    \"integration_vendor_id\": 52476108,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": 99060454,\n        \"key\": \"in anim elit\",\n        \"name\": \"exercitation\",\n        \"photo_url\": \"dolore irure\"\n      },\n      {\n        \"id\": 76204003,\n        \"key\": \"ex reprehenderit amet\",\n        \"name\": \"deserunt\",\n        \"photo_url\": \"velit minim\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 60715432,\n        \"custom_field_id\": 48276386,\n        \"contact_id\": 39196079,\n        \"field_key\": \"adipisicing proident\",\n        \"organization_id\": -75259989,\n        \"text\": \"dolore esse laborum incididunt\",\n        \"number\": -46579899,\n        \"date\": \"Excepteur non ipsum amet\",\n        \"created_at\": \"deserun\",\n        \"updated_at\": \"sint non officia sit\",\n        \"value\": [\n          {\n            \"type\": \"Ut ex amet\",\n            \"value\": \"deserunt non\"\n          },\n          {\n            \"type\": \"laborum enim Ut\",\n            \"value\": \"Lorem commodo labore\"\n          }\n        ]\n      },\n      {\n        \"id\": -70709235,\n        \"custom_field_id\": 26590191,\n        \"contact_id\": -46631813,\n        \"field_key\": \"enim Ut nisi\",\n        \"organization_id\": -23011331,\n        \"text\": \"dolor consequat sint Ut\",\n        \"number\": -90250801,\n        \"date\": \"magna proident\",\n        \"created_at\": \"n\",\n        \"updated_at\": \"Lorem Duis\",\n        \"value\": [\n          {\n            \"type\": \"id Ut ex aliquip\",\n            \"value\": \"pariatur fugiat laboris\"\n          },\n          {\n            \"type\": \"do\",\n            \"value\": \"Ut ullamco ea\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 20232062,\n        \"name\": \"ad sunt\",\n        \"label\": \"nulla sed ut\",\n        \"created_at\": \"tempor Lorem culpa ut ullamco\"\n      },\n      {\n        \"id\": -38046060,\n        \"name\": \"dolore quis\",\n        \"label\": \"qui aliqua magna voluptate\",\n        \"created_at\": \"ipsum sint ex occaecat eu\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -214948,\n        \"text\": \"reprehenderit mollit\",\n        \"created_at\": \"aute nisi si\",\n        \"updated_at\": \"esse est Lorem\"\n      },\n      {\n        \"id\": -31159362,\n        \"text\": \"consequat magna aute qui\",\n        \"created_at\": \"eu est \",\n        \"updated_at\": \"tempor\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 38838309,\n    \"email\": \"eiusmod nisi\",\n    \"first_name\": \"nostrud incididunt qu\",\n    \"last_name\": \"elit ipsum\",\n    \"full_name\": \"dolore consectetur dolor Excepteur\",\n    \"role\": \"in enim in\",\n    \"inbox_id\": 51715230,\n    \"organization_id\": 71561898,\n    \"photo_url\": \"velit deserunt sunt dolore\",\n    \"unread\": -50128554,\n    \"number\": \"in Duis ullamco dolore sint\",\n    \"formatted_number\": \"esse et\",\n    \"organizationNumber\": [\n      {\n        \"id\": -86044635,\n        \"country\": \"proident reprehenderit\",\n        \"number\": \"do nisi id\",\n        \"formatted_number\": \"ipsum ut id in\",\n        \"mms\": \"laboris proident\"\n      },\n      {\n        \"id\": 9395009,\n        \"country\": \"est ea\",\n        \"number\": \"anim\",\n        \"formatted_number\": \"incididunt Ut nostrud\",\n        \"mms\": \"tempor labore adipisicing est\"\n      }\n    ],\n    \"userPermissions\": [\n      \"anim ut elit\",\n      \"deserunt\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": -3076559,\n      \"email\": \"dolor fugiat\",\n      \"first_name\": \"occaecat fug\",\n      \"last_name\": \"in anim\",\n      \"full_name\": \"eiusmod culpa\",\n      \"role\": \"officia Lo\",\n      \"inbox_id\": 95816824,\n      \"organization_id\": -99869044,\n      \"photo_url\": \"ea\",\n      \"unread\": -10324878,\n      \"number\": \"sunt\",\n      \"formatted_number\": \"aliqua\",\n      \"organizationNumber\": [\n        {\n          \"id\": 60919685,\n          \"country\": \"ad ut dolor ut ipsum\",\n          \"number\": \"sint eu ea\",\n          \"formatted_number\": \"voluptate dolor\",\n          \"mms\": \"Duis sit consequat enim \"\n        },\n        {\n          \"id\": -87539046,\n          \"country\": \"irure\",\n          \"number\": \"cupidatat nisi pariatur\",\n          \"formatted_number\": \"aliqua fugiat et\",\n          \"mms\": \"aliquip aliqua voluptate anim\"\n        }\n      ],\n      \"userPermissions\": [\n        \"eu ipsum\",\n        \"aute cupidat\"\n      ]\n    },\n    {\n      \"id\": -25127541,\n      \"email\": \"aliquip incididunt qui deserunt cupidatat\",\n      \"first_name\": \"cupidatat\",\n      \"last_name\": \"dolore\",\n      \"full_name\": \"eu\",\n      \"role\": \"sit\",\n      \"inbox_id\": -2680336,\n      \"organization_id\": 23007616,\n      \"photo_url\": \"in\",\n      \"unread\": -41016453,\n      \"number\": \"ex exercitation commodo nulla\",\n      \"formatted_number\": \"anim ullamco enim ex\",\n      \"organizationNumber\": [\n        {\n          \"id\": -59261576,\n          \"country\": \"sed minim mollit\",\n          \"number\": \"Lorem cillum enim\",\n          \"formatted_number\": \"laboris esse ut nisi\",\n          \"mms\": \"deserunt exercitation non velit\"\n        },\n        {\n          \"id\": -41018011,\n          \"country\": \"Duis incididunt\",\n          \"number\": \"est ut tempor Ut\",\n          \"formatted_number\": \"officia commodo consectetur\",\n          \"mms\": \"ut ut culpa\"\n        }\n      ],\n      \"userPermissions\": [\n        \"minim\",\n        \"Lorem non dolore\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": -20432784,\n      \"content_type\": \"sed dolore laborum\",\n      \"source\": \"in fugiat veniam aliquip\",\n      \"source_short\": \"nisi quis laboris\",\n      \"created_at\": \"sunt in mollit\"\n    },\n    {\n      \"id\": 56623880,\n      \"content_type\": \"in culpa\",\n      \"source\": \"et eiusmod\",\n      \"source_short\": \"ullamco dolo\",\n      \"created_at\": \"commodo sint\"\n    }\n  ]\n}"}],"_postman_id":"6f003933-f136-45f2-86a2-53890d13c050"},{"name":"Get scheduled message","id":"b2bcd11d-b891-44db-966a-6f1fa2fd6334","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages/scheduled?page=1&term=test","description":"<p>Get scheduled message by id</p>\n","urlObject":{"path":["messages","scheduled"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Search text</p>\n","type":"text/plain"},"key":"term","value":"test"}],"variable":[]}},"response":[{"id":"4a3e16d4-6b7c-48df-91b4-83ef59870e38","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/scheduled?page=1&term=test","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages","scheduled"],"query":[{"key":"page","value":"1"},{"key":"term","value":"test"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"current_page\": 1,\n  \"first_page_url\": \"https://url?page=1\",\n  \"last_page_url\": \"https://url?page=5\",\n  \"last_page\": 5,\n  \"per_page\": 10,\n  \"total\": 45\n}"},{"id":"436e8c96-b524-45a6-8e56-cc15c7e06162","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/scheduled?page=1&term=test","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages","scheduled"],"query":[{"key":"page","value":"1"},{"key":"term","value":"test"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b2bcd11d-b891-44db-966a-6f1fa2fd6334"},{"name":"Send SMS by number","id":"24be9fb0-3ddf-4730-bf15-8b648f8411c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages?number=+12025550018&team_id=1&message=laborum&send_at=2017-07-21T17:32:28Z&media_url[][url]=https://example.com/image.png&media_url[][url]=https://example.com/image.png","description":"<p>Using the given endpoint, you can send an SMS message via API by phone number. <br /><br />As a result, instead of team’s id and conversation’s id, it is allowed to indicate the user’s phone number in order to send them a message.</p>\n","urlObject":{"path":["messages"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Number</p>\n","type":"text/plain"},"key":"number","value":"+12025550018"},{"description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"key":"team_id","value":"1"},{"description":{"content":"<p>(Required) Message</p>\n","type":"text/plain"},"key":"message","value":"laborum"},{"description":{"content":"<p>Send At</p>\n","type":"text/plain"},"key":"send_at","value":"2017-07-21T17:32:28Z"},{"description":{"content":"<p>Url for media</p>\n","type":"text/plain"},"key":"media_url[][url]","value":"https://example.com/image.png"},{"description":{"content":"<p>Url for media</p>\n","type":"text/plain"},"key":"media_url[][url]","value":"https://example.com/image.png"}],"variable":[]}},"response":[{"id":"bf65c032-b14f-499a-9c30-46f4a13c6e2d","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages?number=+12025550018&team_id=1&message=laborum&send_at=2017-07-21T17:32:28Z&media_url[][url]=https://example.com/image.png&media_url[][url]=https://example.com/image.png","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages"],"query":[{"key":"number","value":"+12025550018"},{"key":"team_id","value":"1"},{"key":"message","value":"laborum"},{"key":"send_at","value":"2017-07-21T17:32:28Z"},{"key":"media_url[][url]","value":"https://example.com/image.png"},{"key":"media_url[][url]","value":"https://example.com/image.png"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -96488284,\n  \"conversation_id\": -58481741,\n  \"automated\": true,\n  \"status\": \"enim nisi eu\",\n  \"type\": \"ut\",\n  \"mms_status\": \"aute ullamco culpa pariatur\",\n  \"body\": \"elit deserunt\",\n  \"body_raw\": \"officia\",\n  \"has_tagging\": false,\n  \"icon\": \"consequat in\",\n  \"received_at\": \"non\",\n  \"send_at\": \"esse adipisicing ipsum in laborum\",\n  \"queued_at\": \"minim incididunt\",\n  \"sent_at\": \"esse Lorem laboris\",\n  \"delivered_at\": \"officia aute pariatur\",\n  \"failed_at\": \"irure non laboris incididunt\",\n  \"failed_reason\": \"consequat consectetur fugiat culpa\",\n  \"created_at\": \"aliqua pariatur in\",\n  \"stop_on_response\": false,\n  \"record\": {\n    \"id\": -59453435,\n    \"message_id\": -96832515,\n    \"sid\": \"ea enim\",\n    \"record_id\": \"anim ipsum do\",\n    \"duration\": 37974802,\n    \"status\": \"proident do nulla d\",\n    \"url\": \"amet fugiat ut reprehenderit\",\n    \"is_voicemail\": false,\n    \"created_at\": \"enim eiusmod\",\n    \"updated_at\": \"velit aliqua reprehenderit\"\n  },\n  \"user_id\": -12119061,\n  \"source_id\": -28984223,\n  \"source\": \"ut\",\n  \"contact\": {\n    \"id\": 91088116,\n    \"owner_id\": -60704738,\n    \"color\": \"commodo cillum\",\n    \"first_name\": \"Lorem aute fugiat\",\n    \"last_name\": \"velit sint anim\",\n    \"full_name\": \"Duis ut id\",\n    \"email\": \"ex\",\n    \"photo_url\": \"culpa\",\n    \"number\": \"ut consectetur ullamco dolor\",\n    \"country\": \"do\",\n    \"country_calling_code\": \"consequat non deserunt culpa\",\n    \"national_number\": \"aute eiusmod\",\n    \"typeted_number\": \"pariatur\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"aute consectetur proident\",\n    \"opt_in_request_at\": \"occaecat mollit\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -30955482\n      },\n      {\n        \"number_id\": 22700103\n      }\n    ],\n    \"opt_in_at\": \"sint exercitation veniam sed nisi\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -8612238,\n        \"number_id\": 96272669,\n        \"name\": \"laboris sit fugiat pari\",\n        \"disabled\": true,\n        \"timestamp\": \"ut quis do Lorem\",\n        \"value\": true\n      },\n      {\n        \"id\": -85212453,\n        \"number_id\": 12989392,\n        \"name\": \"in et ut\",\n        \"disabled\": true,\n        \"timestamp\": \"id incididunt eiusmod cillum\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"minim labore dolore aliqua\",\n    \"updated_at\": \"laboris sint\",\n    \"integration_vendor_id\": 52476108,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": 99060454,\n        \"key\": \"in anim elit\",\n        \"name\": \"exercitation\",\n        \"photo_url\": \"dolore irure\"\n      },\n      {\n        \"id\": 76204003,\n        \"key\": \"ex reprehenderit amet\",\n        \"name\": \"deserunt\",\n        \"photo_url\": \"velit minim\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 60715432,\n        \"custom_field_id\": 48276386,\n        \"contact_id\": 39196079,\n        \"field_key\": \"adipisicing proident\",\n        \"organization_id\": -75259989,\n        \"text\": \"dolore esse laborum incididunt\",\n        \"number\": -46579899,\n        \"date\": \"Excepteur non ipsum amet\",\n        \"created_at\": \"deserun\",\n        \"updated_at\": \"sint non officia sit\",\n        \"value\": [\n          {\n            \"type\": \"Ut ex amet\",\n            \"value\": \"deserunt non\"\n          },\n          {\n            \"type\": \"laborum enim Ut\",\n            \"value\": \"Lorem commodo labore\"\n          }\n        ]\n      },\n      {\n        \"id\": -70709235,\n        \"custom_field_id\": 26590191,\n        \"contact_id\": -46631813,\n        \"field_key\": \"enim Ut nisi\",\n        \"organization_id\": -23011331,\n        \"text\": \"dolor consequat sint Ut\",\n        \"number\": -90250801,\n        \"date\": \"magna proident\",\n        \"created_at\": \"n\",\n        \"updated_at\": \"Lorem Duis\",\n        \"value\": [\n          {\n            \"type\": \"id Ut ex aliquip\",\n            \"value\": \"pariatur fugiat laboris\"\n          },\n          {\n            \"type\": \"do\",\n            \"value\": \"Ut ullamco ea\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 20232062,\n        \"name\": \"ad sunt\",\n        \"label\": \"nulla sed ut\",\n        \"created_at\": \"tempor Lorem culpa ut ullamco\"\n      },\n      {\n        \"id\": -38046060,\n        \"name\": \"dolore quis\",\n        \"label\": \"qui aliqua magna voluptate\",\n        \"created_at\": \"ipsum sint ex occaecat eu\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -214948,\n        \"text\": \"reprehenderit mollit\",\n        \"created_at\": \"aute nisi si\",\n        \"updated_at\": \"esse est Lorem\"\n      },\n      {\n        \"id\": -31159362,\n        \"text\": \"consequat magna aute qui\",\n        \"created_at\": \"eu est \",\n        \"updated_at\": \"tempor\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 38838309,\n    \"email\": \"eiusmod nisi\",\n    \"first_name\": \"nostrud incididunt qu\",\n    \"last_name\": \"elit ipsum\",\n    \"full_name\": \"dolore consectetur dolor Excepteur\",\n    \"role\": \"in enim in\",\n    \"inbox_id\": 51715230,\n    \"organization_id\": 71561898,\n    \"photo_url\": \"velit deserunt sunt dolore\",\n    \"unread\": -50128554,\n    \"number\": \"in Duis ullamco dolore sint\",\n    \"formatted_number\": \"esse et\",\n    \"organizationNumber\": [\n      {\n        \"id\": -86044635,\n        \"country\": \"proident reprehenderit\",\n        \"number\": \"do nisi id\",\n        \"formatted_number\": \"ipsum ut id in\",\n        \"mms\": \"laboris proident\"\n      },\n      {\n        \"id\": 9395009,\n        \"country\": \"est ea\",\n        \"number\": \"anim\",\n        \"formatted_number\": \"incididunt Ut nostrud\",\n        \"mms\": \"tempor labore adipisicing est\"\n      }\n    ],\n    \"userPermissions\": [\n      \"anim ut elit\",\n      \"deserunt\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": -3076559,\n      \"email\": \"dolor fugiat\",\n      \"first_name\": \"occaecat fug\",\n      \"last_name\": \"in anim\",\n      \"full_name\": \"eiusmod culpa\",\n      \"role\": \"officia Lo\",\n      \"inbox_id\": 95816824,\n      \"organization_id\": -99869044,\n      \"photo_url\": \"ea\",\n      \"unread\": -10324878,\n      \"number\": \"sunt\",\n      \"formatted_number\": \"aliqua\",\n      \"organizationNumber\": [\n        {\n          \"id\": 60919685,\n          \"country\": \"ad ut dolor ut ipsum\",\n          \"number\": \"sint eu ea\",\n          \"formatted_number\": \"voluptate dolor\",\n          \"mms\": \"Duis sit consequat enim \"\n        },\n        {\n          \"id\": -87539046,\n          \"country\": \"irure\",\n          \"number\": \"cupidatat nisi pariatur\",\n          \"formatted_number\": \"aliqua fugiat et\",\n          \"mms\": \"aliquip aliqua voluptate anim\"\n        }\n      ],\n      \"userPermissions\": [\n        \"eu ipsum\",\n        \"aute cupidat\"\n      ]\n    },\n    {\n      \"id\": -25127541,\n      \"email\": \"aliquip incididunt qui deserunt cupidatat\",\n      \"first_name\": \"cupidatat\",\n      \"last_name\": \"dolore\",\n      \"full_name\": \"eu\",\n      \"role\": \"sit\",\n      \"inbox_id\": -2680336,\n      \"organization_id\": 23007616,\n      \"photo_url\": \"in\",\n      \"unread\": -41016453,\n      \"number\": \"ex exercitation commodo nulla\",\n      \"formatted_number\": \"anim ullamco enim ex\",\n      \"organizationNumber\": [\n        {\n          \"id\": -59261576,\n          \"country\": \"sed minim mollit\",\n          \"number\": \"Lorem cillum enim\",\n          \"formatted_number\": \"laboris esse ut nisi\",\n          \"mms\": \"deserunt exercitation non velit\"\n        },\n        {\n          \"id\": -41018011,\n          \"country\": \"Duis incididunt\",\n          \"number\": \"est ut tempor Ut\",\n          \"formatted_number\": \"officia commodo consectetur\",\n          \"mms\": \"ut ut culpa\"\n        }\n      ],\n      \"userPermissions\": [\n        \"minim\",\n        \"Lorem non dolore\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": -20432784,\n      \"content_type\": \"sed dolore laborum\",\n      \"source\": \"in fugiat veniam aliquip\",\n      \"source_short\": \"nisi quis laboris\",\n      \"created_at\": \"sunt in mollit\"\n    },\n    {\n      \"id\": 56623880,\n      \"content_type\": \"in culpa\",\n      \"source\": \"et eiusmod\",\n      \"source_short\": \"ullamco dolo\",\n      \"created_at\": \"commodo sint\"\n    }\n  ]\n}"},{"id":"181c9d7f-ba98-4cc2-b1b6-61f94b3b3b80","name":"Unauthorized action","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages?number=+12025550018&team_id=1&message=laborum&send_at=2017-07-21T17:32:28Z&media_url[][url]=https://example.com/image.png&media_url[][url]=https://example.com/image.png","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages"],"query":[{"key":"number","value":"+12025550018"},{"key":"team_id","value":"1"},{"key":"message","value":"laborum"},{"key":"send_at","value":"2017-07-21T17:32:28Z"},{"key":"media_url[][url]","value":"https://example.com/image.png"},{"key":"media_url[][url]","value":"https://example.com/image.png"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": 404,\n  \"message\": \"Unauthorized action.\"\n}"},{"id":"6428c522-66d1-40e6-998a-4b5a5e008b14","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages?number=+12025550018&team_id=1&message=laborum&send_at=2017-07-21T17:32:28Z&media_url[][url]=https://example.com/image.png&media_url[][url]=https://example.com/image.png","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages"],"query":[{"key":"number","value":"+12025550018"},{"key":"team_id","value":"1"},{"key":"message","value":"laborum"},{"key":"send_at","value":"2017-07-21T17:32:28Z"},{"key":"media_url[][url]","value":"https://example.com/image.png"},{"key":"media_url[][url]","value":"https://example.com/image.png"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"}],"_postman_id":"24be9fb0-3ddf-4730-bf15-8b648f8411c6"},{"name":"Activate mentioned users","id":"ad3e0695-fd29-436f-acc2-94932f391817","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages/:message/mentions/:taggingUser/activate","description":"<p>Activate mentioned users</p>\n","urlObject":{"path":["messages",":message","mentions",":taggingUser","activate"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"30b07ce3-695f-442b-b892-1fde30969963","description":{"content":"<p>(Required) The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"},{"id":"141255f7-15fb-4cc1-a65e-536be9783785","description":{"content":"<p>(Required) The ID of the taggingUser</p>\n","type":"text/plain"},"type":"any","value":"","key":"taggingUser"}]}},"response":[{"id":"8fe84e3f-aac3-4ad3-aab3-221c5af98fb9","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:message/mentions/:taggingUser/activate","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":message","mentions",":taggingUser","activate"],"variable":[{"key":"message","value":"","description":"(Required) The ID of the Message"},{"key":"taggingUser","value":"","description":"(Required) The ID of the taggingUser"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -96488284,\n  \"conversation_id\": -58481741,\n  \"automated\": true,\n  \"status\": \"enim nisi eu\",\n  \"type\": \"ut\",\n  \"mms_status\": \"aute ullamco culpa pariatur\",\n  \"body\": \"elit deserunt\",\n  \"body_raw\": \"officia\",\n  \"has_tagging\": false,\n  \"icon\": \"consequat in\",\n  \"received_at\": \"non\",\n  \"send_at\": \"esse adipisicing ipsum in laborum\",\n  \"queued_at\": \"minim incididunt\",\n  \"sent_at\": \"esse Lorem laboris\",\n  \"delivered_at\": \"officia aute pariatur\",\n  \"failed_at\": \"irure non laboris incididunt\",\n  \"failed_reason\": \"consequat consectetur fugiat culpa\",\n  \"created_at\": \"aliqua pariatur in\",\n  \"stop_on_response\": false,\n  \"record\": {\n    \"id\": -59453435,\n    \"message_id\": -96832515,\n    \"sid\": \"ea enim\",\n    \"record_id\": \"anim ipsum do\",\n    \"duration\": 37974802,\n    \"status\": \"proident do nulla d\",\n    \"url\": \"amet fugiat ut reprehenderit\",\n    \"is_voicemail\": false,\n    \"created_at\": \"enim eiusmod\",\n    \"updated_at\": \"velit aliqua reprehenderit\"\n  },\n  \"user_id\": -12119061,\n  \"source_id\": -28984223,\n  \"source\": \"ut\",\n  \"contact\": {\n    \"id\": 91088116,\n    \"owner_id\": -60704738,\n    \"color\": \"commodo cillum\",\n    \"first_name\": \"Lorem aute fugiat\",\n    \"last_name\": \"velit sint anim\",\n    \"full_name\": \"Duis ut id\",\n    \"email\": \"ex\",\n    \"photo_url\": \"culpa\",\n    \"number\": \"ut consectetur ullamco dolor\",\n    \"country\": \"do\",\n    \"country_calling_code\": \"consequat non deserunt culpa\",\n    \"national_number\": \"aute eiusmod\",\n    \"typeted_number\": \"pariatur\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"aute consectetur proident\",\n    \"opt_in_request_at\": \"occaecat mollit\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -30955482\n      },\n      {\n        \"number_id\": 22700103\n      }\n    ],\n    \"opt_in_at\": \"sint exercitation veniam sed nisi\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -8612238,\n        \"number_id\": 96272669,\n        \"name\": \"laboris sit fugiat pari\",\n        \"disabled\": true,\n        \"timestamp\": \"ut quis do Lorem\",\n        \"value\": true\n      },\n      {\n        \"id\": -85212453,\n        \"number_id\": 12989392,\n        \"name\": \"in et ut\",\n        \"disabled\": true,\n        \"timestamp\": \"id incididunt eiusmod cillum\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"minim labore dolore aliqua\",\n    \"updated_at\": \"laboris sint\",\n    \"integration_vendor_id\": 52476108,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": 99060454,\n        \"key\": \"in anim elit\",\n        \"name\": \"exercitation\",\n        \"photo_url\": \"dolore irure\"\n      },\n      {\n        \"id\": 76204003,\n        \"key\": \"ex reprehenderit amet\",\n        \"name\": \"deserunt\",\n        \"photo_url\": \"velit minim\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 60715432,\n        \"custom_field_id\": 48276386,\n        \"contact_id\": 39196079,\n        \"field_key\": \"adipisicing proident\",\n        \"organization_id\": -75259989,\n        \"text\": \"dolore esse laborum incididunt\",\n        \"number\": -46579899,\n        \"date\": \"Excepteur non ipsum amet\",\n        \"created_at\": \"deserun\",\n        \"updated_at\": \"sint non officia sit\",\n        \"value\": [\n          {\n            \"type\": \"Ut ex amet\",\n            \"value\": \"deserunt non\"\n          },\n          {\n            \"type\": \"laborum enim Ut\",\n            \"value\": \"Lorem commodo labore\"\n          }\n        ]\n      },\n      {\n        \"id\": -70709235,\n        \"custom_field_id\": 26590191,\n        \"contact_id\": -46631813,\n        \"field_key\": \"enim Ut nisi\",\n        \"organization_id\": -23011331,\n        \"text\": \"dolor consequat sint Ut\",\n        \"number\": -90250801,\n        \"date\": \"magna proident\",\n        \"created_at\": \"n\",\n        \"updated_at\": \"Lorem Duis\",\n        \"value\": [\n          {\n            \"type\": \"id Ut ex aliquip\",\n            \"value\": \"pariatur fugiat laboris\"\n          },\n          {\n            \"type\": \"do\",\n            \"value\": \"Ut ullamco ea\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 20232062,\n        \"name\": \"ad sunt\",\n        \"label\": \"nulla sed ut\",\n        \"created_at\": \"tempor Lorem culpa ut ullamco\"\n      },\n      {\n        \"id\": -38046060,\n        \"name\": \"dolore quis\",\n        \"label\": \"qui aliqua magna voluptate\",\n        \"created_at\": \"ipsum sint ex occaecat eu\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -214948,\n        \"text\": \"reprehenderit mollit\",\n        \"created_at\": \"aute nisi si\",\n        \"updated_at\": \"esse est Lorem\"\n      },\n      {\n        \"id\": -31159362,\n        \"text\": \"consequat magna aute qui\",\n        \"created_at\": \"eu est \",\n        \"updated_at\": \"tempor\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 38838309,\n    \"email\": \"eiusmod nisi\",\n    \"first_name\": \"nostrud incididunt qu\",\n    \"last_name\": \"elit ipsum\",\n    \"full_name\": \"dolore consectetur dolor Excepteur\",\n    \"role\": \"in enim in\",\n    \"inbox_id\": 51715230,\n    \"organization_id\": 71561898,\n    \"photo_url\": \"velit deserunt sunt dolore\",\n    \"unread\": -50128554,\n    \"number\": \"in Duis ullamco dolore sint\",\n    \"formatted_number\": \"esse et\",\n    \"organizationNumber\": [\n      {\n        \"id\": -86044635,\n        \"country\": \"proident reprehenderit\",\n        \"number\": \"do nisi id\",\n        \"formatted_number\": \"ipsum ut id in\",\n        \"mms\": \"laboris proident\"\n      },\n      {\n        \"id\": 9395009,\n        \"country\": \"est ea\",\n        \"number\": \"anim\",\n        \"formatted_number\": \"incididunt Ut nostrud\",\n        \"mms\": \"tempor labore adipisicing est\"\n      }\n    ],\n    \"userPermissions\": [\n      \"anim ut elit\",\n      \"deserunt\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": -3076559,\n      \"email\": \"dolor fugiat\",\n      \"first_name\": \"occaecat fug\",\n      \"last_name\": \"in anim\",\n      \"full_name\": \"eiusmod culpa\",\n      \"role\": \"officia Lo\",\n      \"inbox_id\": 95816824,\n      \"organization_id\": -99869044,\n      \"photo_url\": \"ea\",\n      \"unread\": -10324878,\n      \"number\": \"sunt\",\n      \"formatted_number\": \"aliqua\",\n      \"organizationNumber\": [\n        {\n          \"id\": 60919685,\n          \"country\": \"ad ut dolor ut ipsum\",\n          \"number\": \"sint eu ea\",\n          \"formatted_number\": \"voluptate dolor\",\n          \"mms\": \"Duis sit consequat enim \"\n        },\n        {\n          \"id\": -87539046,\n          \"country\": \"irure\",\n          \"number\": \"cupidatat nisi pariatur\",\n          \"formatted_number\": \"aliqua fugiat et\",\n          \"mms\": \"aliquip aliqua voluptate anim\"\n        }\n      ],\n      \"userPermissions\": [\n        \"eu ipsum\",\n        \"aute cupidat\"\n      ]\n    },\n    {\n      \"id\": -25127541,\n      \"email\": \"aliquip incididunt qui deserunt cupidatat\",\n      \"first_name\": \"cupidatat\",\n      \"last_name\": \"dolore\",\n      \"full_name\": \"eu\",\n      \"role\": \"sit\",\n      \"inbox_id\": -2680336,\n      \"organization_id\": 23007616,\n      \"photo_url\": \"in\",\n      \"unread\": -41016453,\n      \"number\": \"ex exercitation commodo nulla\",\n      \"formatted_number\": \"anim ullamco enim ex\",\n      \"organizationNumber\": [\n        {\n          \"id\": -59261576,\n          \"country\": \"sed minim mollit\",\n          \"number\": \"Lorem cillum enim\",\n          \"formatted_number\": \"laboris esse ut nisi\",\n          \"mms\": \"deserunt exercitation non velit\"\n        },\n        {\n          \"id\": -41018011,\n          \"country\": \"Duis incididunt\",\n          \"number\": \"est ut tempor Ut\",\n          \"formatted_number\": \"officia commodo consectetur\",\n          \"mms\": \"ut ut culpa\"\n        }\n      ],\n      \"userPermissions\": [\n        \"minim\",\n        \"Lorem non dolore\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": -20432784,\n      \"content_type\": \"sed dolore laborum\",\n      \"source\": \"in fugiat veniam aliquip\",\n      \"source_short\": \"nisi quis laboris\",\n      \"created_at\": \"sunt in mollit\"\n    },\n    {\n      \"id\": 56623880,\n      \"content_type\": \"in culpa\",\n      \"source\": \"et eiusmod\",\n      \"source_short\": \"ullamco dolo\",\n      \"created_at\": \"commodo sint\"\n    }\n  ]\n}"}],"_postman_id":"ad3e0695-fd29-436f-acc2-94932f391817"},{"name":"Mentioned user got it","id":"7440ed23-1a32-40e1-ba66-bf987c72e05d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages/:message/mentions/:taggingUser/cancel","description":"<p>Mentioned user got it</p>\n","urlObject":{"path":["messages",":message","mentions",":taggingUser","cancel"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"10c8a2a3-55c4-4246-8160-9fed5621e28c","description":{"content":"<p>(Required) The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"},{"id":"609a06c0-8226-4367-8fb6-66d3cd506fc3","description":{"content":"<p>(Required) The ID of the taggingUser</p>\n","type":"text/plain"},"type":"any","value":"","key":"taggingUser"}]}},"response":[{"id":"75f71fb5-f6db-4a6d-bfb8-03031369bf13","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:message/mentions/:taggingUser/cancel","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":message","mentions",":taggingUser","cancel"],"variable":[{"key":"message","value":"","description":"(Required) The ID of the Message"},{"key":"taggingUser","value":"","description":"(Required) The ID of the taggingUser"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -96488284,\n  \"conversation_id\": -58481741,\n  \"automated\": true,\n  \"status\": \"enim nisi eu\",\n  \"type\": \"ut\",\n  \"mms_status\": \"aute ullamco culpa pariatur\",\n  \"body\": \"elit deserunt\",\n  \"body_raw\": \"officia\",\n  \"has_tagging\": false,\n  \"icon\": \"consequat in\",\n  \"received_at\": \"non\",\n  \"send_at\": \"esse adipisicing ipsum in laborum\",\n  \"queued_at\": \"minim incididunt\",\n  \"sent_at\": \"esse Lorem laboris\",\n  \"delivered_at\": \"officia aute pariatur\",\n  \"failed_at\": \"irure non laboris incididunt\",\n  \"failed_reason\": \"consequat consectetur fugiat culpa\",\n  \"created_at\": \"aliqua pariatur in\",\n  \"stop_on_response\": false,\n  \"record\": {\n    \"id\": -59453435,\n    \"message_id\": -96832515,\n    \"sid\": \"ea enim\",\n    \"record_id\": \"anim ipsum do\",\n    \"duration\": 37974802,\n    \"status\": \"proident do nulla d\",\n    \"url\": \"amet fugiat ut reprehenderit\",\n    \"is_voicemail\": false,\n    \"created_at\": \"enim eiusmod\",\n    \"updated_at\": \"velit aliqua reprehenderit\"\n  },\n  \"user_id\": -12119061,\n  \"source_id\": -28984223,\n  \"source\": \"ut\",\n  \"contact\": {\n    \"id\": 91088116,\n    \"owner_id\": -60704738,\n    \"color\": \"commodo cillum\",\n    \"first_name\": \"Lorem aute fugiat\",\n    \"last_name\": \"velit sint anim\",\n    \"full_name\": \"Duis ut id\",\n    \"email\": \"ex\",\n    \"photo_url\": \"culpa\",\n    \"number\": \"ut consectetur ullamco dolor\",\n    \"country\": \"do\",\n    \"country_calling_code\": \"consequat non deserunt culpa\",\n    \"national_number\": \"aute eiusmod\",\n    \"typeted_number\": \"pariatur\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"aute consectetur proident\",\n    \"opt_in_request_at\": \"occaecat mollit\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -30955482\n      },\n      {\n        \"number_id\": 22700103\n      }\n    ],\n    \"opt_in_at\": \"sint exercitation veniam sed nisi\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -8612238,\n        \"number_id\": 96272669,\n        \"name\": \"laboris sit fugiat pari\",\n        \"disabled\": true,\n        \"timestamp\": \"ut quis do Lorem\",\n        \"value\": true\n      },\n      {\n        \"id\": -85212453,\n        \"number_id\": 12989392,\n        \"name\": \"in et ut\",\n        \"disabled\": true,\n        \"timestamp\": \"id incididunt eiusmod cillum\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"minim labore dolore aliqua\",\n    \"updated_at\": \"laboris sint\",\n    \"integration_vendor_id\": 52476108,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": 99060454,\n        \"key\": \"in anim elit\",\n        \"name\": \"exercitation\",\n        \"photo_url\": \"dolore irure\"\n      },\n      {\n        \"id\": 76204003,\n        \"key\": \"ex reprehenderit amet\",\n        \"name\": \"deserunt\",\n        \"photo_url\": \"velit minim\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 60715432,\n        \"custom_field_id\": 48276386,\n        \"contact_id\": 39196079,\n        \"field_key\": \"adipisicing proident\",\n        \"organization_id\": -75259989,\n        \"text\": \"dolore esse laborum incididunt\",\n        \"number\": -46579899,\n        \"date\": \"Excepteur non ipsum amet\",\n        \"created_at\": \"deserun\",\n        \"updated_at\": \"sint non officia sit\",\n        \"value\": [\n          {\n            \"type\": \"Ut ex amet\",\n            \"value\": \"deserunt non\"\n          },\n          {\n            \"type\": \"laborum enim Ut\",\n            \"value\": \"Lorem commodo labore\"\n          }\n        ]\n      },\n      {\n        \"id\": -70709235,\n        \"custom_field_id\": 26590191,\n        \"contact_id\": -46631813,\n        \"field_key\": \"enim Ut nisi\",\n        \"organization_id\": -23011331,\n        \"text\": \"dolor consequat sint Ut\",\n        \"number\": -90250801,\n        \"date\": \"magna proident\",\n        \"created_at\": \"n\",\n        \"updated_at\": \"Lorem Duis\",\n        \"value\": [\n          {\n            \"type\": \"id Ut ex aliquip\",\n            \"value\": \"pariatur fugiat laboris\"\n          },\n          {\n            \"type\": \"do\",\n            \"value\": \"Ut ullamco ea\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 20232062,\n        \"name\": \"ad sunt\",\n        \"label\": \"nulla sed ut\",\n        \"created_at\": \"tempor Lorem culpa ut ullamco\"\n      },\n      {\n        \"id\": -38046060,\n        \"name\": \"dolore quis\",\n        \"label\": \"qui aliqua magna voluptate\",\n        \"created_at\": \"ipsum sint ex occaecat eu\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -214948,\n        \"text\": \"reprehenderit mollit\",\n        \"created_at\": \"aute nisi si\",\n        \"updated_at\": \"esse est Lorem\"\n      },\n      {\n        \"id\": -31159362,\n        \"text\": \"consequat magna aute qui\",\n        \"created_at\": \"eu est \",\n        \"updated_at\": \"tempor\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 38838309,\n    \"email\": \"eiusmod nisi\",\n    \"first_name\": \"nostrud incididunt qu\",\n    \"last_name\": \"elit ipsum\",\n    \"full_name\": \"dolore consectetur dolor Excepteur\",\n    \"role\": \"in enim in\",\n    \"inbox_id\": 51715230,\n    \"organization_id\": 71561898,\n    \"photo_url\": \"velit deserunt sunt dolore\",\n    \"unread\": -50128554,\n    \"number\": \"in Duis ullamco dolore sint\",\n    \"formatted_number\": \"esse et\",\n    \"organizationNumber\": [\n      {\n        \"id\": -86044635,\n        \"country\": \"proident reprehenderit\",\n        \"number\": \"do nisi id\",\n        \"formatted_number\": \"ipsum ut id in\",\n        \"mms\": \"laboris proident\"\n      },\n      {\n        \"id\": 9395009,\n        \"country\": \"est ea\",\n        \"number\": \"anim\",\n        \"formatted_number\": \"incididunt Ut nostrud\",\n        \"mms\": \"tempor labore adipisicing est\"\n      }\n    ],\n    \"userPermissions\": [\n      \"anim ut elit\",\n      \"deserunt\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": -3076559,\n      \"email\": \"dolor fugiat\",\n      \"first_name\": \"occaecat fug\",\n      \"last_name\": \"in anim\",\n      \"full_name\": \"eiusmod culpa\",\n      \"role\": \"officia Lo\",\n      \"inbox_id\": 95816824,\n      \"organization_id\": -99869044,\n      \"photo_url\": \"ea\",\n      \"unread\": -10324878,\n      \"number\": \"sunt\",\n      \"formatted_number\": \"aliqua\",\n      \"organizationNumber\": [\n        {\n          \"id\": 60919685,\n          \"country\": \"ad ut dolor ut ipsum\",\n          \"number\": \"sint eu ea\",\n          \"formatted_number\": \"voluptate dolor\",\n          \"mms\": \"Duis sit consequat enim \"\n        },\n        {\n          \"id\": -87539046,\n          \"country\": \"irure\",\n          \"number\": \"cupidatat nisi pariatur\",\n          \"formatted_number\": \"aliqua fugiat et\",\n          \"mms\": \"aliquip aliqua voluptate anim\"\n        }\n      ],\n      \"userPermissions\": [\n        \"eu ipsum\",\n        \"aute cupidat\"\n      ]\n    },\n    {\n      \"id\": -25127541,\n      \"email\": \"aliquip incididunt qui deserunt cupidatat\",\n      \"first_name\": \"cupidatat\",\n      \"last_name\": \"dolore\",\n      \"full_name\": \"eu\",\n      \"role\": \"sit\",\n      \"inbox_id\": -2680336,\n      \"organization_id\": 23007616,\n      \"photo_url\": \"in\",\n      \"unread\": -41016453,\n      \"number\": \"ex exercitation commodo nulla\",\n      \"formatted_number\": \"anim ullamco enim ex\",\n      \"organizationNumber\": [\n        {\n          \"id\": -59261576,\n          \"country\": \"sed minim mollit\",\n          \"number\": \"Lorem cillum enim\",\n          \"formatted_number\": \"laboris esse ut nisi\",\n          \"mms\": \"deserunt exercitation non velit\"\n        },\n        {\n          \"id\": -41018011,\n          \"country\": \"Duis incididunt\",\n          \"number\": \"est ut tempor Ut\",\n          \"formatted_number\": \"officia commodo consectetur\",\n          \"mms\": \"ut ut culpa\"\n        }\n      ],\n      \"userPermissions\": [\n        \"minim\",\n        \"Lorem non dolore\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": -20432784,\n      \"content_type\": \"sed dolore laborum\",\n      \"source\": \"in fugiat veniam aliquip\",\n      \"source_short\": \"nisi quis laboris\",\n      \"created_at\": \"sunt in mollit\"\n    },\n    {\n      \"id\": 56623880,\n      \"content_type\": \"in culpa\",\n      \"source\": \"et eiusmod\",\n      \"source_short\": \"ullamco dolo\",\n      \"created_at\": \"commodo sint\"\n    }\n  ]\n}"}],"_postman_id":"7440ed23-1a32-40e1-ba66-bf987c72e05d"},{"name":"Deactivate mentioned users","id":"157ad04e-472d-4456-800e-554befe943cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//messages/:message/mentions/:taggingUser/got-it","description":"<p>Deactivate mentioned users</p>\n","urlObject":{"path":["messages",":message","mentions",":taggingUser","got-it"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"cc5a2b83-7840-4497-8d75-c063d9d9d03e","description":{"content":"<p>(Required) The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"},{"id":"8efe1e6c-dcb6-459b-a41e-a165dbfaf256","description":{"content":"<p>(Required) The ID of the taggingUser</p>\n","type":"text/plain"},"type":"any","value":"","key":"taggingUser"}]}},"response":[{"id":"56e59877-1ec5-402d-9afa-78c75008b0d7","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:message/mentions/:taggingUser/got-it","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":message","mentions",":taggingUser","got-it"],"variable":[{"key":"message","value":"","description":"(Required) The ID of the Message"},{"key":"taggingUser","value":"","description":"(Required) The ID of the taggingUser"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -96488284,\n  \"conversation_id\": -58481741,\n  \"automated\": true,\n  \"status\": \"enim nisi eu\",\n  \"type\": \"ut\",\n  \"mms_status\": \"aute ullamco culpa pariatur\",\n  \"body\": \"elit deserunt\",\n  \"body_raw\": \"officia\",\n  \"has_tagging\": false,\n  \"icon\": \"consequat in\",\n  \"received_at\": \"non\",\n  \"send_at\": \"esse adipisicing ipsum in laborum\",\n  \"queued_at\": \"minim incididunt\",\n  \"sent_at\": \"esse Lorem laboris\",\n  \"delivered_at\": \"officia aute pariatur\",\n  \"failed_at\": \"irure non laboris incididunt\",\n  \"failed_reason\": \"consequat consectetur fugiat culpa\",\n  \"created_at\": \"aliqua pariatur in\",\n  \"stop_on_response\": false,\n  \"record\": {\n    \"id\": -59453435,\n    \"message_id\": -96832515,\n    \"sid\": \"ea enim\",\n    \"record_id\": \"anim ipsum do\",\n    \"duration\": 37974802,\n    \"status\": \"proident do nulla d\",\n    \"url\": \"amet fugiat ut reprehenderit\",\n    \"is_voicemail\": false,\n    \"created_at\": \"enim eiusmod\",\n    \"updated_at\": \"velit aliqua reprehenderit\"\n  },\n  \"user_id\": -12119061,\n  \"source_id\": -28984223,\n  \"source\": \"ut\",\n  \"contact\": {\n    \"id\": 91088116,\n    \"owner_id\": -60704738,\n    \"color\": \"commodo cillum\",\n    \"first_name\": \"Lorem aute fugiat\",\n    \"last_name\": \"velit sint anim\",\n    \"full_name\": \"Duis ut id\",\n    \"email\": \"ex\",\n    \"photo_url\": \"culpa\",\n    \"number\": \"ut consectetur ullamco dolor\",\n    \"country\": \"do\",\n    \"country_calling_code\": \"consequat non deserunt culpa\",\n    \"national_number\": \"aute eiusmod\",\n    \"typeted_number\": \"pariatur\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"aute consectetur proident\",\n    \"opt_in_request_at\": \"occaecat mollit\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -30955482\n      },\n      {\n        \"number_id\": 22700103\n      }\n    ],\n    \"opt_in_at\": \"sint exercitation veniam sed nisi\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -8612238,\n        \"number_id\": 96272669,\n        \"name\": \"laboris sit fugiat pari\",\n        \"disabled\": true,\n        \"timestamp\": \"ut quis do Lorem\",\n        \"value\": true\n      },\n      {\n        \"id\": -85212453,\n        \"number_id\": 12989392,\n        \"name\": \"in et ut\",\n        \"disabled\": true,\n        \"timestamp\": \"id incididunt eiusmod cillum\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"minim labore dolore aliqua\",\n    \"updated_at\": \"laboris sint\",\n    \"integration_vendor_id\": 52476108,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": 99060454,\n        \"key\": \"in anim elit\",\n        \"name\": \"exercitation\",\n        \"photo_url\": \"dolore irure\"\n      },\n      {\n        \"id\": 76204003,\n        \"key\": \"ex reprehenderit amet\",\n        \"name\": \"deserunt\",\n        \"photo_url\": \"velit minim\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 60715432,\n        \"custom_field_id\": 48276386,\n        \"contact_id\": 39196079,\n        \"field_key\": \"adipisicing proident\",\n        \"organization_id\": -75259989,\n        \"text\": \"dolore esse laborum incididunt\",\n        \"number\": -46579899,\n        \"date\": \"Excepteur non ipsum amet\",\n        \"created_at\": \"deserun\",\n        \"updated_at\": \"sint non officia sit\",\n        \"value\": [\n          {\n            \"type\": \"Ut ex amet\",\n            \"value\": \"deserunt non\"\n          },\n          {\n            \"type\": \"laborum enim Ut\",\n            \"value\": \"Lorem commodo labore\"\n          }\n        ]\n      },\n      {\n        \"id\": -70709235,\n        \"custom_field_id\": 26590191,\n        \"contact_id\": -46631813,\n        \"field_key\": \"enim Ut nisi\",\n        \"organization_id\": -23011331,\n        \"text\": \"dolor consequat sint Ut\",\n        \"number\": -90250801,\n        \"date\": \"magna proident\",\n        \"created_at\": \"n\",\n        \"updated_at\": \"Lorem Duis\",\n        \"value\": [\n          {\n            \"type\": \"id Ut ex aliquip\",\n            \"value\": \"pariatur fugiat laboris\"\n          },\n          {\n            \"type\": \"do\",\n            \"value\": \"Ut ullamco ea\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 20232062,\n        \"name\": \"ad sunt\",\n        \"label\": \"nulla sed ut\",\n        \"created_at\": \"tempor Lorem culpa ut ullamco\"\n      },\n      {\n        \"id\": -38046060,\n        \"name\": \"dolore quis\",\n        \"label\": \"qui aliqua magna voluptate\",\n        \"created_at\": \"ipsum sint ex occaecat eu\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -214948,\n        \"text\": \"reprehenderit mollit\",\n        \"created_at\": \"aute nisi si\",\n        \"updated_at\": \"esse est Lorem\"\n      },\n      {\n        \"id\": -31159362,\n        \"text\": \"consequat magna aute qui\",\n        \"created_at\": \"eu est \",\n        \"updated_at\": \"tempor\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 38838309,\n    \"email\": \"eiusmod nisi\",\n    \"first_name\": \"nostrud incididunt qu\",\n    \"last_name\": \"elit ipsum\",\n    \"full_name\": \"dolore consectetur dolor Excepteur\",\n    \"role\": \"in enim in\",\n    \"inbox_id\": 51715230,\n    \"organization_id\": 71561898,\n    \"photo_url\": \"velit deserunt sunt dolore\",\n    \"unread\": -50128554,\n    \"number\": \"in Duis ullamco dolore sint\",\n    \"formatted_number\": \"esse et\",\n    \"organizationNumber\": [\n      {\n        \"id\": -86044635,\n        \"country\": \"proident reprehenderit\",\n        \"number\": \"do nisi id\",\n        \"formatted_number\": \"ipsum ut id in\",\n        \"mms\": \"laboris proident\"\n      },\n      {\n        \"id\": 9395009,\n        \"country\": \"est ea\",\n        \"number\": \"anim\",\n        \"formatted_number\": \"incididunt Ut nostrud\",\n        \"mms\": \"tempor labore adipisicing est\"\n      }\n    ],\n    \"userPermissions\": [\n      \"anim ut elit\",\n      \"deserunt\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": -3076559,\n      \"email\": \"dolor fugiat\",\n      \"first_name\": \"occaecat fug\",\n      \"last_name\": \"in anim\",\n      \"full_name\": \"eiusmod culpa\",\n      \"role\": \"officia Lo\",\n      \"inbox_id\": 95816824,\n      \"organization_id\": -99869044,\n      \"photo_url\": \"ea\",\n      \"unread\": -10324878,\n      \"number\": \"sunt\",\n      \"formatted_number\": \"aliqua\",\n      \"organizationNumber\": [\n        {\n          \"id\": 60919685,\n          \"country\": \"ad ut dolor ut ipsum\",\n          \"number\": \"sint eu ea\",\n          \"formatted_number\": \"voluptate dolor\",\n          \"mms\": \"Duis sit consequat enim \"\n        },\n        {\n          \"id\": -87539046,\n          \"country\": \"irure\",\n          \"number\": \"cupidatat nisi pariatur\",\n          \"formatted_number\": \"aliqua fugiat et\",\n          \"mms\": \"aliquip aliqua voluptate anim\"\n        }\n      ],\n      \"userPermissions\": [\n        \"eu ipsum\",\n        \"aute cupidat\"\n      ]\n    },\n    {\n      \"id\": -25127541,\n      \"email\": \"aliquip incididunt qui deserunt cupidatat\",\n      \"first_name\": \"cupidatat\",\n      \"last_name\": \"dolore\",\n      \"full_name\": \"eu\",\n      \"role\": \"sit\",\n      \"inbox_id\": -2680336,\n      \"organization_id\": 23007616,\n      \"photo_url\": \"in\",\n      \"unread\": -41016453,\n      \"number\": \"ex exercitation commodo nulla\",\n      \"formatted_number\": \"anim ullamco enim ex\",\n      \"organizationNumber\": [\n        {\n          \"id\": -59261576,\n          \"country\": \"sed minim mollit\",\n          \"number\": \"Lorem cillum enim\",\n          \"formatted_number\": \"laboris esse ut nisi\",\n          \"mms\": \"deserunt exercitation non velit\"\n        },\n        {\n          \"id\": -41018011,\n          \"country\": \"Duis incididunt\",\n          \"number\": \"est ut tempor Ut\",\n          \"formatted_number\": \"officia commodo consectetur\",\n          \"mms\": \"ut ut culpa\"\n        }\n      ],\n      \"userPermissions\": [\n        \"minim\",\n        \"Lorem non dolore\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": -20432784,\n      \"content_type\": \"sed dolore laborum\",\n      \"source\": \"in fugiat veniam aliquip\",\n      \"source_short\": \"nisi quis laboris\",\n      \"created_at\": \"sunt in mollit\"\n    },\n    {\n      \"id\": 56623880,\n      \"content_type\": \"in culpa\",\n      \"source\": \"et eiusmod\",\n      \"source_short\": \"ullamco dolo\",\n      \"created_at\": \"commodo sint\"\n    }\n  ]\n}"},{"id":"b03e41fd-0b5a-4196-9c3b-b50da83e51d8","name":"Incorrect Organization","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:message/mentions/:taggingUser/got-it","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":message","mentions",":taggingUser","got-it"],"variable":[{"key":"message","value":"","description":"(Required) The ID of the Message"},{"key":"taggingUser","value":"","description":"(Required) The ID of the taggingUser"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"},{"id":"3f9372a0-c8bd-4f9d-9f7a-6d27d63e7bcb","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:message/mentions/:taggingUser/got-it","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":message","mentions",":taggingUser","got-it"],"variable":[{"key":"message","value":"","description":"(Required) The ID of the Message"},{"key":"taggingUser","value":"","description":"(Required) The ID of the taggingUser"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"4ec7a6ed-6d16-4c68-9903-f7b8bd9c0455","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//messages/:message/mentions/:taggingUser/got-it","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["messages",":message","mentions",":taggingUser","got-it"],"variable":[{"key":"message","value":"","description":"(Required) The ID of the Message"},{"key":"taggingUser","value":"","description":"(Required) The ID of the taggingUser"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"}],"_postman_id":"157ad04e-472d-4456-800e-554befe943cb"}],"id":"47f50359-b033-4f3a-8fbc-0d82c411bfc0","description":"<p>SalesMsg’s Messages API allows for sending and receiving SMS messages to and from any user within the system. <br /><br />Send regular texts, share images and gifs, url links, hyperlinks to book appointments, files, vcards, .pdf attachments and more.</p>\n","_postman_id":"47f50359-b033-4f3a-8fbc-0d82c411bfc0"},{"name":"Saved Replies","item":[{"name":"Get user saved replies","id":"8d966c7d-2170-49c5-a1c0-f12363bbdd70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//canned-messages?integration_id=&search=&length=&page=&contact_id=","description":"<p>You can use this API endpoint to get the list of the available saved replies. The request returnes a JSON array of saved replies. <br /><br />In addition, it is allowed to: </p><ul><li>Specify the number of saved replies to fetch per page</li> <li>Specify the page number</li> <li>Set the limit of saved replies to be fetched per page (if the limit is not set, the default limit will be considered)</li> <li>Filter by title and text of saved replies</li></ul><p></p>\n","urlObject":{"path":["canned-messages"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Integration id</p>\n","type":"text/plain"},"key":"integration_id","value":""},{"description":{"content":"<p>Filter by title, message</p>\n","type":"text/plain"},"key":"search","value":""},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"length","value":""},{"description":{"content":"<p>Page</p>\n","type":"text/plain"},"key":"page","value":""},{"description":{"content":"<p>Contact id</p>\n","type":"text/plain"},"key":"contact_id","value":""}],"variable":[]}},"response":[{"id":"5c42001c-49d2-4d8e-87d5-deaed670b0b5","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//canned-messages?integration_id=&search=&length=&page=&contact_id=","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["canned-messages"],"query":[{"key":"integration_id","value":""},{"key":"search","value":""},{"key":"length","value":""},{"key":"page","value":""},{"key":"contact_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": -56363391,\n    \"owner_id\": 79937432,\n    \"organization_id\": 19559673,\n    \"integration_id\": -93342947,\n    \"public\": false,\n    \"title\": \"quis adipisicing Duis irure\",\n    \"message\": \"amet qui tempor\",\n    \"shortcut\": \"nisi\",\n    \"media_url\": [\n      {\n        \"url\": \"adipisicing in Excepteu\",\n        \"content_type\": \"mollit esse nulla\"\n      },\n      {\n        \"url\": \"sunt Duis cupidatat ut culpa\",\n        \"content_type\": \"in qui in ad\"\n      }\n    ]\n  },\n  {\n    \"id\": -24176319,\n    \"owner_id\": 78310950,\n    \"organization_id\": -6617793,\n    \"integration_id\": 40666602,\n    \"public\": false,\n    \"title\": \"nulla culpa sed tempor\",\n    \"message\": \"labore\",\n    \"shortcut\": \"est et\",\n    \"media_url\": [\n      {\n        \"url\": \"enim\",\n        \"content_type\": \"enim labore cupidatat mollit ut\"\n      },\n      {\n        \"url\": \"reprehenderit in irure\",\n        \"content_type\": \"sit\"\n      }\n    ]\n  }\n]"}],"_postman_id":"8d966c7d-2170-49c5-a1c0-f12363bbdd70"},{"name":"Create saved reply","id":"674af425-29b0-41a5-8fad-37c1509aaafa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//canned-messages?title=&message=&public=true&integration_id=65893348&media_url=&contact_id=65893348","description":"<p>You can use this API endpoint to create a saved reply. <br /><br />The properties that you need to put into your request include: </p><ul><li>Contact id with which the new saved reply should be mapped</li> <li>The content URL for media for the saved reply if needed.</li> <li>Set public key to either true or false (if the key is set to false, the saved reply is private and only visible to the user who created it. If the key is set to true, the saved reply will be visible to all users across the system)</li> <li>Title string for the saved reply</li></ul><p></p>\n","urlObject":{"path":["canned-messages"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Title</p>\n","type":"text/plain"},"key":"title","value":""},{"description":{"content":"<p>Message</p>\n","type":"text/plain"},"key":"message","value":""},{"description":{"content":"<p>(Required) Public</p>\n","type":"text/plain"},"key":"public","value":"true"},{"description":{"content":"<p>Interation id</p>\n","type":"text/plain"},"key":"integration_id","value":"65893348"},{"description":{"content":"<p>Url for media</p>\n","type":"text/plain"},"key":"media_url","value":""},{"description":{"content":"<p>Contact id</p>\n","type":"text/plain"},"key":"contact_id","value":"65893348"}],"variable":[]}},"response":[{"id":"2165eecf-4c27-4178-b963-a638c8a3aea2","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//canned-messages?title=&message=&public=true&integration_id=65893348&media_url=&contact_id=65893348","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["canned-messages"],"query":[{"key":"title","value":""},{"key":"message","value":""},{"key":"public","value":"true"},{"key":"integration_id","value":"65893348"},{"key":"media_url","value":""},{"key":"contact_id","value":"65893348"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 59404587,\n  \"owner_id\": 69798784,\n  \"organization_id\": -51288437,\n  \"integration_id\": -46776615,\n  \"public\": true,\n  \"title\": \"dolor sunt sint\",\n  \"message\": \"aliquip et nostrud officia\",\n  \"shortcut\": \"Duis est ut adipisicing do\",\n  \"media_url\": [\n    {\n      \"url\": \"exercitation aliqua sint ut in\",\n      \"content_type\": \"mollit nulla\"\n    },\n    {\n      \"url\": \"proident ut\",\n      \"content_type\": \"ad elit\"\n    }\n  ]\n}"},{"id":"915cf94e-23b6-4fe8-b8ee-aabc51c376b4","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//canned-messages?title=&message=&public=true&integration_id=65893348&media_url=&contact_id=65893348","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["canned-messages"],"query":[{"key":"title","value":""},{"key":"message","value":""},{"key":"public","value":"true"},{"key":"integration_id","value":"65893348"},{"key":"media_url","value":""},{"key":"contact_id","value":"65893348"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"irure enim\"\n}"}],"_postman_id":"674af425-29b0-41a5-8fad-37c1509aaafa"},{"name":"Get saved reply","id":"bfc95b9b-f378-4af1-8dc7-1929da78e5f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//canned-messages/:cannedMessage","description":"<p>You can use this API endpoint to get a single saved reply by the saved reply id. <br /><br />As a result of this API request, a saved reply is obtained from the list of all available saved replies.</p>\n","urlObject":{"path":["canned-messages",":cannedMessage"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"33534088-c19f-4bf3-8d89-2135d4391b93","description":{"content":"<p>(Required) Canned message id</p>\n","type":"text/plain"},"type":"any","value":"","key":"cannedMessage"}]}},"response":[{"id":"ce79863d-0241-4583-b640-48c8038fa576","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//canned-messages/:cannedMessage","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["canned-messages",":cannedMessage"],"variable":[{"key":"cannedMessage","value":"","description":"(Required) Canned message id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 59404587,\n  \"owner_id\": 69798784,\n  \"organization_id\": -51288437,\n  \"integration_id\": -46776615,\n  \"public\": true,\n  \"title\": \"dolor sunt sint\",\n  \"message\": \"aliquip et nostrud officia\",\n  \"shortcut\": \"Duis est ut adipisicing do\",\n  \"media_url\": [\n    {\n      \"url\": \"exercitation aliqua sint ut in\",\n      \"content_type\": \"mollit nulla\"\n    },\n    {\n      \"url\": \"proident ut\",\n      \"content_type\": \"ad elit\"\n    }\n  ]\n}"}],"_postman_id":"bfc95b9b-f378-4af1-8dc7-1929da78e5f9"},{"name":"Update saved reply","id":"aaf5b0f1-4af3-4716-b99a-a03a0c68bdfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//canned-messages/:cannedMessage?title=&message=&public=true&integration_id=65893348&media_url=&contact_id=65893348","description":"<p>Through this API request you are allowed to update a saved reply. The endpoint updates the specified saved reply by setting the values of the properties. <br /><br />Properties that can be modified for saved replies include: </p><ul><li>Contact id with which the saved reply is mapped</li> <li>Content URLs for media</li> <li>Public key switcher (to choose whether to make the saved reply private or visible to all the users)</li></ul><p>Any parameters not provided will be left unchanged.</p><p></p>\n","urlObject":{"path":["canned-messages",":cannedMessage"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Title</p>\n","type":"text/plain"},"key":"title","value":""},{"description":{"content":"<p>Message</p>\n","type":"text/plain"},"key":"message","value":""},{"description":{"content":"<p>(Required) Public</p>\n","type":"text/plain"},"key":"public","value":"true"},{"description":{"content":"<p>Integration id</p>\n","type":"text/plain"},"key":"integration_id","value":"65893348"},{"description":{"content":"<p>Media url</p>\n","type":"text/plain"},"key":"media_url","value":""},{"description":{"content":"<p>Contact id</p>\n","type":"text/plain"},"key":"contact_id","value":"65893348"}],"variable":[{"id":"e9337da5-92cb-4a92-b15e-72d676dcf3e5","description":{"content":"<p>(Required) Canned message id</p>\n","type":"text/plain"},"type":"any","value":"","key":"cannedMessage"}]}},"response":[{"id":"770b1114-3f66-40cf-a1d9-57d9d47b4ba2","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//canned-messages/:cannedMessage?title=&message=&public=true&integration_id=65893348&media_url=&contact_id=65893348","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["canned-messages",":cannedMessage"],"query":[{"key":"title","value":""},{"key":"message","value":""},{"key":"public","value":"true"},{"key":"integration_id","value":"65893348"},{"key":"media_url","value":""},{"key":"contact_id","value":"65893348"}],"variable":[{"key":"cannedMessage","value":"","description":"(Required) Canned message id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 59404587,\n  \"owner_id\": 69798784,\n  \"organization_id\": -51288437,\n  \"integration_id\": -46776615,\n  \"public\": true,\n  \"title\": \"dolor sunt sint\",\n  \"message\": \"aliquip et nostrud officia\",\n  \"shortcut\": \"Duis est ut adipisicing do\",\n  \"media_url\": [\n    {\n      \"url\": \"exercitation aliqua sint ut in\",\n      \"content_type\": \"mollit nulla\"\n    },\n    {\n      \"url\": \"proident ut\",\n      \"content_type\": \"ad elit\"\n    }\n  ]\n}"},{"id":"2ddad593-420c-44df-8dca-67da63e645b8","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//canned-messages/:cannedMessage?title=&message=&public=true&integration_id=65893348&media_url=&contact_id=65893348","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["canned-messages",":cannedMessage"],"query":[{"key":"title","value":""},{"key":"message","value":""},{"key":"public","value":"true"},{"key":"integration_id","value":"65893348"},{"key":"media_url","value":""},{"key":"contact_id","value":"65893348"}],"variable":[{"key":"cannedMessage","value":"","description":"(Required) Canned message id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"irure enim\"\n}"}],"_postman_id":"aaf5b0f1-4af3-4716-b99a-a03a0c68bdfb"},{"name":"Delete saved reply","id":"bad3257b-03f3-417e-868d-9c7897cc5b74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//canned-messages/:cannedMessage","description":"<p>You can use this API endpoint to delete a saved reply by its id. <br /><br />As a result, through the request, any identified saved reply with its corresponding properties will automatically be removed.</p>\n","urlObject":{"path":["canned-messages",":cannedMessage"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"b0e2343b-6420-4c6a-beba-96d18cf42e2b","description":{"content":"<p>(Required) Canned message id</p>\n","type":"text/plain"},"type":"any","value":"","key":"cannedMessage"}]}},"response":[{"id":"19713513-b2d0-42a6-ab85-b9f552f4d72f","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//canned-messages/:cannedMessage","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["canned-messages",":cannedMessage"],"variable":[{"key":"cannedMessage","value":"","description":"(Required) Canned message id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"[]\""}],"_postman_id":"bad3257b-03f3-417e-868d-9c7897cc5b74"},{"name":"Search for saved replies","id":"b462c4e6-81ae-45c8-8154-36fc7ad41cf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//canned-messages/search?integration_id=&search=&length=&page=&contact_id=","description":"<p>This API endpoint enables you to search for saved replies matching a query. The search is based on the сontact id.  <br /><br />In order to easily find the saved reply you need, it is allowed to specify the number of results per page and filter saved replies by title. <br /><br />The request returns a list of saved replies containing a specific search term.</p>\n","urlObject":{"path":["canned-messages","search"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Integration id</p>\n","type":"text/plain"},"key":"integration_id","value":""},{"description":{"content":"<p>Filter by title, message</p>\n","type":"text/plain"},"key":"search","value":""},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"length","value":""},{"description":{"content":"<p>Page</p>\n","type":"text/plain"},"key":"page","value":""},{"description":{"content":"<p>Contact id</p>\n","type":"text/plain"},"key":"contact_id","value":""}],"variable":[]}},"response":[{"id":"5809a0bd-491b-4fda-96b8-4afea6649854","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//canned-messages/search?integration_id=&search=&length=&page=&contact_id=","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["canned-messages","search"],"query":[{"key":"integration_id","value":""},{"key":"search","value":""},{"key":"length","value":""},{"key":"page","value":""},{"key":"contact_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": -46051934,\n    \"owner_id\": -9755876,\n    \"organization_id\": -71314405,\n    \"integration_id\": 50453970,\n    \"public\": false,\n    \"title\": \"sint quis irure occaecat\",\n    \"message\": \"in ad consectetur\",\n    \"shortcut\": \"et enim est\",\n    \"media_url\": [\n      {\n        \"url\": \"sit voluptate\",\n        \"content_type\": \"amet ullamco irure occaecat sint\"\n      },\n      {\n        \"url\": \"labore consequat sunt anim e\",\n        \"content_type\": \"consectetur cillum id\"\n      }\n    ]\n  }\n}"}],"_postman_id":"b462c4e6-81ae-45c8-8154-36fc7ad41cf0"}],"id":"bf3709c4-c297-45e6-8aed-18b5468a8dd3","description":"<p>Saved replies represent short templates of message fragments that can be used during message composition. They are created, saved and triggered using shortcuts. Saved replies can be used within various sections in the app, such as: Conversations, Broadcasts, Triggers, Keywords, Business Hours, etc. <br /><br />Saved Replies is a powerful tool to automate responses for frequent chat queries and conversation scenarios to help save time on common replies. SalesMsg’s Saved Replies APIs enable your application to manage and interact with pre-written message fragments.</p>\n","_postman_id":"bf3709c4-c297-45e6-8aed-18b5468a8dd3"},{"name":"Teams","item":[{"name":"Change owner","id":"49c3dd69-6d97-4e2b-b8a5-f173721a0008","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/change-owner?owner_id=38894851.6112895","description":"<p>Change owner</p>\n","urlObject":{"path":["teams",":team","change-owner"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Member ID</p>\n","type":"text/plain"},"key":"owner_id","value":"38894851.6112895"}],"variable":[{"id":"8b859c2b-2362-4759-856f-548776cc5b12","description":{"content":"<p>(Required) Team</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"e56f6f80-93a7-444d-af03-9b13c9948cd8","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/change-owner?owner_id=38894851.6112895","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","change-owner"],"query":[{"key":"owner_id","value":"38894851.6112895"}],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 66676258,\n    \"email\": \"ut adipisicing incididunt aliquip cupidatat\",\n    \"first_name\": \"sint pariatur\",\n    \"last_name\": \"do ipsum\",\n    \"full_name\": \"magna voluptate\",\n    \"role\": \"qui proident\",\n    \"inbox_id\": 30179371,\n    \"organization_id\": 22973591,\n    \"photo_url\": \"velit occaecat la\",\n    \"unread\": -72940675,\n    \"number\": \"reprehenderit proident dolore velit\",\n    \"formatted_number\": \"ad\",\n    \"organizationNumber\": [\n      {\n        \"id\": -25282161,\n        \"country\": \"in \",\n        \"number\": \"labore\",\n        \"formatted_number\": \"esse exercitation culpa\",\n        \"mms\": \"voluptate anim exercitation eu\"\n      },\n      {\n        \"id\": 80758208,\n        \"country\": \"Ut in\",\n        \"number\": \"aute\",\n        \"formatted_number\": \"et amet enim\",\n        \"mms\": \"laboris velit Lorem sed\"\n      }\n    ],\n    \"userPermissions\": [\n      \"sed cillum\",\n      \"aliqua amet dolor incididunt nulla\"\n    ]\n  },\n  {\n    \"id\": -34557383,\n    \"email\": \"magna sit do aute\",\n    \"first_name\": \"laborum aute ipsum\",\n    \"last_name\": \"commodo\",\n    \"full_name\": \"labore consequat\",\n    \"role\": \"nulla aliqua quis voluptate\",\n    \"inbox_id\": -42670344,\n    \"organization_id\": -48018160,\n    \"photo_url\": \"cillum do ut irure\",\n    \"unread\": 52708385,\n    \"number\": \"irure et min\",\n    \"formatted_number\": \"occaecat\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26667117,\n        \"country\": \"aute Ex\",\n        \"number\": \"sunt ex et veniam\",\n        \"formatted_number\": \"Ut dolore\",\n        \"mms\": \"Duis tempor incididunt aute\"\n      },\n      {\n        \"id\": 20029485,\n        \"country\": \"cillum labore elit nisi\",\n        \"number\": \"reprehenderit eu consequat\",\n        \"formatted_number\": \"qui eu sed cupida\",\n        \"mms\": \"velit sunt deserunt\"\n      }\n    ],\n    \"userPermissions\": [\n      \"tempor ut sint\",\n      \"minim mollit dolore in velit\"\n    ]\n  }\n]"},{"id":"a126e384-0f01-4698-98ce-0b919a47a865","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/change-owner?owner_id=38894851.6112895","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","change-owner"],"query":[{"key":"owner_id","value":"38894851.6112895"}],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"owner_id\": \"velit in dolor voluptate sit\"\n}"}],"_postman_id":"49c3dd69-6d97-4e2b-b8a5-f173721a0008"},{"name":"Get teams (inboxes)","id":"8cf3411b-a3ab-4205-964d-641af373cf49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams","description":"<p>Allows for obtaining information about teams. The API endpoint returns a list of all the teams with their properties and metadata, such as Team id, Organization, Owner, User names, Team initiation date, and the others. Find them below.</p>\n","urlObject":{"path":["teams"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"40eb5666-8e4b-4cd9-b0f0-6d32708078d0","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//teams"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 17976500,\n    \"organization_id\": -95813569,\n    \"owner_id\": -28519762,\n    \"name\": \"dolor deserunt\",\n    \"created_at\": \"exercitation amet\",\n    \"updated_at\": \"eu ullamco anim\",\n    \"number\": {\n      \"id\": 23857293,\n      \"organization_id\": 96272345,\n      \"country\": \"quis\",\n      \"state\": \"velit ut nulla\",\n      \"city\": \"mollit nulla magna aute voluptate\",\n      \"number\": \"mollit in\",\n      \"number_vendor_id\": 2308093,\n      \"country_calling_code\": \"voluptate Excepteur consectetur\",\n      \"national_number\": \"sint culpa id\",\n      \"formattedNumber\": \"est veniam dolor officia in\",\n      \"formatted_number\": \"labore reprehenderit in sed amet\",\n      \"short_code\": 27810413,\n      \"is_landline\": -13525397,\n      \"is_toll_free\": false,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": false,\n      \"has_profile\": true,\n      \"verified_status\": \"culpa Duis i\",\n      \"area_code\": {\n        \"id\": -54244184,\n        \"area_code\": \"consequat\",\n        \"state_code\": \"ex\",\n        \"state_name\": \"sunt nisi\",\n        \"country_code\": \"culpa irure reprehenderit\",\n        \"time_zone\": \"in\",\n        \"group_id\": 33831214\n      },\n      \"landline\": {\n        \"id\": 82734579,\n        \"number_id\": 65069251,\n        \"address_sid\": \"dolore cillu\",\n        \"sid\": \"irure\",\n        \"document_sid\": \"Lo\",\n        \"status\": \"ut Ut est\",\n        \"verification_attempts\": -64290757,\n        \"last_verify_attempt_at\": \"id\",\n        \"landline_name\": \"dolor\",\n        \"street_address\": \"mollit id cillum sunt veniam\",\n        \"city\": \"nulla esse\",\n        \"state\": \"in dolor\",\n        \"zip_code\": \"aliqua sed aliquip id\",\n        \"completed\": 23524774,\n        \"created_at\": \"Ut aliquip\",\n        \"updated_at\": \"reprehenderit id ut ex aute\"\n      },\n      \"number_vendor\": {\n        \"id\": -81135814,\n        \"is_active\": false,\n        \"key\": \"tempo\",\n        \"name\": \"nostrud aliqua\",\n        \"credentials_prefix\": \"in velit nostrud quis\",\n        \"twilio_sid\": \"pa\",\n        \"twilio_auth_token\": \"in in\",\n        \"is_billable\": -15843236,\n        \"created_at\": \"ut id sed proident\",\n        \"updated_at\": \"do officia\"\n      },\n      \"call_forwarding\": {\n        \"id\": 98402287,\n        \"number_id\": 31466553,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"Lorem commodo\",\n        \"country\": \"sunt elit fugiat est\",\n        \"number\": \"in laborum quis velit\",\n        \"country_calling_code\": \"amet consequat eiusmod mollit\",\n        \"national_number\": \"dolore incididunt dolor sint\",\n        \"formatted_number\": \"sit mollit\",\n        \"extension\": \"ipsum occaecat in\",\n        \"created_at\": \"amet Excepteur ullamco sunt\",\n        \"updated_at\": \"proident adipisicing eiusmod cillum\"\n      },\n      \"numberable_id\": 35439322,\n      \"numberable_type\": \"dolore dolore consectetur aute\",\n      \"numberable\": {\n        \"id\": 44281955,\n        \"organization_id\": -62695126,\n        \"owner_id\": -94589572,\n        \"team_id\": 17785108,\n        \"name\": \"Ut sit id\",\n        \"created_at\": \"esse Lorem cupidatat\",\n        \"updated_at\": \"cillum nostrud\"\n      }\n    },\n    \"numbers\": [\n      {\n        \"id\": 91502013,\n        \"organization_id\": 73069940,\n        \"country\": \"aliquip voluptate proident ex\",\n        \"state\": \"consequat Duis culpa\",\n        \"city\": \"mollit magna Duis sint\",\n        \"number\": \"fugiat in voluptate esse\",\n        \"number_vendor_id\": -45434357,\n        \"country_calling_code\": \"laborum\",\n        \"national_number\": \"veniam voluptate\",\n        \"formattedNumber\": \"dolor in\",\n        \"formatted_number\": \"aliqua aute fugiat Duis non\",\n        \"short_code\": 15198711,\n        \"is_landline\": 12097993,\n        \"is_toll_free\": false,\n        \"is_aircall\": false,\n        \"voice\": false,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": true,\n        \"mms\": false,\n        \"disabled\": false,\n        \"has_profile\": true,\n        \"verified_status\": \"dolore deserunt exercit\",\n        \"area_code\": {\n          \"id\": -76481045,\n          \"area_code\": \"in eiusmod pariatur deserunt culpa\",\n          \"state_code\": \"ad eu consequat officia\",\n          \"state_name\": \"non\",\n          \"country_code\": \"cupidatat deserunt anim officia\",\n          \"time_zone\": \"tempor laboris\",\n          \"group_id\": 9375417\n        },\n        \"landline\": {\n          \"id\": -38569458,\n          \"number_id\": -52953738,\n          \"address_sid\": \"voluptate non ullamco\",\n          \"sid\": \"pariatur amet velit quis\",\n          \"document_sid\": \"ex pariatur\",\n          \"status\": \"tempor magna ea consectetur\",\n          \"verification_attempts\": 52229777,\n          \"last_verify_attempt_at\": \"aliqua ut proident non\",\n          \"landline_name\": \"do\",\n          \"street_address\": \"laborum non magna\",\n          \"city\": \"do \",\n          \"state\": \"do Lorem consequat cupidatat\",\n          \"zip_code\": \"eiusmod do amet\",\n          \"completed\": -11929745,\n          \"created_at\": \"ut cupidatat est ipsum quis\",\n          \"updated_at\": \"irure velit\"\n        },\n        \"number_vendor\": {\n          \"id\": 43351402,\n          \"is_active\": false,\n          \"key\": \"id nulla laborum labore\",\n          \"name\": \"ut mollit\",\n          \"credentials_prefix\": \"ex culpa\",\n          \"twilio_sid\": \"dolor enim ex eiusmod dolor\",\n          \"twilio_auth_token\": \"cupidatat culpa\",\n          \"is_billable\": 17228913,\n          \"created_at\": \"sit irure quis nostrud aliqua\",\n          \"updated_at\": \"dolore Duis aliqua\"\n        },\n        \"call_forwarding\": {\n          \"id\": 36654755,\n          \"number_id\": -24102443,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"mollit in laboris sint\",\n          \"country\": \"ut quis\",\n          \"number\": \"amet reprehenderit\",\n          \"country_calling_code\": \"ut nostrud Ut ut\",\n          \"national_number\": \"consectetur ut id ullamco fugiat\",\n          \"formatted_number\": \"tempor laboris\",\n          \"extension\": \"Duis\",\n          \"created_at\": \"ut veniam sint sed\",\n          \"updated_at\": \"pariatur non aliqua\"\n        },\n        \"numberable_id\": 97667190,\n        \"numberable_type\": \"voluptate in eiusmod Lorem\",\n        \"numberable\": {\n          \"id\": 63344973,\n          \"organization_id\": -82448009,\n          \"owner_id\": -41785661,\n          \"team_id\": -81261447,\n          \"name\": \"cillum veniam dolore\",\n          \"created_at\": \"proident adipisicing\",\n          \"updated_at\": \"ut sunt quis\"\n        }\n      },\n      {\n        \"id\": -37008644,\n        \"organization_id\": -86160639,\n        \"country\": \"est qui laborum\",\n        \"state\": \"consequat tempor\",\n        \"city\": \"nulla reprehenderit consectetur dolor\",\n        \"number\": \"Excepteur ut amet\",\n        \"number_vendor_id\": 71540756,\n        \"country_calling_code\": \"consectetur esse\",\n        \"national_number\": \"ut pariatur\",\n        \"formattedNumber\": \"occaecat id ut\",\n        \"formatted_number\": \"nostrud sunt ex consectetur Lorem\",\n        \"short_code\": -97310560,\n        \"is_landline\": -97686204,\n        \"is_toll_free\": false,\n        \"is_aircall\": false,\n        \"voice\": false,\n        \"use_organization_call_settings\": false,\n        \"voice_outbound\": false,\n        \"mms\": true,\n        \"disabled\": false,\n        \"has_profile\": false,\n        \"verified_status\": \"minim nulla ci\",\n        \"area_code\": {\n          \"id\": -64123362,\n          \"area_code\": \"ex eu cillum\",\n          \"state_code\": \"sit\",\n          \"state_name\": \"aliquip anim consectetur mollit\",\n          \"country_code\": \"fugiat\",\n          \"time_zone\": \"aliqua et dolore enim\",\n          \"group_id\": 55315873\n        },\n        \"landline\": {\n          \"id\": -56077697,\n          \"number_id\": -10930276,\n          \"address_sid\": \"voluptate in in\",\n          \"sid\": \"E\",\n          \"document_sid\": \"reprehenderit ut do non\",\n          \"status\": \"Lorem eu\",\n          \"verification_attempts\": 55543134,\n          \"last_verify_attempt_at\": \"anim sed consequat deserunt consectetur\",\n          \"landline_name\": \"occaecat ipsum sit incididunt labore\",\n          \"street_address\": \"aliquip tempor esse est\",\n          \"city\": \"aute nulla laboris qui\",\n          \"state\": \"officia enim\",\n          \"zip_code\": \"mollit eiusmod consequat\",\n          \"completed\": 26592974,\n          \"created_at\": \"Duis\",\n          \"updated_at\": \"ut adipisicing\"\n        },\n        \"number_vendor\": {\n          \"id\": -57167548,\n          \"is_active\": false,\n          \"key\": \"labore qui sed\",\n          \"name\": \"laborum et officia\",\n          \"credentials_prefix\": \"mollit eiusmod\",\n          \"twilio_sid\": \"sunt sed\",\n          \"twilio_auth_token\": \"minim do elit est nulla\",\n          \"is_billable\": -10998821,\n          \"created_at\": \"magna nostrud\",\n          \"updated_at\": \"pariatur ut commodo\"\n        },\n        \"call_forwarding\": {\n          \"id\": -69029990,\n          \"number_id\": 19431385,\n          \"is_active\": true,\n          \"is_screening\": false,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"amet ad ut elit\",\n          \"country\": \"eiusmod officia\",\n          \"number\": \"mollit sed\",\n          \"country_calling_code\": \"adipisicing mollit\",\n          \"national_number\": \"in dolore Lorem magna\",\n          \"formatted_number\": \"deserunt Lorem do\",\n          \"extension\": \"aute dolore\",\n          \"created_at\": \"veniam fugiat exercitation eiusmod\",\n          \"updated_at\": \"Ut sit dolor nisi\"\n        },\n        \"numberable_id\": -17827057,\n        \"numberable_type\": \"dolor id ullamco\",\n        \"numberable\": {\n          \"id\": -91914405,\n          \"organization_id\": 7550358,\n          \"owner_id\": 62215340,\n          \"team_id\": 70405676,\n          \"name\": \"anim commodo\",\n          \"created_at\": \"consequat reprehenderit\",\n          \"updated_at\": \"est fugiat a\"\n        }\n      }\n    ]\n  },\n  {\n    \"id\": 47642468,\n    \"organization_id\": 49372752,\n    \"owner_id\": -20402824,\n    \"name\": \"nulla eu exercitation et\",\n    \"created_at\": \"velit quis\",\n    \"updated_at\": \"Lorem dolore\",\n    \"number\": {\n      \"id\": -40467194,\n      \"organization_id\": 64387127,\n      \"country\": \"laborum reprehenderit esse\",\n      \"state\": \"voluptate anim\",\n      \"city\": \"elit minim esse\",\n      \"number\": \"ut proide\",\n      \"number_vendor_id\": 58354631,\n      \"country_calling_code\": \"aliquip\",\n      \"national_number\": \"dolore\",\n      \"formattedNumber\": \"magna\",\n      \"formatted_number\": \"aute ut enim consequat\",\n      \"short_code\": -40618382,\n      \"is_landline\": -88622712,\n      \"is_toll_free\": false,\n      \"is_aircall\": false,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"ullamco pariatur sed consectetur\",\n      \"area_code\": {\n        \"id\": -16375533,\n        \"area_code\": \"irure dolor et Ut\",\n        \"state_code\": \"cillum commodo\",\n        \"state_name\": \"aliquip occaecat veniam eiusmod\",\n        \"country_code\": \"est Lorem fugiat reprehenderit\",\n        \"time_zone\": \"deserunt labore minim est\",\n        \"group_id\": 92453849\n      },\n      \"landline\": {\n        \"id\": -99202671,\n        \"number_id\": -82777075,\n        \"address_sid\": \"nulla consect\",\n        \"sid\": \"ea proident commodo Excepteur\",\n        \"document_sid\": \"enim incididunt ipsum ea quis\",\n        \"status\": \"cillum in a\",\n        \"verification_attempts\": -82566286,\n        \"last_verify_attempt_at\": \"Duis laborum elit\",\n        \"landline_name\": \"aliqua et ipsum\",\n        \"street_address\": \"occaecat cillum\",\n        \"city\": \"quis veniam\",\n        \"state\": \"velit esse eu amet\",\n        \"zip_code\": \"dolor sunt\",\n        \"completed\": -87126110,\n        \"created_at\": \"est laboris nisi ad\",\n        \"updated_at\": \"est cupidatat sunt\"\n      },\n      \"number_vendor\": {\n        \"id\": -12958524,\n        \"is_active\": true,\n        \"key\": \"ut consectetur ipsum\",\n        \"name\": \"laborum sunt quis dolor\",\n        \"credentials_prefix\": \"Ut mollit irure\",\n        \"twilio_sid\": \"eu Ut ut elit\",\n        \"twilio_auth_token\": \"magna ir\",\n        \"is_billable\": 60521922,\n        \"created_at\": \"ut elit laborum\",\n        \"updated_at\": \"tempor esse ipsum nulla Excepteur\"\n      },\n      \"call_forwarding\": {\n        \"id\": 91545035,\n        \"number_id\": 80309275,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"in mollit\",\n        \"country\": \"do ullamco minim veniam\",\n        \"number\": \"\",\n        \"country_calling_code\": \"occaecat tempor Duis sed\",\n        \"national_number\": \"elit laborum quis consectetur\",\n        \"formatted_number\": \"veniam pariatur est Lorem\",\n        \"extension\": \"in Duis tempor esse eu\",\n        \"created_at\": \"nostrud\",\n        \"updated_at\": \"consectetur cupidatat laborum\"\n      },\n      \"numberable_id\": -44768873,\n      \"numberable_type\": \"dolore dolor\",\n      \"numberable\": {\n        \"id\": -13320715,\n        \"organization_id\": -54912921,\n        \"owner_id\": 88969394,\n        \"team_id\": -70449992,\n        \"name\": \"Lorem aliquip elit nulla\",\n        \"created_at\": \"Duis\",\n        \"updated_at\": \"ex tempor ut qui\"\n      }\n    },\n    \"numbers\": [\n      {\n        \"id\": 71415105,\n        \"organization_id\": 15544813,\n        \"country\": \"magna cillum\",\n        \"state\": \"sit deserunt\",\n        \"city\": \"eu\",\n        \"number\": \"cupidatat dolor ipsum\",\n        \"number_vendor_id\": 84632330,\n        \"country_calling_code\": \"sint ullamco veniam incididunt anim\",\n        \"national_number\": \"velit nostrud sunt magna\",\n        \"formattedNumber\": \"amet velit dolor sit\",\n        \"formatted_number\": \"ipsum ex voluptate\",\n        \"short_code\": 62448365,\n        \"is_landline\": 31797201,\n        \"is_toll_free\": true,\n        \"is_aircall\": false,\n        \"voice\": false,\n        \"use_organization_call_settings\": false,\n        \"voice_outbound\": false,\n        \"mms\": true,\n        \"disabled\": false,\n        \"has_profile\": false,\n        \"verified_status\": \"tempor culpa laboris\",\n        \"area_code\": {\n          \"id\": -52223413,\n          \"area_code\": \"Excepteur pariatur\",\n          \"state_code\": \"ex consectetur\",\n          \"state_name\": \"consectetur\",\n          \"country_code\": \"dolor cillum\",\n          \"time_zone\": \"ullamco commodo laboris\",\n          \"group_id\": 9994202\n        },\n        \"landline\": {\n          \"id\": 81424716,\n          \"number_id\": 88671029,\n          \"address_sid\": \"proident esse amet cillum deserunt\",\n          \"sid\": \"ipsum\",\n          \"document_sid\": \"cillum laboris proident\",\n          \"status\": \"cillum eiusmod l\",\n          \"verification_attempts\": 9220541,\n          \"last_verify_attempt_at\": \"incididunt commodo\",\n          \"landline_name\": \"aute dolore\",\n          \"street_address\": \"velit ad\",\n          \"city\": \"eu en\",\n          \"state\": \"sunt qui nisi\",\n          \"zip_code\": \"cillum magna aliquip elit\",\n          \"completed\": 97091795,\n          \"created_at\": \"sint laborum in\",\n          \"updated_at\": \"eiusmod dolore commodo\"\n        },\n        \"number_vendor\": {\n          \"id\": 80529221,\n          \"is_active\": true,\n          \"key\": \"cillum sit ad\",\n          \"name\": \"veniam mollit ullamco sit\",\n          \"credentials_prefix\": \"non eu Duis\",\n          \"twilio_sid\": \"Duis fugiat Ut nulla\",\n          \"twilio_auth_token\": \"voluptate in mollit do proident\",\n          \"is_billable\": -19237833,\n          \"created_at\": \"Excepteur sed exercitation\",\n          \"updated_at\": \"dolor minim et\"\n        },\n        \"call_forwarding\": {\n          \"id\": 86441928,\n          \"number_id\": 67275663,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"id Ut eu et\",\n          \"country\": \"ea\",\n          \"number\": \"elit sunt ea aliquip\",\n          \"country_calling_code\": \"ei\",\n          \"national_number\": \"dolore esse consequat\",\n          \"formatted_number\": \"id culpa Excepteur\",\n          \"extension\": \"aliqua et ad velit\",\n          \"created_at\": \"consequat dolor dolore\",\n          \"updated_at\": \"occaecat enim qui Lorem ut\"\n        },\n        \"numberable_id\": -43277223,\n        \"numberable_type\": \"anim in ea aliquip\",\n        \"numberable\": {\n          \"id\": -33835293,\n          \"organization_id\": 5958890,\n          \"owner_id\": -12670692,\n          \"team_id\": -80336276,\n          \"name\": \"aliquip\",\n          \"created_at\": \"id sunt\",\n          \"updated_at\": \"sunt elit deserunt\"\n        }\n      },\n      {\n        \"id\": 31230825,\n        \"organization_id\": -1627641,\n        \"country\": \"laboris\",\n        \"state\": \"ullamco proident nostrud\",\n        \"city\": \"consequat ut sed ad\",\n        \"number\": \"aute dolor\",\n        \"number_vendor_id\": 43546763,\n        \"country_calling_code\": \"eiusmod quis\",\n        \"national_number\": \"consequat minim qui cupidatat\",\n        \"formattedNumber\": \"commodo velit pariatur sit\",\n        \"formatted_number\": \"nulla in incididunt dolore\",\n        \"short_code\": -12121050,\n        \"is_landline\": -7027263,\n        \"is_toll_free\": true,\n        \"is_aircall\": false,\n        \"voice\": false,\n        \"use_organization_call_settings\": false,\n        \"voice_outbound\": true,\n        \"mms\": false,\n        \"disabled\": true,\n        \"has_profile\": false,\n        \"verified_status\": \"occaecat ut\",\n        \"area_code\": {\n          \"id\": -57744163,\n          \"area_code\": \"mollit\",\n          \"state_code\": \"adipisicing est\",\n          \"state_name\": \"dol\",\n          \"country_code\": \"Duis fugiat enim aliquip eu\",\n          \"time_zone\": \"labore laboris dolor\",\n          \"group_id\": -85439977\n        },\n        \"landline\": {\n          \"id\": -6638570,\n          \"number_id\": 90463794,\n          \"address_sid\": \"commodo minim incididunt\",\n          \"sid\": \"esse\",\n          \"document_sid\": \"cillum aliquip fugiat\",\n          \"status\": \"dolore mollit tempor\",\n          \"verification_attempts\": 39872726,\n          \"last_verify_attempt_at\": \"elit in eu esse dolor\",\n          \"landline_name\": \"non ut dolor sint irure\",\n          \"street_address\": \"do cupidatat ipsum\",\n          \"city\": \"irure\",\n          \"state\": \"e\",\n          \"zip_code\": \"proident dolor in\",\n          \"completed\": -51588326,\n          \"created_at\": \"consequat dolor in laborum\",\n          \"updated_at\": \"cupidatat\"\n        },\n        \"number_vendor\": {\n          \"id\": -90164906,\n          \"is_active\": true,\n          \"key\": \"dolore reprehenderit est\",\n          \"name\": \"Excepteur tempor pariatur aliquip\",\n          \"credentials_prefix\": \"qui Excepteur aute exercitation\",\n          \"twilio_sid\": \"occaecat pariatur\",\n          \"twilio_auth_token\": \"voluptate occa\",\n          \"is_billable\": -49384076,\n          \"created_at\": \"nostrud nisi fugiat ut\",\n          \"updated_at\": \"qui ess\"\n        },\n        \"call_forwarding\": {\n          \"id\": -19209095,\n          \"number_id\": -74942260,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"pariatur\",\n          \"country\": \"Duis quis\",\n          \"number\": \"proident veniam sed ad\",\n          \"country_calling_code\": \"ea elit\",\n          \"national_number\": \"aliquip esse exercitation\",\n          \"formatted_number\": \"do reprehender\",\n          \"extension\": \"ut culpa tempor\",\n          \"created_at\": \"enim\",\n          \"updated_at\": \"in Duis\"\n        },\n        \"numberable_id\": 56526078,\n        \"numberable_type\": \"labore qui\",\n        \"numberable\": {\n          \"id\": -37008177,\n          \"organization_id\": 7514572,\n          \"owner_id\": -84160092,\n          \"team_id\": 77729364,\n          \"name\": \"magna occaecat ullamco\",\n          \"created_at\": \"voluptate labore\",\n          \"updated_at\": \"laboris quis ut\"\n        }\n      }\n    ]\n  }\n]"}],"_postman_id":"8cf3411b-a3ab-4205-964d-641af373cf49"},{"name":"Create team","id":"1e2da167-cda1-4810-8ea5-d9c8c27bc88a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams?number=laborum&name=laborum&number_vendor_id=38894851.6112895&members[]=26601370.028385937&members[]=-75562993.1831482&vendor_id=laborum","description":"<p>Create team</p>\n","urlObject":{"path":["teams"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Number</p>\n","type":"text/plain"},"key":"number","value":"laborum"},{"description":{"content":"<p>(Required) Name</p>\n","type":"text/plain"},"key":"name","value":"laborum"},{"description":{"content":"<p>(Required) Number Vendor ID</p>\n","type":"text/plain"},"key":"number_vendor_id","value":"38894851.6112895"},{"description":{"content":"<p>(Required) Member IDs</p>\n","type":"text/plain"},"key":"members[]","value":"26601370.028385937"},{"description":{"content":"<p>(Required) Member IDs</p>\n","type":"text/plain"},"key":"members[]","value":"-75562993.1831482"},{"description":{"content":"<p>Vendor ID</p>\n","type":"text/plain"},"key":"vendor_id","value":"laborum"}],"variable":[]}},"response":[{"id":"00145945-0d08-4f3d-9dcd-305ca3527d1a","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams?number=laborum&name=laborum&number_vendor_id=38894851.6112895&members[]=42476275.02805784&members[]=36935972.86530301&vendor_id=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams"],"query":[{"key":"number","value":"laborum"},{"key":"name","value":"laborum"},{"key":"number_vendor_id","value":"38894851.6112895"},{"key":"members[]","value":"42476275.02805784"},{"key":"members[]","value":"36935972.86530301"},{"key":"vendor_id","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 46337981,\n  \"organization_id\": -54253047,\n  \"owner_id\": 17163234,\n  \"name\": \"pariatur fugiat non anim\",\n  \"created_at\": \"Duis dolor elit eiusmod sit\",\n  \"updated_at\": \"culpa incididunt cillum\",\n  \"number\": {\n    \"id\": -31790645,\n    \"organization_id\": -26620559,\n    \"country\": \"pariatur\",\n    \"state\": \"eu amet tempor exercitation sunt\",\n    \"city\": \"ut Ut in elit nostrud\",\n    \"number\": \"do Ut\",\n    \"number_vendor_id\": 52927167,\n    \"country_calling_code\": \"Ut id cupidatat\",\n    \"national_number\": \"aliquip \",\n    \"formattedNumber\": \"eu proident sed\",\n    \"formatted_number\": \"labo\",\n    \"short_code\": 77808715,\n    \"is_landline\": -19375680,\n    \"is_toll_free\": true,\n    \"is_aircall\": true,\n    \"voice\": true,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": false,\n    \"verified_status\": \"elit occaecat enim non\",\n    \"area_code\": {\n      \"id\": -39334518,\n      \"area_code\": \"nulla pariatur\",\n      \"state_code\": \"qui cupidatat dolor\",\n      \"state_name\": \"esse\",\n      \"country_code\": \"voluptate culpa do dolore reprehenderit\",\n      \"time_zone\": \"sit quis ullamco ex enim\",\n      \"group_id\": -18014851\n    },\n    \"landline\": {\n      \"id\": 52618197,\n      \"number_id\": -62653768,\n      \"address_sid\": \"Lorem exercitation proident incididunt\",\n      \"sid\": \"pariatur aute nostrud Lorem deserunt\",\n      \"document_sid\": \"commodo aute proident nulla\",\n      \"status\": \"sunt\",\n      \"verification_attempts\": -19128739,\n      \"last_verify_attempt_at\": \"minim\",\n      \"landline_name\": \"id\",\n      \"street_address\": \"ea eu\",\n      \"city\": \"dolor\",\n      \"state\": \"cillum fugiat\",\n      \"zip_code\": \"eu Excepteur veniam do\",\n      \"completed\": 34206237,\n      \"created_at\": \"in amet sit\",\n      \"updated_at\": \"sunt\"\n    },\n    \"number_vendor\": {\n      \"id\": 72075618,\n      \"is_active\": true,\n      \"key\": \"dolor dolor ea culpa\",\n      \"name\": \"Excepteur\",\n      \"credentials_prefix\": \"ut aute esse fugiat\",\n      \"twilio_sid\": \"aute minim in Excepteur\",\n      \"twilio_auth_token\": \"do\",\n      \"is_billable\": 82280193,\n      \"created_at\": \"et consequat anim\",\n      \"updated_at\": \"pariatur\"\n    },\n    \"call_forwarding\": {\n      \"id\": 87424077,\n      \"number_id\": -15392638,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"\",\n      \"country\": \"nisi amet dolore ut\",\n      \"number\": \"in pariatur ea\",\n      \"country_calling_code\": \"dolor ex do consectetur\",\n      \"national_number\": \"est veniam Duis et\",\n      \"formatted_number\": \"nisi consequat do\",\n      \"extension\": \"in esse voluptate\",\n      \"created_at\": \"ut laborum cupidatat in eu\",\n      \"updated_at\": \"proident commodo in\"\n    },\n    \"numberable_id\": 22690736,\n    \"numberable_type\": \"aliquip veniam do qui magna\",\n    \"numberable\": {\n      \"id\": 48557422,\n      \"organization_id\": -74396900,\n      \"owner_id\": 60716020,\n      \"team_id\": -65173352,\n      \"name\": \"voluptate do\",\n      \"created_at\": \"voluptate sint quis\",\n      \"updated_at\": \"ad exercitation aute\"\n    }\n  },\n  \"numbers\": [\n    {\n      \"id\": 48701471,\n      \"organization_id\": -9991625,\n      \"country\": \"in\",\n      \"state\": \"minim\",\n      \"city\": \"ut amet aute sed\",\n      \"number\": \"proident do esse pari\",\n      \"number_vendor_id\": -92720338,\n      \"country_calling_code\": \"labore laboris dolore tempor\",\n      \"national_number\": \"in exercitation est non aute\",\n      \"formattedNumber\": \"anim dolor\",\n      \"formatted_number\": \"ut consequat amet\",\n      \"short_code\": 20942558,\n      \"is_landline\": 26123861,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"est incididunt qu\",\n      \"area_code\": {\n        \"id\": -85877957,\n        \"area_code\": \"non ea labore adipisicing\",\n        \"state_code\": \"incididunt aute\",\n        \"state_name\": \"consequat sed pariatur qui\",\n        \"country_code\": \"quis irure id est\",\n        \"time_zone\": \"reprehende\",\n        \"group_id\": -57554008\n      },\n      \"landline\": {\n        \"id\": -50662972,\n        \"number_id\": 40949215,\n        \"address_sid\": \"dolore nostrud sint veniam\",\n        \"sid\": \"aliqua reprehenderit\",\n        \"document_sid\": \"fugiat nisi minim nulla\",\n        \"status\": \"Ut sunt\",\n        \"verification_attempts\": 50032905,\n        \"last_verify_attempt_at\": \"laborum sunt minim sed esse\",\n        \"landline_name\": \"Lorem officia sit qui\",\n        \"street_address\": \"laborum officia sint dolor\",\n        \"city\": \"aute irure dolore qui\",\n        \"state\": \"nulla\",\n        \"zip_code\": \"Excepteur anim deserunt\",\n        \"completed\": -4041284,\n        \"created_at\": \"voluptate anim ullamco\",\n        \"updated_at\": \"sit proident mollit nulla\"\n      },\n      \"number_vendor\": {\n        \"id\": 58290283,\n        \"is_active\": true,\n        \"key\": \"culpa laboris Ut consectetur\",\n        \"name\": \"dolor do voluptate\",\n        \"credentials_prefix\": \"labore pariatur laboris in Excepteur\",\n        \"twilio_sid\": \"non id\",\n        \"twilio_auth_token\": \"ut Lore\",\n        \"is_billable\": 85956139,\n        \"created_at\": \"est\",\n        \"updated_at\": \"adipisicing nisi incididunt\"\n      },\n      \"call_forwarding\": {\n        \"id\": -76251017,\n        \"number_id\": 33608250,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"laborum anim dolor dolore\",\n        \"country\": \"in pariatur\",\n        \"number\": \"Lorem\",\n        \"country_calling_code\": \"in tempor esse ad est\",\n        \"national_number\": \"dolor la\",\n        \"formatted_number\": \"consequat ad\",\n        \"extension\": \"nulla irure culpa\",\n        \"created_at\": \"voluptate occaecat laborum dolor nulla\",\n        \"updated_at\": \"ipsum veniam id ea\"\n      },\n      \"numberable_id\": 11697856,\n      \"numberable_type\": \"eiusmod\",\n      \"numberable\": {\n        \"id\": 75835658,\n        \"organization_id\": -18900545,\n        \"owner_id\": 83747537,\n        \"team_id\": -51195356,\n        \"name\": \"magna\",\n        \"created_at\": \"in dolor adipisicing\",\n        \"updated_at\": \"eu sunt e\"\n      }\n    },\n    {\n      \"id\": 87141012,\n      \"organization_id\": 25212490,\n      \"country\": \"laborum incididunt\",\n      \"state\": \"dolore proident reprehenderit ad\",\n      \"city\": \"officia in\",\n      \"number\": \"non eiusmod aliquip nulla Excepteur\",\n      \"number_vendor_id\": -56421471,\n      \"country_calling_code\": \"Duis\",\n      \"national_number\": \"quis\",\n      \"formattedNumber\": \"ex ips\",\n      \"formatted_number\": \"dolore aliquip\",\n      \"short_code\": -46726973,\n      \"is_landline\": 21674046,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"ad officia sit\",\n      \"area_code\": {\n        \"id\": 4031800,\n        \"area_code\": \"ut\",\n        \"state_code\": \"exercitation pariatur eu reprehenderit dolo\",\n        \"state_name\": \"anim dolor\",\n        \"country_code\": \"id occaecat exercitation Ut\",\n        \"time_zone\": \"ut consequat sit\",\n        \"group_id\": -79926811\n      },\n      \"landline\": {\n        \"id\": -34484949,\n        \"number_id\": -65851852,\n        \"address_sid\": \"amet reprehenderit\",\n        \"sid\": \"id eu elit non\",\n        \"document_sid\": \"culpa\",\n        \"status\": \"adipisicing aliquip eiusmod dolor\",\n        \"verification_attempts\": -23812928,\n        \"last_verify_attempt_at\": \"aliqu\",\n        \"landline_name\": \"sed voluptate\",\n        \"street_address\": \"aliqua\",\n        \"city\": \"ad Lorem\",\n        \"state\": \"Ut dolore\",\n        \"zip_code\": \"minim nulla proident ipsum culpa\",\n        \"completed\": 64778162,\n        \"created_at\": \"ad ex irure nulla\",\n        \"updated_at\": \"est in in velit\"\n      },\n      \"number_vendor\": {\n        \"id\": -89610278,\n        \"is_active\": true,\n        \"key\": \"ipsum ut irure culpa pariatur\",\n        \"name\": \"ex \",\n        \"credentials_prefix\": \"Duis ullamco\",\n        \"twilio_sid\": \"est ullamco\",\n        \"twilio_auth_token\": \"dolore esse quis et anim\",\n        \"is_billable\": -87325777,\n        \"created_at\": \"tempor cillum voluptate in\",\n        \"updated_at\": \"irure culpa\"\n      },\n      \"call_forwarding\": {\n        \"id\": 73602365,\n        \"number_id\": 46679111,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"enim veniam deserunt\",\n        \"country\": \"sed ea\",\n        \"number\": \"magna\",\n        \"country_calling_code\": \"voluptate consequat non\",\n        \"national_number\": \"eu ut occaecat\",\n        \"formatted_number\": \"sit aliquip\",\n        \"extension\": \"ad Excepteur aliqua laborum\",\n        \"created_at\": \"officia\",\n        \"updated_at\": \"non ullamco in aliquip\"\n      },\n      \"numberable_id\": 83549194,\n      \"numberable_type\": \"amet reprehenderit consectetur\",\n      \"numberable\": {\n        \"id\": 50065928,\n        \"organization_id\": -47025936,\n        \"owner_id\": 58341916,\n        \"team_id\": -64294576,\n        \"name\": \"dolore non\",\n        \"created_at\": \"aliquip Excepteur amet\",\n        \"updated_at\": \"aute\"\n      }\n    }\n  ]\n}"},{"id":"6c388dd1-17c9-4289-ae0c-078616002f95","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams?number=laborum&name=laborum&number_vendor_id=38894851.6112895&members[]=42476275.02805784&members[]=36935972.86530301&vendor_id=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams"],"query":[{"key":"number","value":"laborum"},{"key":"name","value":"laborum"},{"key":"number_vendor_id","value":"38894851.6112895"},{"key":"members[]","value":"42476275.02805784"},{"key":"members[]","value":"36935972.86530301"},{"key":"vendor_id","value":"laborum"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"7b9d93cd-f7bc-4774-9b85-ad134b3c26a9","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams?number=laborum&name=laborum&number_vendor_id=38894851.6112895&members[]=42476275.02805784&members[]=36935972.86530301&vendor_id=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams"],"query":[{"key":"number","value":"laborum"},{"key":"name","value":"laborum"},{"key":"number_vendor_id","value":"38894851.6112895"},{"key":"members[]","value":"42476275.02805784"},{"key":"members[]","value":"36935972.86530301"},{"key":"vendor_id","value":"laborum"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"number\": \"aute nostrud laboris aliquip\"\n}"}],"_postman_id":"1e2da167-cda1-4810-8ea5-d9c8c27bc88a"},{"name":"Create team (unassigned)","id":"013c7275-d64e-42b1-b298-1f536f1fc130","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/unassigned?name=laborum&numberIds[]=26601370.028385937&numberIds[]=-75562993.1831482&vendor_id=laborum&members[]=26601370.028385937&members[]=-75562993.1831482","description":"<p>Create team (unassigned)</p>\n","urlObject":{"path":["teams","unassigned"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Name</p>\n","type":"text/plain"},"key":"name","value":"laborum"},{"description":{"content":"<p>(Required) Number IDs</p>\n","type":"text/plain"},"key":"numberIds[]","value":"26601370.028385937"},{"description":{"content":"<p>(Required) Number IDs</p>\n","type":"text/plain"},"key":"numberIds[]","value":"-75562993.1831482"},{"description":{"content":"<p>Vendor ID</p>\n","type":"text/plain"},"key":"vendor_id","value":"laborum"},{"description":{"content":"<p>Member IDs</p>\n","type":"text/plain"},"key":"members[]","value":"26601370.028385937"},{"description":{"content":"<p>Member IDs</p>\n","type":"text/plain"},"key":"members[]","value":"-75562993.1831482"}],"variable":[]}},"response":[{"id":"d3cfffa7-d606-4312-aa83-30bdc0b9ac86","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/unassigned?name=laborum&numberIds[]=42476275.02805784&numberIds[]=36935972.86530301&vendor_id=laborum&members[]=42476275.02805784&members[]=36935972.86530301","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","unassigned"],"query":[{"key":"name","value":"laborum"},{"key":"numberIds[]","value":"42476275.02805784"},{"key":"numberIds[]","value":"36935972.86530301"},{"key":"vendor_id","value":"laborum"},{"key":"members[]","value":"42476275.02805784"},{"key":"members[]","value":"36935972.86530301"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 46337981,\n  \"organization_id\": -54253047,\n  \"owner_id\": 17163234,\n  \"name\": \"pariatur fugiat non anim\",\n  \"created_at\": \"Duis dolor elit eiusmod sit\",\n  \"updated_at\": \"culpa incididunt cillum\",\n  \"number\": {\n    \"id\": -31790645,\n    \"organization_id\": -26620559,\n    \"country\": \"pariatur\",\n    \"state\": \"eu amet tempor exercitation sunt\",\n    \"city\": \"ut Ut in elit nostrud\",\n    \"number\": \"do Ut\",\n    \"number_vendor_id\": 52927167,\n    \"country_calling_code\": \"Ut id cupidatat\",\n    \"national_number\": \"aliquip \",\n    \"formattedNumber\": \"eu proident sed\",\n    \"formatted_number\": \"labo\",\n    \"short_code\": 77808715,\n    \"is_landline\": -19375680,\n    \"is_toll_free\": true,\n    \"is_aircall\": true,\n    \"voice\": true,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": false,\n    \"verified_status\": \"elit occaecat enim non\",\n    \"area_code\": {\n      \"id\": -39334518,\n      \"area_code\": \"nulla pariatur\",\n      \"state_code\": \"qui cupidatat dolor\",\n      \"state_name\": \"esse\",\n      \"country_code\": \"voluptate culpa do dolore reprehenderit\",\n      \"time_zone\": \"sit quis ullamco ex enim\",\n      \"group_id\": -18014851\n    },\n    \"landline\": {\n      \"id\": 52618197,\n      \"number_id\": -62653768,\n      \"address_sid\": \"Lorem exercitation proident incididunt\",\n      \"sid\": \"pariatur aute nostrud Lorem deserunt\",\n      \"document_sid\": \"commodo aute proident nulla\",\n      \"status\": \"sunt\",\n      \"verification_attempts\": -19128739,\n      \"last_verify_attempt_at\": \"minim\",\n      \"landline_name\": \"id\",\n      \"street_address\": \"ea eu\",\n      \"city\": \"dolor\",\n      \"state\": \"cillum fugiat\",\n      \"zip_code\": \"eu Excepteur veniam do\",\n      \"completed\": 34206237,\n      \"created_at\": \"in amet sit\",\n      \"updated_at\": \"sunt\"\n    },\n    \"number_vendor\": {\n      \"id\": 72075618,\n      \"is_active\": true,\n      \"key\": \"dolor dolor ea culpa\",\n      \"name\": \"Excepteur\",\n      \"credentials_prefix\": \"ut aute esse fugiat\",\n      \"twilio_sid\": \"aute minim in Excepteur\",\n      \"twilio_auth_token\": \"do\",\n      \"is_billable\": 82280193,\n      \"created_at\": \"et consequat anim\",\n      \"updated_at\": \"pariatur\"\n    },\n    \"call_forwarding\": {\n      \"id\": 87424077,\n      \"number_id\": -15392638,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"\",\n      \"country\": \"nisi amet dolore ut\",\n      \"number\": \"in pariatur ea\",\n      \"country_calling_code\": \"dolor ex do consectetur\",\n      \"national_number\": \"est veniam Duis et\",\n      \"formatted_number\": \"nisi consequat do\",\n      \"extension\": \"in esse voluptate\",\n      \"created_at\": \"ut laborum cupidatat in eu\",\n      \"updated_at\": \"proident commodo in\"\n    },\n    \"numberable_id\": 22690736,\n    \"numberable_type\": \"aliquip veniam do qui magna\",\n    \"numberable\": {\n      \"id\": 48557422,\n      \"organization_id\": -74396900,\n      \"owner_id\": 60716020,\n      \"team_id\": -65173352,\n      \"name\": \"voluptate do\",\n      \"created_at\": \"voluptate sint quis\",\n      \"updated_at\": \"ad exercitation aute\"\n    }\n  },\n  \"numbers\": [\n    {\n      \"id\": 48701471,\n      \"organization_id\": -9991625,\n      \"country\": \"in\",\n      \"state\": \"minim\",\n      \"city\": \"ut amet aute sed\",\n      \"number\": \"proident do esse pari\",\n      \"number_vendor_id\": -92720338,\n      \"country_calling_code\": \"labore laboris dolore tempor\",\n      \"national_number\": \"in exercitation est non aute\",\n      \"formattedNumber\": \"anim dolor\",\n      \"formatted_number\": \"ut consequat amet\",\n      \"short_code\": 20942558,\n      \"is_landline\": 26123861,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"est incididunt qu\",\n      \"area_code\": {\n        \"id\": -85877957,\n        \"area_code\": \"non ea labore adipisicing\",\n        \"state_code\": \"incididunt aute\",\n        \"state_name\": \"consequat sed pariatur qui\",\n        \"country_code\": \"quis irure id est\",\n        \"time_zone\": \"reprehende\",\n        \"group_id\": -57554008\n      },\n      \"landline\": {\n        \"id\": -50662972,\n        \"number_id\": 40949215,\n        \"address_sid\": \"dolore nostrud sint veniam\",\n        \"sid\": \"aliqua reprehenderit\",\n        \"document_sid\": \"fugiat nisi minim nulla\",\n        \"status\": \"Ut sunt\",\n        \"verification_attempts\": 50032905,\n        \"last_verify_attempt_at\": \"laborum sunt minim sed esse\",\n        \"landline_name\": \"Lorem officia sit qui\",\n        \"street_address\": \"laborum officia sint dolor\",\n        \"city\": \"aute irure dolore qui\",\n        \"state\": \"nulla\",\n        \"zip_code\": \"Excepteur anim deserunt\",\n        \"completed\": -4041284,\n        \"created_at\": \"voluptate anim ullamco\",\n        \"updated_at\": \"sit proident mollit nulla\"\n      },\n      \"number_vendor\": {\n        \"id\": 58290283,\n        \"is_active\": true,\n        \"key\": \"culpa laboris Ut consectetur\",\n        \"name\": \"dolor do voluptate\",\n        \"credentials_prefix\": \"labore pariatur laboris in Excepteur\",\n        \"twilio_sid\": \"non id\",\n        \"twilio_auth_token\": \"ut Lore\",\n        \"is_billable\": 85956139,\n        \"created_at\": \"est\",\n        \"updated_at\": \"adipisicing nisi incididunt\"\n      },\n      \"call_forwarding\": {\n        \"id\": -76251017,\n        \"number_id\": 33608250,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"laborum anim dolor dolore\",\n        \"country\": \"in pariatur\",\n        \"number\": \"Lorem\",\n        \"country_calling_code\": \"in tempor esse ad est\",\n        \"national_number\": \"dolor la\",\n        \"formatted_number\": \"consequat ad\",\n        \"extension\": \"nulla irure culpa\",\n        \"created_at\": \"voluptate occaecat laborum dolor nulla\",\n        \"updated_at\": \"ipsum veniam id ea\"\n      },\n      \"numberable_id\": 11697856,\n      \"numberable_type\": \"eiusmod\",\n      \"numberable\": {\n        \"id\": 75835658,\n        \"organization_id\": -18900545,\n        \"owner_id\": 83747537,\n        \"team_id\": -51195356,\n        \"name\": \"magna\",\n        \"created_at\": \"in dolor adipisicing\",\n        \"updated_at\": \"eu sunt e\"\n      }\n    },\n    {\n      \"id\": 87141012,\n      \"organization_id\": 25212490,\n      \"country\": \"laborum incididunt\",\n      \"state\": \"dolore proident reprehenderit ad\",\n      \"city\": \"officia in\",\n      \"number\": \"non eiusmod aliquip nulla Excepteur\",\n      \"number_vendor_id\": -56421471,\n      \"country_calling_code\": \"Duis\",\n      \"national_number\": \"quis\",\n      \"formattedNumber\": \"ex ips\",\n      \"formatted_number\": \"dolore aliquip\",\n      \"short_code\": -46726973,\n      \"is_landline\": 21674046,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"ad officia sit\",\n      \"area_code\": {\n        \"id\": 4031800,\n        \"area_code\": \"ut\",\n        \"state_code\": \"exercitation pariatur eu reprehenderit dolo\",\n        \"state_name\": \"anim dolor\",\n        \"country_code\": \"id occaecat exercitation Ut\",\n        \"time_zone\": \"ut consequat sit\",\n        \"group_id\": -79926811\n      },\n      \"landline\": {\n        \"id\": -34484949,\n        \"number_id\": -65851852,\n        \"address_sid\": \"amet reprehenderit\",\n        \"sid\": \"id eu elit non\",\n        \"document_sid\": \"culpa\",\n        \"status\": \"adipisicing aliquip eiusmod dolor\",\n        \"verification_attempts\": -23812928,\n        \"last_verify_attempt_at\": \"aliqu\",\n        \"landline_name\": \"sed voluptate\",\n        \"street_address\": \"aliqua\",\n        \"city\": \"ad Lorem\",\n        \"state\": \"Ut dolore\",\n        \"zip_code\": \"minim nulla proident ipsum culpa\",\n        \"completed\": 64778162,\n        \"created_at\": \"ad ex irure nulla\",\n        \"updated_at\": \"est in in velit\"\n      },\n      \"number_vendor\": {\n        \"id\": -89610278,\n        \"is_active\": true,\n        \"key\": \"ipsum ut irure culpa pariatur\",\n        \"name\": \"ex \",\n        \"credentials_prefix\": \"Duis ullamco\",\n        \"twilio_sid\": \"est ullamco\",\n        \"twilio_auth_token\": \"dolore esse quis et anim\",\n        \"is_billable\": -87325777,\n        \"created_at\": \"tempor cillum voluptate in\",\n        \"updated_at\": \"irure culpa\"\n      },\n      \"call_forwarding\": {\n        \"id\": 73602365,\n        \"number_id\": 46679111,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"enim veniam deserunt\",\n        \"country\": \"sed ea\",\n        \"number\": \"magna\",\n        \"country_calling_code\": \"voluptate consequat non\",\n        \"national_number\": \"eu ut occaecat\",\n        \"formatted_number\": \"sit aliquip\",\n        \"extension\": \"ad Excepteur aliqua laborum\",\n        \"created_at\": \"officia\",\n        \"updated_at\": \"non ullamco in aliquip\"\n      },\n      \"numberable_id\": 83549194,\n      \"numberable_type\": \"amet reprehenderit consectetur\",\n      \"numberable\": {\n        \"id\": 50065928,\n        \"organization_id\": -47025936,\n        \"owner_id\": 58341916,\n        \"team_id\": -64294576,\n        \"name\": \"dolore non\",\n        \"created_at\": \"aliquip Excepteur amet\",\n        \"updated_at\": \"aute\"\n      }\n    }\n  ]\n}"},{"id":"6ccd901b-af8f-4776-bc8c-c62447d647b3","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/unassigned?name=laborum&numberIds[]=42476275.02805784&numberIds[]=36935972.86530301&vendor_id=laborum&members[]=42476275.02805784&members[]=36935972.86530301","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","unassigned"],"query":[{"key":"name","value":"laborum"},{"key":"numberIds[]","value":"42476275.02805784"},{"key":"numberIds[]","value":"36935972.86530301"},{"key":"vendor_id","value":"laborum"},{"key":"members[]","value":"42476275.02805784"},{"key":"members[]","value":"36935972.86530301"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"85080479-95fe-4ad1-82a8-223e36e307fc","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/unassigned?name=laborum&numberIds[]=42476275.02805784&numberIds[]=36935972.86530301&vendor_id=laborum&members[]=42476275.02805784&members[]=36935972.86530301","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","unassigned"],"query":[{"key":"name","value":"laborum"},{"key":"numberIds[]","value":"42476275.02805784"},{"key":"numberIds[]","value":"36935972.86530301"},{"key":"vendor_id","value":"laborum"},{"key":"members[]","value":"42476275.02805784"},{"key":"members[]","value":"36935972.86530301"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"stipe\": \"id\",\n  \"number\": \"commodo veniam aliqua\"\n}"},{"id":"caa0259c-16cb-4ed7-adf2-002d300548b9","name":"Error","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/unassigned?name=laborum&numberIds[]=42476275.02805784&numberIds[]=36935972.86530301&vendor_id=laborum&members[]=42476275.02805784&members[]=36935972.86530301","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","unassigned"],"query":[{"key":"name","value":"laborum"},{"key":"numberIds[]","value":"42476275.02805784"},{"key":"numberIds[]","value":"36935972.86530301"},{"key":"vendor_id","value":"laborum"},{"key":"members[]","value":"42476275.02805784"},{"key":"members[]","value":"36935972.86530301"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"owner\": \"dolor est\"\n}"}],"_postman_id":"013c7275-d64e-42b1-b298-1f536f1fc130"},{"name":"Show default assignee","id":"46d9aafa-e892-41ce-9d4f-4401a0604c90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/default-assignee","description":"<p>Show default assignee</p>\n","urlObject":{"path":["teams",":team","default-assignee"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"8d519862-541e-4be7-904c-d309bcb79d37","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"4f200b41-9116-403b-9cd9-13c8769e22c1","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/default-assignee","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","default-assignee"],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -20699676,\n  \"email\": \"Excepteur consectetur\",\n  \"first_name\": \"nisi minim\",\n  \"last_name\": \"qui in\",\n  \"full_name\": \"nisi Excepteur quis eu\",\n  \"role\": \"velit\",\n  \"inbox_id\": -67516809,\n  \"organization_id\": 13996730,\n  \"photo_url\": \"minim proident ut in u\",\n  \"unread\": 65554571,\n  \"number\": \"reprehenderit ullamco sit quis exercitation\",\n  \"formatted_number\": \"incididunt sed\",\n  \"organizationNumber\": [\n    {\n      \"id\": 27003627,\n      \"country\": \"officia ex\",\n      \"number\": \"esse\",\n      \"formatted_number\": \"culpa in ad dolor\",\n      \"mms\": \"officia ea \"\n    },\n    {\n      \"id\": -69270230,\n      \"country\": \"dolor nostrud est oc\",\n      \"number\": \"aliquip elit ad\",\n      \"formatted_number\": \"proident velit\",\n      \"mms\": \"amet et proident\"\n    }\n  ],\n  \"userPermissions\": [\n    \"aliqua amet voluptate\",\n    \"tempor quis\"\n  ]\n}"}],"_postman_id":"46d9aafa-e892-41ce-9d4f-4401a0604c90"},{"name":"Update default assignee","id":"ebc90561-6102-4182-b702-ccca36d4459d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/default-assignee?user_id=38894851.6112895","description":"<p>Update default assignee</p>\n","urlObject":{"path":["teams",":team","default-assignee"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Member ID</p>\n","type":"text/plain"},"key":"user_id","value":"38894851.6112895"}],"variable":[{"id":"c90661f1-f0f0-46ba-b5e4-77f50cac8eac","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"741645a6-92ce-4acd-81bb-70254f4bbf1d","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/default-assignee?user_id=38894851.6112895","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","default-assignee"],"query":[{"key":"user_id","value":"38894851.6112895"}],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 46337981,\n  \"organization_id\": -54253047,\n  \"owner_id\": 17163234,\n  \"name\": \"pariatur fugiat non anim\",\n  \"created_at\": \"Duis dolor elit eiusmod sit\",\n  \"updated_at\": \"culpa incididunt cillum\",\n  \"number\": {\n    \"id\": -31790645,\n    \"organization_id\": -26620559,\n    \"country\": \"pariatur\",\n    \"state\": \"eu amet tempor exercitation sunt\",\n    \"city\": \"ut Ut in elit nostrud\",\n    \"number\": \"do Ut\",\n    \"number_vendor_id\": 52927167,\n    \"country_calling_code\": \"Ut id cupidatat\",\n    \"national_number\": \"aliquip \",\n    \"formattedNumber\": \"eu proident sed\",\n    \"formatted_number\": \"labo\",\n    \"short_code\": 77808715,\n    \"is_landline\": -19375680,\n    \"is_toll_free\": true,\n    \"is_aircall\": true,\n    \"voice\": true,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": false,\n    \"verified_status\": \"elit occaecat enim non\",\n    \"area_code\": {\n      \"id\": -39334518,\n      \"area_code\": \"nulla pariatur\",\n      \"state_code\": \"qui cupidatat dolor\",\n      \"state_name\": \"esse\",\n      \"country_code\": \"voluptate culpa do dolore reprehenderit\",\n      \"time_zone\": \"sit quis ullamco ex enim\",\n      \"group_id\": -18014851\n    },\n    \"landline\": {\n      \"id\": 52618197,\n      \"number_id\": -62653768,\n      \"address_sid\": \"Lorem exercitation proident incididunt\",\n      \"sid\": \"pariatur aute nostrud Lorem deserunt\",\n      \"document_sid\": \"commodo aute proident nulla\",\n      \"status\": \"sunt\",\n      \"verification_attempts\": -19128739,\n      \"last_verify_attempt_at\": \"minim\",\n      \"landline_name\": \"id\",\n      \"street_address\": \"ea eu\",\n      \"city\": \"dolor\",\n      \"state\": \"cillum fugiat\",\n      \"zip_code\": \"eu Excepteur veniam do\",\n      \"completed\": 34206237,\n      \"created_at\": \"in amet sit\",\n      \"updated_at\": \"sunt\"\n    },\n    \"number_vendor\": {\n      \"id\": 72075618,\n      \"is_active\": true,\n      \"key\": \"dolor dolor ea culpa\",\n      \"name\": \"Excepteur\",\n      \"credentials_prefix\": \"ut aute esse fugiat\",\n      \"twilio_sid\": \"aute minim in Excepteur\",\n      \"twilio_auth_token\": \"do\",\n      \"is_billable\": 82280193,\n      \"created_at\": \"et consequat anim\",\n      \"updated_at\": \"pariatur\"\n    },\n    \"call_forwarding\": {\n      \"id\": 87424077,\n      \"number_id\": -15392638,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"\",\n      \"country\": \"nisi amet dolore ut\",\n      \"number\": \"in pariatur ea\",\n      \"country_calling_code\": \"dolor ex do consectetur\",\n      \"national_number\": \"est veniam Duis et\",\n      \"formatted_number\": \"nisi consequat do\",\n      \"extension\": \"in esse voluptate\",\n      \"created_at\": \"ut laborum cupidatat in eu\",\n      \"updated_at\": \"proident commodo in\"\n    },\n    \"numberable_id\": 22690736,\n    \"numberable_type\": \"aliquip veniam do qui magna\",\n    \"numberable\": {\n      \"id\": 48557422,\n      \"organization_id\": -74396900,\n      \"owner_id\": 60716020,\n      \"team_id\": -65173352,\n      \"name\": \"voluptate do\",\n      \"created_at\": \"voluptate sint quis\",\n      \"updated_at\": \"ad exercitation aute\"\n    }\n  },\n  \"numbers\": [\n    {\n      \"id\": 48701471,\n      \"organization_id\": -9991625,\n      \"country\": \"in\",\n      \"state\": \"minim\",\n      \"city\": \"ut amet aute sed\",\n      \"number\": \"proident do esse pari\",\n      \"number_vendor_id\": -92720338,\n      \"country_calling_code\": \"labore laboris dolore tempor\",\n      \"national_number\": \"in exercitation est non aute\",\n      \"formattedNumber\": \"anim dolor\",\n      \"formatted_number\": \"ut consequat amet\",\n      \"short_code\": 20942558,\n      \"is_landline\": 26123861,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"est incididunt qu\",\n      \"area_code\": {\n        \"id\": -85877957,\n        \"area_code\": \"non ea labore adipisicing\",\n        \"state_code\": \"incididunt aute\",\n        \"state_name\": \"consequat sed pariatur qui\",\n        \"country_code\": \"quis irure id est\",\n        \"time_zone\": \"reprehende\",\n        \"group_id\": -57554008\n      },\n      \"landline\": {\n        \"id\": -50662972,\n        \"number_id\": 40949215,\n        \"address_sid\": \"dolore nostrud sint veniam\",\n        \"sid\": \"aliqua reprehenderit\",\n        \"document_sid\": \"fugiat nisi minim nulla\",\n        \"status\": \"Ut sunt\",\n        \"verification_attempts\": 50032905,\n        \"last_verify_attempt_at\": \"laborum sunt minim sed esse\",\n        \"landline_name\": \"Lorem officia sit qui\",\n        \"street_address\": \"laborum officia sint dolor\",\n        \"city\": \"aute irure dolore qui\",\n        \"state\": \"nulla\",\n        \"zip_code\": \"Excepteur anim deserunt\",\n        \"completed\": -4041284,\n        \"created_at\": \"voluptate anim ullamco\",\n        \"updated_at\": \"sit proident mollit nulla\"\n      },\n      \"number_vendor\": {\n        \"id\": 58290283,\n        \"is_active\": true,\n        \"key\": \"culpa laboris Ut consectetur\",\n        \"name\": \"dolor do voluptate\",\n        \"credentials_prefix\": \"labore pariatur laboris in Excepteur\",\n        \"twilio_sid\": \"non id\",\n        \"twilio_auth_token\": \"ut Lore\",\n        \"is_billable\": 85956139,\n        \"created_at\": \"est\",\n        \"updated_at\": \"adipisicing nisi incididunt\"\n      },\n      \"call_forwarding\": {\n        \"id\": -76251017,\n        \"number_id\": 33608250,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"laborum anim dolor dolore\",\n        \"country\": \"in pariatur\",\n        \"number\": \"Lorem\",\n        \"country_calling_code\": \"in tempor esse ad est\",\n        \"national_number\": \"dolor la\",\n        \"formatted_number\": \"consequat ad\",\n        \"extension\": \"nulla irure culpa\",\n        \"created_at\": \"voluptate occaecat laborum dolor nulla\",\n        \"updated_at\": \"ipsum veniam id ea\"\n      },\n      \"numberable_id\": 11697856,\n      \"numberable_type\": \"eiusmod\",\n      \"numberable\": {\n        \"id\": 75835658,\n        \"organization_id\": -18900545,\n        \"owner_id\": 83747537,\n        \"team_id\": -51195356,\n        \"name\": \"magna\",\n        \"created_at\": \"in dolor adipisicing\",\n        \"updated_at\": \"eu sunt e\"\n      }\n    },\n    {\n      \"id\": 87141012,\n      \"organization_id\": 25212490,\n      \"country\": \"laborum incididunt\",\n      \"state\": \"dolore proident reprehenderit ad\",\n      \"city\": \"officia in\",\n      \"number\": \"non eiusmod aliquip nulla Excepteur\",\n      \"number_vendor_id\": -56421471,\n      \"country_calling_code\": \"Duis\",\n      \"national_number\": \"quis\",\n      \"formattedNumber\": \"ex ips\",\n      \"formatted_number\": \"dolore aliquip\",\n      \"short_code\": -46726973,\n      \"is_landline\": 21674046,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"ad officia sit\",\n      \"area_code\": {\n        \"id\": 4031800,\n        \"area_code\": \"ut\",\n        \"state_code\": \"exercitation pariatur eu reprehenderit dolo\",\n        \"state_name\": \"anim dolor\",\n        \"country_code\": \"id occaecat exercitation Ut\",\n        \"time_zone\": \"ut consequat sit\",\n        \"group_id\": -79926811\n      },\n      \"landline\": {\n        \"id\": -34484949,\n        \"number_id\": -65851852,\n        \"address_sid\": \"amet reprehenderit\",\n        \"sid\": \"id eu elit non\",\n        \"document_sid\": \"culpa\",\n        \"status\": \"adipisicing aliquip eiusmod dolor\",\n        \"verification_attempts\": -23812928,\n        \"last_verify_attempt_at\": \"aliqu\",\n        \"landline_name\": \"sed voluptate\",\n        \"street_address\": \"aliqua\",\n        \"city\": \"ad Lorem\",\n        \"state\": \"Ut dolore\",\n        \"zip_code\": \"minim nulla proident ipsum culpa\",\n        \"completed\": 64778162,\n        \"created_at\": \"ad ex irure nulla\",\n        \"updated_at\": \"est in in velit\"\n      },\n      \"number_vendor\": {\n        \"id\": -89610278,\n        \"is_active\": true,\n        \"key\": \"ipsum ut irure culpa pariatur\",\n        \"name\": \"ex \",\n        \"credentials_prefix\": \"Duis ullamco\",\n        \"twilio_sid\": \"est ullamco\",\n        \"twilio_auth_token\": \"dolore esse quis et anim\",\n        \"is_billable\": -87325777,\n        \"created_at\": \"tempor cillum voluptate in\",\n        \"updated_at\": \"irure culpa\"\n      },\n      \"call_forwarding\": {\n        \"id\": 73602365,\n        \"number_id\": 46679111,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"enim veniam deserunt\",\n        \"country\": \"sed ea\",\n        \"number\": \"magna\",\n        \"country_calling_code\": \"voluptate consequat non\",\n        \"national_number\": \"eu ut occaecat\",\n        \"formatted_number\": \"sit aliquip\",\n        \"extension\": \"ad Excepteur aliqua laborum\",\n        \"created_at\": \"officia\",\n        \"updated_at\": \"non ullamco in aliquip\"\n      },\n      \"numberable_id\": 83549194,\n      \"numberable_type\": \"amet reprehenderit consectetur\",\n      \"numberable\": {\n        \"id\": 50065928,\n        \"organization_id\": -47025936,\n        \"owner_id\": 58341916,\n        \"team_id\": -64294576,\n        \"name\": \"dolore non\",\n        \"created_at\": \"aliquip Excepteur amet\",\n        \"updated_at\": \"aute\"\n      }\n    }\n  ]\n}"},{"id":"c32780ed-b887-4f6e-b4af-5c7cf99532ed","name":"Unautorized","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/default-assignee?user_id=38894851.6112895","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","default-assignee"],"query":[{"key":"user_id","value":"38894851.6112895"}],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"dolore non occae\"\n}"},{"id":"8ac8276d-2a82-4a0b-832a-edacb2d29b37","name":"Not Found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/default-assignee?user_id=38894851.6112895","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","default-assignee"],"query":[{"key":"user_id","value":"38894851.6112895"}],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ebc90561-6102-4182-b702-ccca36d4459d"},{"name":"Get team","id":"e8f09be6-6967-455a-9417-d3ecc6aac3b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team","description":"<p>Get team</p>\n","urlObject":{"path":["teams",":team"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"331ab85a-4f82-4369-9124-9981f4c17448","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"4dd7e263-cc26-46ec-bc22-14a4a326b528","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team"],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 46337981,\n  \"organization_id\": -54253047,\n  \"owner_id\": 17163234,\n  \"name\": \"pariatur fugiat non anim\",\n  \"created_at\": \"Duis dolor elit eiusmod sit\",\n  \"updated_at\": \"culpa incididunt cillum\",\n  \"number\": {\n    \"id\": -31790645,\n    \"organization_id\": -26620559,\n    \"country\": \"pariatur\",\n    \"state\": \"eu amet tempor exercitation sunt\",\n    \"city\": \"ut Ut in elit nostrud\",\n    \"number\": \"do Ut\",\n    \"number_vendor_id\": 52927167,\n    \"country_calling_code\": \"Ut id cupidatat\",\n    \"national_number\": \"aliquip \",\n    \"formattedNumber\": \"eu proident sed\",\n    \"formatted_number\": \"labo\",\n    \"short_code\": 77808715,\n    \"is_landline\": -19375680,\n    \"is_toll_free\": true,\n    \"is_aircall\": true,\n    \"voice\": true,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": false,\n    \"verified_status\": \"elit occaecat enim non\",\n    \"area_code\": {\n      \"id\": -39334518,\n      \"area_code\": \"nulla pariatur\",\n      \"state_code\": \"qui cupidatat dolor\",\n      \"state_name\": \"esse\",\n      \"country_code\": \"voluptate culpa do dolore reprehenderit\",\n      \"time_zone\": \"sit quis ullamco ex enim\",\n      \"group_id\": -18014851\n    },\n    \"landline\": {\n      \"id\": 52618197,\n      \"number_id\": -62653768,\n      \"address_sid\": \"Lorem exercitation proident incididunt\",\n      \"sid\": \"pariatur aute nostrud Lorem deserunt\",\n      \"document_sid\": \"commodo aute proident nulla\",\n      \"status\": \"sunt\",\n      \"verification_attempts\": -19128739,\n      \"last_verify_attempt_at\": \"minim\",\n      \"landline_name\": \"id\",\n      \"street_address\": \"ea eu\",\n      \"city\": \"dolor\",\n      \"state\": \"cillum fugiat\",\n      \"zip_code\": \"eu Excepteur veniam do\",\n      \"completed\": 34206237,\n      \"created_at\": \"in amet sit\",\n      \"updated_at\": \"sunt\"\n    },\n    \"number_vendor\": {\n      \"id\": 72075618,\n      \"is_active\": true,\n      \"key\": \"dolor dolor ea culpa\",\n      \"name\": \"Excepteur\",\n      \"credentials_prefix\": \"ut aute esse fugiat\",\n      \"twilio_sid\": \"aute minim in Excepteur\",\n      \"twilio_auth_token\": \"do\",\n      \"is_billable\": 82280193,\n      \"created_at\": \"et consequat anim\",\n      \"updated_at\": \"pariatur\"\n    },\n    \"call_forwarding\": {\n      \"id\": 87424077,\n      \"number_id\": -15392638,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"\",\n      \"country\": \"nisi amet dolore ut\",\n      \"number\": \"in pariatur ea\",\n      \"country_calling_code\": \"dolor ex do consectetur\",\n      \"national_number\": \"est veniam Duis et\",\n      \"formatted_number\": \"nisi consequat do\",\n      \"extension\": \"in esse voluptate\",\n      \"created_at\": \"ut laborum cupidatat in eu\",\n      \"updated_at\": \"proident commodo in\"\n    },\n    \"numberable_id\": 22690736,\n    \"numberable_type\": \"aliquip veniam do qui magna\",\n    \"numberable\": {\n      \"id\": 48557422,\n      \"organization_id\": -74396900,\n      \"owner_id\": 60716020,\n      \"team_id\": -65173352,\n      \"name\": \"voluptate do\",\n      \"created_at\": \"voluptate sint quis\",\n      \"updated_at\": \"ad exercitation aute\"\n    }\n  },\n  \"numbers\": [\n    {\n      \"id\": 48701471,\n      \"organization_id\": -9991625,\n      \"country\": \"in\",\n      \"state\": \"minim\",\n      \"city\": \"ut amet aute sed\",\n      \"number\": \"proident do esse pari\",\n      \"number_vendor_id\": -92720338,\n      \"country_calling_code\": \"labore laboris dolore tempor\",\n      \"national_number\": \"in exercitation est non aute\",\n      \"formattedNumber\": \"anim dolor\",\n      \"formatted_number\": \"ut consequat amet\",\n      \"short_code\": 20942558,\n      \"is_landline\": 26123861,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"est incididunt qu\",\n      \"area_code\": {\n        \"id\": -85877957,\n        \"area_code\": \"non ea labore adipisicing\",\n        \"state_code\": \"incididunt aute\",\n        \"state_name\": \"consequat sed pariatur qui\",\n        \"country_code\": \"quis irure id est\",\n        \"time_zone\": \"reprehende\",\n        \"group_id\": -57554008\n      },\n      \"landline\": {\n        \"id\": -50662972,\n        \"number_id\": 40949215,\n        \"address_sid\": \"dolore nostrud sint veniam\",\n        \"sid\": \"aliqua reprehenderit\",\n        \"document_sid\": \"fugiat nisi minim nulla\",\n        \"status\": \"Ut sunt\",\n        \"verification_attempts\": 50032905,\n        \"last_verify_attempt_at\": \"laborum sunt minim sed esse\",\n        \"landline_name\": \"Lorem officia sit qui\",\n        \"street_address\": \"laborum officia sint dolor\",\n        \"city\": \"aute irure dolore qui\",\n        \"state\": \"nulla\",\n        \"zip_code\": \"Excepteur anim deserunt\",\n        \"completed\": -4041284,\n        \"created_at\": \"voluptate anim ullamco\",\n        \"updated_at\": \"sit proident mollit nulla\"\n      },\n      \"number_vendor\": {\n        \"id\": 58290283,\n        \"is_active\": true,\n        \"key\": \"culpa laboris Ut consectetur\",\n        \"name\": \"dolor do voluptate\",\n        \"credentials_prefix\": \"labore pariatur laboris in Excepteur\",\n        \"twilio_sid\": \"non id\",\n        \"twilio_auth_token\": \"ut Lore\",\n        \"is_billable\": 85956139,\n        \"created_at\": \"est\",\n        \"updated_at\": \"adipisicing nisi incididunt\"\n      },\n      \"call_forwarding\": {\n        \"id\": -76251017,\n        \"number_id\": 33608250,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"laborum anim dolor dolore\",\n        \"country\": \"in pariatur\",\n        \"number\": \"Lorem\",\n        \"country_calling_code\": \"in tempor esse ad est\",\n        \"national_number\": \"dolor la\",\n        \"formatted_number\": \"consequat ad\",\n        \"extension\": \"nulla irure culpa\",\n        \"created_at\": \"voluptate occaecat laborum dolor nulla\",\n        \"updated_at\": \"ipsum veniam id ea\"\n      },\n      \"numberable_id\": 11697856,\n      \"numberable_type\": \"eiusmod\",\n      \"numberable\": {\n        \"id\": 75835658,\n        \"organization_id\": -18900545,\n        \"owner_id\": 83747537,\n        \"team_id\": -51195356,\n        \"name\": \"magna\",\n        \"created_at\": \"in dolor adipisicing\",\n        \"updated_at\": \"eu sunt e\"\n      }\n    },\n    {\n      \"id\": 87141012,\n      \"organization_id\": 25212490,\n      \"country\": \"laborum incididunt\",\n      \"state\": \"dolore proident reprehenderit ad\",\n      \"city\": \"officia in\",\n      \"number\": \"non eiusmod aliquip nulla Excepteur\",\n      \"number_vendor_id\": -56421471,\n      \"country_calling_code\": \"Duis\",\n      \"national_number\": \"quis\",\n      \"formattedNumber\": \"ex ips\",\n      \"formatted_number\": \"dolore aliquip\",\n      \"short_code\": -46726973,\n      \"is_landline\": 21674046,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"ad officia sit\",\n      \"area_code\": {\n        \"id\": 4031800,\n        \"area_code\": \"ut\",\n        \"state_code\": \"exercitation pariatur eu reprehenderit dolo\",\n        \"state_name\": \"anim dolor\",\n        \"country_code\": \"id occaecat exercitation Ut\",\n        \"time_zone\": \"ut consequat sit\",\n        \"group_id\": -79926811\n      },\n      \"landline\": {\n        \"id\": -34484949,\n        \"number_id\": -65851852,\n        \"address_sid\": \"amet reprehenderit\",\n        \"sid\": \"id eu elit non\",\n        \"document_sid\": \"culpa\",\n        \"status\": \"adipisicing aliquip eiusmod dolor\",\n        \"verification_attempts\": -23812928,\n        \"last_verify_attempt_at\": \"aliqu\",\n        \"landline_name\": \"sed voluptate\",\n        \"street_address\": \"aliqua\",\n        \"city\": \"ad Lorem\",\n        \"state\": \"Ut dolore\",\n        \"zip_code\": \"minim nulla proident ipsum culpa\",\n        \"completed\": 64778162,\n        \"created_at\": \"ad ex irure nulla\",\n        \"updated_at\": \"est in in velit\"\n      },\n      \"number_vendor\": {\n        \"id\": -89610278,\n        \"is_active\": true,\n        \"key\": \"ipsum ut irure culpa pariatur\",\n        \"name\": \"ex \",\n        \"credentials_prefix\": \"Duis ullamco\",\n        \"twilio_sid\": \"est ullamco\",\n        \"twilio_auth_token\": \"dolore esse quis et anim\",\n        \"is_billable\": -87325777,\n        \"created_at\": \"tempor cillum voluptate in\",\n        \"updated_at\": \"irure culpa\"\n      },\n      \"call_forwarding\": {\n        \"id\": 73602365,\n        \"number_id\": 46679111,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"enim veniam deserunt\",\n        \"country\": \"sed ea\",\n        \"number\": \"magna\",\n        \"country_calling_code\": \"voluptate consequat non\",\n        \"national_number\": \"eu ut occaecat\",\n        \"formatted_number\": \"sit aliquip\",\n        \"extension\": \"ad Excepteur aliqua laborum\",\n        \"created_at\": \"officia\",\n        \"updated_at\": \"non ullamco in aliquip\"\n      },\n      \"numberable_id\": 83549194,\n      \"numberable_type\": \"amet reprehenderit consectetur\",\n      \"numberable\": {\n        \"id\": 50065928,\n        \"organization_id\": -47025936,\n        \"owner_id\": 58341916,\n        \"team_id\": -64294576,\n        \"name\": \"dolore non\",\n        \"created_at\": \"aliquip Excepteur amet\",\n        \"updated_at\": \"aute\"\n      }\n    }\n  ]\n}"}],"_postman_id":"e8f09be6-6967-455a-9417-d3ecc6aac3b0"},{"name":"Update team","id":"a9703e9b-f47e-47dc-980f-6dab1011cdf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team?name=laborum","description":"<p>Update team</p>\n","urlObject":{"path":["teams",":team"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Name</p>\n","type":"text/plain"},"key":"name","value":"laborum"}],"variable":[{"id":"931e6338-e335-4d25-aca6-9a24526075e1","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"9e2a0032-b37c-4116-8b30-6f53a3097c3a","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team?name=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team"],"query":[{"key":"name","value":"laborum"}],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 46337981,\n  \"organization_id\": -54253047,\n  \"owner_id\": 17163234,\n  \"name\": \"pariatur fugiat non anim\",\n  \"created_at\": \"Duis dolor elit eiusmod sit\",\n  \"updated_at\": \"culpa incididunt cillum\",\n  \"number\": {\n    \"id\": -31790645,\n    \"organization_id\": -26620559,\n    \"country\": \"pariatur\",\n    \"state\": \"eu amet tempor exercitation sunt\",\n    \"city\": \"ut Ut in elit nostrud\",\n    \"number\": \"do Ut\",\n    \"number_vendor_id\": 52927167,\n    \"country_calling_code\": \"Ut id cupidatat\",\n    \"national_number\": \"aliquip \",\n    \"formattedNumber\": \"eu proident sed\",\n    \"formatted_number\": \"labo\",\n    \"short_code\": 77808715,\n    \"is_landline\": -19375680,\n    \"is_toll_free\": true,\n    \"is_aircall\": true,\n    \"voice\": true,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": false,\n    \"verified_status\": \"elit occaecat enim non\",\n    \"area_code\": {\n      \"id\": -39334518,\n      \"area_code\": \"nulla pariatur\",\n      \"state_code\": \"qui cupidatat dolor\",\n      \"state_name\": \"esse\",\n      \"country_code\": \"voluptate culpa do dolore reprehenderit\",\n      \"time_zone\": \"sit quis ullamco ex enim\",\n      \"group_id\": -18014851\n    },\n    \"landline\": {\n      \"id\": 52618197,\n      \"number_id\": -62653768,\n      \"address_sid\": \"Lorem exercitation proident incididunt\",\n      \"sid\": \"pariatur aute nostrud Lorem deserunt\",\n      \"document_sid\": \"commodo aute proident nulla\",\n      \"status\": \"sunt\",\n      \"verification_attempts\": -19128739,\n      \"last_verify_attempt_at\": \"minim\",\n      \"landline_name\": \"id\",\n      \"street_address\": \"ea eu\",\n      \"city\": \"dolor\",\n      \"state\": \"cillum fugiat\",\n      \"zip_code\": \"eu Excepteur veniam do\",\n      \"completed\": 34206237,\n      \"created_at\": \"in amet sit\",\n      \"updated_at\": \"sunt\"\n    },\n    \"number_vendor\": {\n      \"id\": 72075618,\n      \"is_active\": true,\n      \"key\": \"dolor dolor ea culpa\",\n      \"name\": \"Excepteur\",\n      \"credentials_prefix\": \"ut aute esse fugiat\",\n      \"twilio_sid\": \"aute minim in Excepteur\",\n      \"twilio_auth_token\": \"do\",\n      \"is_billable\": 82280193,\n      \"created_at\": \"et consequat anim\",\n      \"updated_at\": \"pariatur\"\n    },\n    \"call_forwarding\": {\n      \"id\": 87424077,\n      \"number_id\": -15392638,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"\",\n      \"country\": \"nisi amet dolore ut\",\n      \"number\": \"in pariatur ea\",\n      \"country_calling_code\": \"dolor ex do consectetur\",\n      \"national_number\": \"est veniam Duis et\",\n      \"formatted_number\": \"nisi consequat do\",\n      \"extension\": \"in esse voluptate\",\n      \"created_at\": \"ut laborum cupidatat in eu\",\n      \"updated_at\": \"proident commodo in\"\n    },\n    \"numberable_id\": 22690736,\n    \"numberable_type\": \"aliquip veniam do qui magna\",\n    \"numberable\": {\n      \"id\": 48557422,\n      \"organization_id\": -74396900,\n      \"owner_id\": 60716020,\n      \"team_id\": -65173352,\n      \"name\": \"voluptate do\",\n      \"created_at\": \"voluptate sint quis\",\n      \"updated_at\": \"ad exercitation aute\"\n    }\n  },\n  \"numbers\": [\n    {\n      \"id\": 48701471,\n      \"organization_id\": -9991625,\n      \"country\": \"in\",\n      \"state\": \"minim\",\n      \"city\": \"ut amet aute sed\",\n      \"number\": \"proident do esse pari\",\n      \"number_vendor_id\": -92720338,\n      \"country_calling_code\": \"labore laboris dolore tempor\",\n      \"national_number\": \"in exercitation est non aute\",\n      \"formattedNumber\": \"anim dolor\",\n      \"formatted_number\": \"ut consequat amet\",\n      \"short_code\": 20942558,\n      \"is_landline\": 26123861,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"est incididunt qu\",\n      \"area_code\": {\n        \"id\": -85877957,\n        \"area_code\": \"non ea labore adipisicing\",\n        \"state_code\": \"incididunt aute\",\n        \"state_name\": \"consequat sed pariatur qui\",\n        \"country_code\": \"quis irure id est\",\n        \"time_zone\": \"reprehende\",\n        \"group_id\": -57554008\n      },\n      \"landline\": {\n        \"id\": -50662972,\n        \"number_id\": 40949215,\n        \"address_sid\": \"dolore nostrud sint veniam\",\n        \"sid\": \"aliqua reprehenderit\",\n        \"document_sid\": \"fugiat nisi minim nulla\",\n        \"status\": \"Ut sunt\",\n        \"verification_attempts\": 50032905,\n        \"last_verify_attempt_at\": \"laborum sunt minim sed esse\",\n        \"landline_name\": \"Lorem officia sit qui\",\n        \"street_address\": \"laborum officia sint dolor\",\n        \"city\": \"aute irure dolore qui\",\n        \"state\": \"nulla\",\n        \"zip_code\": \"Excepteur anim deserunt\",\n        \"completed\": -4041284,\n        \"created_at\": \"voluptate anim ullamco\",\n        \"updated_at\": \"sit proident mollit nulla\"\n      },\n      \"number_vendor\": {\n        \"id\": 58290283,\n        \"is_active\": true,\n        \"key\": \"culpa laboris Ut consectetur\",\n        \"name\": \"dolor do voluptate\",\n        \"credentials_prefix\": \"labore pariatur laboris in Excepteur\",\n        \"twilio_sid\": \"non id\",\n        \"twilio_auth_token\": \"ut Lore\",\n        \"is_billable\": 85956139,\n        \"created_at\": \"est\",\n        \"updated_at\": \"adipisicing nisi incididunt\"\n      },\n      \"call_forwarding\": {\n        \"id\": -76251017,\n        \"number_id\": 33608250,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"laborum anim dolor dolore\",\n        \"country\": \"in pariatur\",\n        \"number\": \"Lorem\",\n        \"country_calling_code\": \"in tempor esse ad est\",\n        \"national_number\": \"dolor la\",\n        \"formatted_number\": \"consequat ad\",\n        \"extension\": \"nulla irure culpa\",\n        \"created_at\": \"voluptate occaecat laborum dolor nulla\",\n        \"updated_at\": \"ipsum veniam id ea\"\n      },\n      \"numberable_id\": 11697856,\n      \"numberable_type\": \"eiusmod\",\n      \"numberable\": {\n        \"id\": 75835658,\n        \"organization_id\": -18900545,\n        \"owner_id\": 83747537,\n        \"team_id\": -51195356,\n        \"name\": \"magna\",\n        \"created_at\": \"in dolor adipisicing\",\n        \"updated_at\": \"eu sunt e\"\n      }\n    },\n    {\n      \"id\": 87141012,\n      \"organization_id\": 25212490,\n      \"country\": \"laborum incididunt\",\n      \"state\": \"dolore proident reprehenderit ad\",\n      \"city\": \"officia in\",\n      \"number\": \"non eiusmod aliquip nulla Excepteur\",\n      \"number_vendor_id\": -56421471,\n      \"country_calling_code\": \"Duis\",\n      \"national_number\": \"quis\",\n      \"formattedNumber\": \"ex ips\",\n      \"formatted_number\": \"dolore aliquip\",\n      \"short_code\": -46726973,\n      \"is_landline\": 21674046,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"ad officia sit\",\n      \"area_code\": {\n        \"id\": 4031800,\n        \"area_code\": \"ut\",\n        \"state_code\": \"exercitation pariatur eu reprehenderit dolo\",\n        \"state_name\": \"anim dolor\",\n        \"country_code\": \"id occaecat exercitation Ut\",\n        \"time_zone\": \"ut consequat sit\",\n        \"group_id\": -79926811\n      },\n      \"landline\": {\n        \"id\": -34484949,\n        \"number_id\": -65851852,\n        \"address_sid\": \"amet reprehenderit\",\n        \"sid\": \"id eu elit non\",\n        \"document_sid\": \"culpa\",\n        \"status\": \"adipisicing aliquip eiusmod dolor\",\n        \"verification_attempts\": -23812928,\n        \"last_verify_attempt_at\": \"aliqu\",\n        \"landline_name\": \"sed voluptate\",\n        \"street_address\": \"aliqua\",\n        \"city\": \"ad Lorem\",\n        \"state\": \"Ut dolore\",\n        \"zip_code\": \"minim nulla proident ipsum culpa\",\n        \"completed\": 64778162,\n        \"created_at\": \"ad ex irure nulla\",\n        \"updated_at\": \"est in in velit\"\n      },\n      \"number_vendor\": {\n        \"id\": -89610278,\n        \"is_active\": true,\n        \"key\": \"ipsum ut irure culpa pariatur\",\n        \"name\": \"ex \",\n        \"credentials_prefix\": \"Duis ullamco\",\n        \"twilio_sid\": \"est ullamco\",\n        \"twilio_auth_token\": \"dolore esse quis et anim\",\n        \"is_billable\": -87325777,\n        \"created_at\": \"tempor cillum voluptate in\",\n        \"updated_at\": \"irure culpa\"\n      },\n      \"call_forwarding\": {\n        \"id\": 73602365,\n        \"number_id\": 46679111,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"enim veniam deserunt\",\n        \"country\": \"sed ea\",\n        \"number\": \"magna\",\n        \"country_calling_code\": \"voluptate consequat non\",\n        \"national_number\": \"eu ut occaecat\",\n        \"formatted_number\": \"sit aliquip\",\n        \"extension\": \"ad Excepteur aliqua laborum\",\n        \"created_at\": \"officia\",\n        \"updated_at\": \"non ullamco in aliquip\"\n      },\n      \"numberable_id\": 83549194,\n      \"numberable_type\": \"amet reprehenderit consectetur\",\n      \"numberable\": {\n        \"id\": 50065928,\n        \"organization_id\": -47025936,\n        \"owner_id\": 58341916,\n        \"team_id\": -64294576,\n        \"name\": \"dolore non\",\n        \"created_at\": \"aliquip Excepteur amet\",\n        \"updated_at\": \"aute\"\n      }\n    }\n  ]\n}"},{"id":"dd70c786-107b-4b9b-9983-56657a55c33f","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team?name=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team"],"query":[{"key":"name","value":"laborum"}],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"number\": \"aute nostrud laboris aliquip\"\n}"}],"_postman_id":"a9703e9b-f47e-47dc-980f-6dab1011cdf2"},{"name":"Delete team","id":"c8682d34-06b7-49bb-851d-159340448f31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team?reassign=App\\Teams\\Team:0","description":"<p>Delete team</p>\n","urlObject":{"path":["teams",":team"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Re-Assign Team ID</p>\n","type":"text/plain"},"key":"reassign","value":"App\\Teams\\Team:0"}],"variable":[{"id":"1ffa745b-37d6-45b5-a298-e063a00364aa","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"a04ddb70-5252-4735-8246-f699ebc76b2b","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team?reassign=App\\Teams\\Team:0","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team"],"query":[{"key":"reassign","value":"App\\Teams\\Team:0"}],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 11119930,\n  \"conversation_id\": 2282231,\n  \"automated\": false,\n  \"status\": \"sit sint\",\n  \"type\": \"Duis elit cillum\",\n  \"mms_status\": \"do magna sit in\",\n  \"body\": \"dolore Ut\",\n  \"body_raw\": \"magna nisi aliquip\",\n  \"has_tagging\": false,\n  \"icon\": \"esse irure anim\",\n  \"received_at\": \"est consequat magna dolore\",\n  \"send_at\": \"reprehenderit pariatur qui\",\n  \"queued_at\": \"proident\",\n  \"sent_at\": \"elit nulla culpa\",\n  \"delivered_at\": \"sunt consectetur officia quis Lorem\",\n  \"failed_at\": \"id d\",\n  \"failed_reason\": \"quis\",\n  \"created_at\": \"ex sed elit\",\n  \"stop_on_response\": false,\n  \"record\": {\n    \"id\": 26260078,\n    \"message_id\": -19204063,\n    \"sid\": \"officia in quis tempor dolor\",\n    \"record_id\": \"eiusmod qui nulla ipsum\",\n    \"duration\": 71327843,\n    \"status\": \"consequat esse nisi\",\n    \"url\": \"dolor anim adipisicing tempor\",\n    \"is_voicemail\": false,\n    \"created_at\": \"irure fugiat reprehenderit\",\n    \"updated_at\": \"ex minim sed elit et\"\n  },\n  \"user_id\": -23638375,\n  \"source_id\": 89223796,\n  \"source\": \"cupidatat reprehenderit sed magna\",\n  \"contact\": {\n    \"id\": -95373622,\n    \"owner_id\": -30201295,\n    \"color\": \"ut dolor sit elit\",\n    \"first_name\": \"consequat do officia\",\n    \"last_name\": \"velit enim deserunt aliqua laboris\",\n    \"full_name\": \"sunt qui quis esse\",\n    \"email\": \"do mollit est\",\n    \"photo_url\": \"mollit dolore id exercitation\",\n    \"number\": \"aute\",\n    \"country\": \"anim id\",\n    \"country_calling_code\": \"consectetur ullamco\",\n    \"national_number\": \"pariatur esse irure sint\",\n    \"typeted_number\": \"nostrud fugiat elit dolor incididunt\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"in labore eiusmod\",\n    \"opt_in_request_at\": \"anim deserunt\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -13497180\n      },\n      {\n        \"number_id\": -34851259\n      }\n    ],\n    \"opt_in_at\": \"occaecat do mollit quis\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 39349469,\n        \"number_id\": -83505000,\n        \"name\": \"mollit laborum ipsum aute\",\n        \"disabled\": false,\n        \"timestamp\": \"non do nulla dolor tempor\",\n        \"value\": true\n      },\n      {\n        \"id\": 68408283,\n        \"number_id\": 31906942,\n        \"name\": \"velit dolore\",\n        \"disabled\": true,\n        \"timestamp\": \"minim Ut\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"laborum et\",\n    \"updated_at\": \"sed exercitation\",\n    \"integration_vendor_id\": -25594485,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": 10980377,\n        \"key\": \"reprehenderit ipsum\",\n        \"name\": \"velit nostrud\",\n        \"photo_url\": \"elit labore proident esse\"\n      },\n      {\n        \"id\": -5962985,\n        \"key\": \"laboris in\",\n        \"name\": \"proident \",\n        \"photo_url\": \"dolore culpa dolor\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": -80119158,\n        \"custom_field_id\": 61600565,\n        \"contact_id\": 16833509,\n        \"field_key\": \"ex in enim\",\n        \"organization_id\": 24700245,\n        \"text\": \"ipsum commo\",\n        \"number\": -24974318,\n        \"date\": \"veniam fugiat officia consequat\",\n        \"created_at\": \"in est consectetur ad\",\n        \"updated_at\": \"nisi reprehenderit\",\n        \"value\": [\n          {\n            \"type\": \"sunt incididunt ut\",\n            \"value\": \"officia proident sint commodo\"\n          },\n          {\n            \"type\": \"minim irure in anim officia\",\n            \"value\": \"voluptate pariatur\"\n          }\n        ]\n      },\n      {\n        \"id\": -65422748,\n        \"custom_field_id\": -75583754,\n        \"contact_id\": 9647151,\n        \"field_key\": \"aliquip cupidatat\",\n        \"organization_id\": 44744279,\n        \"text\": \"quis minim\",\n        \"number\": -45502502,\n        \"date\": \"consequat culpa non\",\n        \"created_at\": \"eu e\",\n        \"updated_at\": \"ut sit\",\n        \"value\": [\n          {\n            \"type\": \"nulla ex adipisicing laboris sit\",\n            \"value\": \"cupidatat do\"\n          },\n          {\n            \"type\": \"veniam consectetur\",\n            \"value\": \"in culpa officia eu\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": -88844275,\n        \"name\": \"commodo nulla \",\n        \"label\": \"irure\",\n        \"created_at\": \"aliquip consequat in in amet\"\n      },\n      {\n        \"id\": -39583802,\n        \"name\": \"commodo officia Ut irure labore\",\n        \"label\": \"fugiat ea Excepteur\",\n        \"created_at\": \"exercitation magna ut\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 68790379,\n        \"text\": \"minim consectetur\",\n        \"created_at\": \"ad commodo\",\n        \"updated_at\": \"incididunt amet enim non d\"\n      },\n      {\n        \"id\": 44916525,\n        \"text\": \"id elit non\",\n        \"created_at\": \"aliquip ipsum consectetur sit\",\n        \"updated_at\": \"dolor cupidatat proident dolore eiusmod\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 13287899,\n    \"email\": \"laborum Excepteur\",\n    \"first_name\": \"velit minim labore qui\",\n    \"last_name\": \"enim ad commodo voluptate\",\n    \"full_name\": \"nisi amet\",\n    \"role\": \"magna dolore\",\n    \"inbox_id\": 19270440,\n    \"organization_id\": -70373802,\n    \"photo_url\": \"magna et\",\n    \"unread\": -81451245,\n    \"number\": \"dolor\",\n    \"formatted_number\": \"reprehenderit qui do\",\n    \"organizationNumber\": [\n      {\n        \"id\": 69956769,\n        \"country\": \"fugiat occaecat\",\n        \"number\": \"quis Ut\",\n        \"formatted_number\": \"Excepteur aliqua ullamco\",\n        \"mms\": \"labore est\"\n      },\n      {\n        \"id\": -17079549,\n        \"country\": \"ex nulla\",\n        \"number\": \"ex nostrud irure\",\n        \"formatted_number\": \"enim cupidatat\",\n        \"mms\": \"minim tempor\"\n      }\n    ],\n    \"userPermissions\": [\n      \"quis commodo sunt dolor\",\n      \"eu\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": -98780123,\n      \"email\": \"dolor ea et\",\n      \"first_name\": \"consequat adipisicing occaecat\",\n      \"last_name\": \"velit sunt et sit aliquip\",\n      \"full_name\": \"laboris nost\",\n      \"role\": \"minim\",\n      \"inbox_id\": 27219462,\n      \"organization_id\": -19715057,\n      \"photo_url\": \"commodo sed veniam cupidatat\",\n      \"unread\": 12440889,\n      \"number\": \"Duis do incididunt quis\",\n      \"formatted_number\": \"ullamco\",\n      \"organizationNumber\": [\n        {\n          \"id\": -82730281,\n          \"country\": \"nostrud ullamco\",\n          \"number\": \"labore commodo\",\n          \"formatted_number\": \"in commodo est magna veniam\",\n          \"mms\": \"in dolore ad dolore\"\n        },\n        {\n          \"id\": -95676563,\n          \"country\": \"minim commodo veniam Ut velit\",\n          \"number\": \"Ut\",\n          \"formatted_number\": \"incididunt occaecat magna veniam\",\n          \"mms\": \"dolor Duis et exercitation adipisicing\"\n        }\n      ],\n      \"userPermissions\": [\n        \"id nulla eu ad\",\n        \"officia voluptate ex\"\n      ]\n    },\n    {\n      \"id\": 16340550,\n      \"email\": \"enim dolore sunt non irure\",\n      \"first_name\": \"in exercitation par\",\n      \"last_name\": \"eu irure enim consectetur\",\n      \"full_name\": \"id culpa pariatur\",\n      \"role\": \"veniam laborum culpa\",\n      \"inbox_id\": -25133264,\n      \"organization_id\": 70922851,\n      \"photo_url\": \"adipisicing amet eiusmod\",\n      \"unread\": -76037816,\n      \"number\": \"in commodo\",\n      \"formatted_number\": \"culpa consectetur ipsum dolor\",\n      \"organizationNumber\": [\n        {\n          \"id\": -93638595,\n          \"country\": \"in incididunt cupidatat in\",\n          \"number\": \"fugiat enim deserunt\",\n          \"formatted_number\": \"qui velit cupidatat\",\n          \"mms\": \"ex sunt eu\"\n        },\n        {\n          \"id\": 82682203,\n          \"country\": \"ad sunt\",\n          \"number\": \"labore quis nostrud\",\n          \"formatted_number\": \"laboris laborum\",\n          \"mms\": \"et occaecat incididunt nisi mollit\"\n        }\n      ],\n      \"userPermissions\": [\n        \"dolor\",\n        \"aute exercitation\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 73263866,\n      \"content_type\": \"laborum nulla anim\",\n      \"source\": \"est et in magna in\",\n      \"source_short\": \"sed in\",\n      \"created_at\": \"minim laborum ex\"\n    },\n    {\n      \"id\": 45932211,\n      \"content_type\": \"L\",\n      \"source\": \"enim\",\n      \"source_short\": \"offi\",\n      \"created_at\": \"laboris eu dolore\"\n    }\n  ]\n}"},{"id":"0a701cec-d499-43f8-888f-baf148ebd846","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team?reassign=App\\Teams\\Team:0","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team"],"query":[{"key":"reassign","value":"App\\Teams\\Team:0"}],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c8682d34-06b7-49bb-851d-159340448f31"},{"name":"Toggle geo-match","id":"7a11c163-9f67-4075-a6b2-f3b956d6865c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/geo-match","description":"<p>Toggle geo-match</p>\n","urlObject":{"path":["teams",":team","geo-match"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"34cba670-ae30-46d6-83d3-ee64b1af64fc","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"6c11e85e-12db-400f-8d83-1eeb9bbda2de","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/geo-match","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","geo-match"],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 46337981,\n  \"organization_id\": -54253047,\n  \"owner_id\": 17163234,\n  \"name\": \"pariatur fugiat non anim\",\n  \"created_at\": \"Duis dolor elit eiusmod sit\",\n  \"updated_at\": \"culpa incididunt cillum\",\n  \"number\": {\n    \"id\": -31790645,\n    \"organization_id\": -26620559,\n    \"country\": \"pariatur\",\n    \"state\": \"eu amet tempor exercitation sunt\",\n    \"city\": \"ut Ut in elit nostrud\",\n    \"number\": \"do Ut\",\n    \"number_vendor_id\": 52927167,\n    \"country_calling_code\": \"Ut id cupidatat\",\n    \"national_number\": \"aliquip \",\n    \"formattedNumber\": \"eu proident sed\",\n    \"formatted_number\": \"labo\",\n    \"short_code\": 77808715,\n    \"is_landline\": -19375680,\n    \"is_toll_free\": true,\n    \"is_aircall\": true,\n    \"voice\": true,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": false,\n    \"verified_status\": \"elit occaecat enim non\",\n    \"area_code\": {\n      \"id\": -39334518,\n      \"area_code\": \"nulla pariatur\",\n      \"state_code\": \"qui cupidatat dolor\",\n      \"state_name\": \"esse\",\n      \"country_code\": \"voluptate culpa do dolore reprehenderit\",\n      \"time_zone\": \"sit quis ullamco ex enim\",\n      \"group_id\": -18014851\n    },\n    \"landline\": {\n      \"id\": 52618197,\n      \"number_id\": -62653768,\n      \"address_sid\": \"Lorem exercitation proident incididunt\",\n      \"sid\": \"pariatur aute nostrud Lorem deserunt\",\n      \"document_sid\": \"commodo aute proident nulla\",\n      \"status\": \"sunt\",\n      \"verification_attempts\": -19128739,\n      \"last_verify_attempt_at\": \"minim\",\n      \"landline_name\": \"id\",\n      \"street_address\": \"ea eu\",\n      \"city\": \"dolor\",\n      \"state\": \"cillum fugiat\",\n      \"zip_code\": \"eu Excepteur veniam do\",\n      \"completed\": 34206237,\n      \"created_at\": \"in amet sit\",\n      \"updated_at\": \"sunt\"\n    },\n    \"number_vendor\": {\n      \"id\": 72075618,\n      \"is_active\": true,\n      \"key\": \"dolor dolor ea culpa\",\n      \"name\": \"Excepteur\",\n      \"credentials_prefix\": \"ut aute esse fugiat\",\n      \"twilio_sid\": \"aute minim in Excepteur\",\n      \"twilio_auth_token\": \"do\",\n      \"is_billable\": 82280193,\n      \"created_at\": \"et consequat anim\",\n      \"updated_at\": \"pariatur\"\n    },\n    \"call_forwarding\": {\n      \"id\": 87424077,\n      \"number_id\": -15392638,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"\",\n      \"country\": \"nisi amet dolore ut\",\n      \"number\": \"in pariatur ea\",\n      \"country_calling_code\": \"dolor ex do consectetur\",\n      \"national_number\": \"est veniam Duis et\",\n      \"formatted_number\": \"nisi consequat do\",\n      \"extension\": \"in esse voluptate\",\n      \"created_at\": \"ut laborum cupidatat in eu\",\n      \"updated_at\": \"proident commodo in\"\n    },\n    \"numberable_id\": 22690736,\n    \"numberable_type\": \"aliquip veniam do qui magna\",\n    \"numberable\": {\n      \"id\": 48557422,\n      \"organization_id\": -74396900,\n      \"owner_id\": 60716020,\n      \"team_id\": -65173352,\n      \"name\": \"voluptate do\",\n      \"created_at\": \"voluptate sint quis\",\n      \"updated_at\": \"ad exercitation aute\"\n    }\n  },\n  \"numbers\": [\n    {\n      \"id\": 48701471,\n      \"organization_id\": -9991625,\n      \"country\": \"in\",\n      \"state\": \"minim\",\n      \"city\": \"ut amet aute sed\",\n      \"number\": \"proident do esse pari\",\n      \"number_vendor_id\": -92720338,\n      \"country_calling_code\": \"labore laboris dolore tempor\",\n      \"national_number\": \"in exercitation est non aute\",\n      \"formattedNumber\": \"anim dolor\",\n      \"formatted_number\": \"ut consequat amet\",\n      \"short_code\": 20942558,\n      \"is_landline\": 26123861,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"est incididunt qu\",\n      \"area_code\": {\n        \"id\": -85877957,\n        \"area_code\": \"non ea labore adipisicing\",\n        \"state_code\": \"incididunt aute\",\n        \"state_name\": \"consequat sed pariatur qui\",\n        \"country_code\": \"quis irure id est\",\n        \"time_zone\": \"reprehende\",\n        \"group_id\": -57554008\n      },\n      \"landline\": {\n        \"id\": -50662972,\n        \"number_id\": 40949215,\n        \"address_sid\": \"dolore nostrud sint veniam\",\n        \"sid\": \"aliqua reprehenderit\",\n        \"document_sid\": \"fugiat nisi minim nulla\",\n        \"status\": \"Ut sunt\",\n        \"verification_attempts\": 50032905,\n        \"last_verify_attempt_at\": \"laborum sunt minim sed esse\",\n        \"landline_name\": \"Lorem officia sit qui\",\n        \"street_address\": \"laborum officia sint dolor\",\n        \"city\": \"aute irure dolore qui\",\n        \"state\": \"nulla\",\n        \"zip_code\": \"Excepteur anim deserunt\",\n        \"completed\": -4041284,\n        \"created_at\": \"voluptate anim ullamco\",\n        \"updated_at\": \"sit proident mollit nulla\"\n      },\n      \"number_vendor\": {\n        \"id\": 58290283,\n        \"is_active\": true,\n        \"key\": \"culpa laboris Ut consectetur\",\n        \"name\": \"dolor do voluptate\",\n        \"credentials_prefix\": \"labore pariatur laboris in Excepteur\",\n        \"twilio_sid\": \"non id\",\n        \"twilio_auth_token\": \"ut Lore\",\n        \"is_billable\": 85956139,\n        \"created_at\": \"est\",\n        \"updated_at\": \"adipisicing nisi incididunt\"\n      },\n      \"call_forwarding\": {\n        \"id\": -76251017,\n        \"number_id\": 33608250,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"laborum anim dolor dolore\",\n        \"country\": \"in pariatur\",\n        \"number\": \"Lorem\",\n        \"country_calling_code\": \"in tempor esse ad est\",\n        \"national_number\": \"dolor la\",\n        \"formatted_number\": \"consequat ad\",\n        \"extension\": \"nulla irure culpa\",\n        \"created_at\": \"voluptate occaecat laborum dolor nulla\",\n        \"updated_at\": \"ipsum veniam id ea\"\n      },\n      \"numberable_id\": 11697856,\n      \"numberable_type\": \"eiusmod\",\n      \"numberable\": {\n        \"id\": 75835658,\n        \"organization_id\": -18900545,\n        \"owner_id\": 83747537,\n        \"team_id\": -51195356,\n        \"name\": \"magna\",\n        \"created_at\": \"in dolor adipisicing\",\n        \"updated_at\": \"eu sunt e\"\n      }\n    },\n    {\n      \"id\": 87141012,\n      \"organization_id\": 25212490,\n      \"country\": \"laborum incididunt\",\n      \"state\": \"dolore proident reprehenderit ad\",\n      \"city\": \"officia in\",\n      \"number\": \"non eiusmod aliquip nulla Excepteur\",\n      \"number_vendor_id\": -56421471,\n      \"country_calling_code\": \"Duis\",\n      \"national_number\": \"quis\",\n      \"formattedNumber\": \"ex ips\",\n      \"formatted_number\": \"dolore aliquip\",\n      \"short_code\": -46726973,\n      \"is_landline\": 21674046,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"ad officia sit\",\n      \"area_code\": {\n        \"id\": 4031800,\n        \"area_code\": \"ut\",\n        \"state_code\": \"exercitation pariatur eu reprehenderit dolo\",\n        \"state_name\": \"anim dolor\",\n        \"country_code\": \"id occaecat exercitation Ut\",\n        \"time_zone\": \"ut consequat sit\",\n        \"group_id\": -79926811\n      },\n      \"landline\": {\n        \"id\": -34484949,\n        \"number_id\": -65851852,\n        \"address_sid\": \"amet reprehenderit\",\n        \"sid\": \"id eu elit non\",\n        \"document_sid\": \"culpa\",\n        \"status\": \"adipisicing aliquip eiusmod dolor\",\n        \"verification_attempts\": -23812928,\n        \"last_verify_attempt_at\": \"aliqu\",\n        \"landline_name\": \"sed voluptate\",\n        \"street_address\": \"aliqua\",\n        \"city\": \"ad Lorem\",\n        \"state\": \"Ut dolore\",\n        \"zip_code\": \"minim nulla proident ipsum culpa\",\n        \"completed\": 64778162,\n        \"created_at\": \"ad ex irure nulla\",\n        \"updated_at\": \"est in in velit\"\n      },\n      \"number_vendor\": {\n        \"id\": -89610278,\n        \"is_active\": true,\n        \"key\": \"ipsum ut irure culpa pariatur\",\n        \"name\": \"ex \",\n        \"credentials_prefix\": \"Duis ullamco\",\n        \"twilio_sid\": \"est ullamco\",\n        \"twilio_auth_token\": \"dolore esse quis et anim\",\n        \"is_billable\": -87325777,\n        \"created_at\": \"tempor cillum voluptate in\",\n        \"updated_at\": \"irure culpa\"\n      },\n      \"call_forwarding\": {\n        \"id\": 73602365,\n        \"number_id\": 46679111,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"enim veniam deserunt\",\n        \"country\": \"sed ea\",\n        \"number\": \"magna\",\n        \"country_calling_code\": \"voluptate consequat non\",\n        \"national_number\": \"eu ut occaecat\",\n        \"formatted_number\": \"sit aliquip\",\n        \"extension\": \"ad Excepteur aliqua laborum\",\n        \"created_at\": \"officia\",\n        \"updated_at\": \"non ullamco in aliquip\"\n      },\n      \"numberable_id\": 83549194,\n      \"numberable_type\": \"amet reprehenderit consectetur\",\n      \"numberable\": {\n        \"id\": 50065928,\n        \"organization_id\": -47025936,\n        \"owner_id\": 58341916,\n        \"team_id\": -64294576,\n        \"name\": \"dolore non\",\n        \"created_at\": \"aliquip Excepteur amet\",\n        \"updated_at\": \"aute\"\n      }\n    }\n  ]\n}"}],"_postman_id":"7a11c163-9f67-4075-a6b2-f3b956d6865c"},{"name":"Toggle hubspot","id":"86de0f08-a0b9-4938-ad1f-f9daf2a1df71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/hubspot","description":"<p>Toggle hubspot</p>\n","urlObject":{"path":["teams",":team","hubspot"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"ecd744b2-390e-4fbc-8ba3-2e68db04c29a","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"122216fa-ca1c-452e-a1f8-fcd4a1e77f7e","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/hubspot","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","hubspot"],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 46337981,\n  \"organization_id\": -54253047,\n  \"owner_id\": 17163234,\n  \"name\": \"pariatur fugiat non anim\",\n  \"created_at\": \"Duis dolor elit eiusmod sit\",\n  \"updated_at\": \"culpa incididunt cillum\",\n  \"number\": {\n    \"id\": -31790645,\n    \"organization_id\": -26620559,\n    \"country\": \"pariatur\",\n    \"state\": \"eu amet tempor exercitation sunt\",\n    \"city\": \"ut Ut in elit nostrud\",\n    \"number\": \"do Ut\",\n    \"number_vendor_id\": 52927167,\n    \"country_calling_code\": \"Ut id cupidatat\",\n    \"national_number\": \"aliquip \",\n    \"formattedNumber\": \"eu proident sed\",\n    \"formatted_number\": \"labo\",\n    \"short_code\": 77808715,\n    \"is_landline\": -19375680,\n    \"is_toll_free\": true,\n    \"is_aircall\": true,\n    \"voice\": true,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": false,\n    \"verified_status\": \"elit occaecat enim non\",\n    \"area_code\": {\n      \"id\": -39334518,\n      \"area_code\": \"nulla pariatur\",\n      \"state_code\": \"qui cupidatat dolor\",\n      \"state_name\": \"esse\",\n      \"country_code\": \"voluptate culpa do dolore reprehenderit\",\n      \"time_zone\": \"sit quis ullamco ex enim\",\n      \"group_id\": -18014851\n    },\n    \"landline\": {\n      \"id\": 52618197,\n      \"number_id\": -62653768,\n      \"address_sid\": \"Lorem exercitation proident incididunt\",\n      \"sid\": \"pariatur aute nostrud Lorem deserunt\",\n      \"document_sid\": \"commodo aute proident nulla\",\n      \"status\": \"sunt\",\n      \"verification_attempts\": -19128739,\n      \"last_verify_attempt_at\": \"minim\",\n      \"landline_name\": \"id\",\n      \"street_address\": \"ea eu\",\n      \"city\": \"dolor\",\n      \"state\": \"cillum fugiat\",\n      \"zip_code\": \"eu Excepteur veniam do\",\n      \"completed\": 34206237,\n      \"created_at\": \"in amet sit\",\n      \"updated_at\": \"sunt\"\n    },\n    \"number_vendor\": {\n      \"id\": 72075618,\n      \"is_active\": true,\n      \"key\": \"dolor dolor ea culpa\",\n      \"name\": \"Excepteur\",\n      \"credentials_prefix\": \"ut aute esse fugiat\",\n      \"twilio_sid\": \"aute minim in Excepteur\",\n      \"twilio_auth_token\": \"do\",\n      \"is_billable\": 82280193,\n      \"created_at\": \"et consequat anim\",\n      \"updated_at\": \"pariatur\"\n    },\n    \"call_forwarding\": {\n      \"id\": 87424077,\n      \"number_id\": -15392638,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"\",\n      \"country\": \"nisi amet dolore ut\",\n      \"number\": \"in pariatur ea\",\n      \"country_calling_code\": \"dolor ex do consectetur\",\n      \"national_number\": \"est veniam Duis et\",\n      \"formatted_number\": \"nisi consequat do\",\n      \"extension\": \"in esse voluptate\",\n      \"created_at\": \"ut laborum cupidatat in eu\",\n      \"updated_at\": \"proident commodo in\"\n    },\n    \"numberable_id\": 22690736,\n    \"numberable_type\": \"aliquip veniam do qui magna\",\n    \"numberable\": {\n      \"id\": 48557422,\n      \"organization_id\": -74396900,\n      \"owner_id\": 60716020,\n      \"team_id\": -65173352,\n      \"name\": \"voluptate do\",\n      \"created_at\": \"voluptate sint quis\",\n      \"updated_at\": \"ad exercitation aute\"\n    }\n  },\n  \"numbers\": [\n    {\n      \"id\": 48701471,\n      \"organization_id\": -9991625,\n      \"country\": \"in\",\n      \"state\": \"minim\",\n      \"city\": \"ut amet aute sed\",\n      \"number\": \"proident do esse pari\",\n      \"number_vendor_id\": -92720338,\n      \"country_calling_code\": \"labore laboris dolore tempor\",\n      \"national_number\": \"in exercitation est non aute\",\n      \"formattedNumber\": \"anim dolor\",\n      \"formatted_number\": \"ut consequat amet\",\n      \"short_code\": 20942558,\n      \"is_landline\": 26123861,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"est incididunt qu\",\n      \"area_code\": {\n        \"id\": -85877957,\n        \"area_code\": \"non ea labore adipisicing\",\n        \"state_code\": \"incididunt aute\",\n        \"state_name\": \"consequat sed pariatur qui\",\n        \"country_code\": \"quis irure id est\",\n        \"time_zone\": \"reprehende\",\n        \"group_id\": -57554008\n      },\n      \"landline\": {\n        \"id\": -50662972,\n        \"number_id\": 40949215,\n        \"address_sid\": \"dolore nostrud sint veniam\",\n        \"sid\": \"aliqua reprehenderit\",\n        \"document_sid\": \"fugiat nisi minim nulla\",\n        \"status\": \"Ut sunt\",\n        \"verification_attempts\": 50032905,\n        \"last_verify_attempt_at\": \"laborum sunt minim sed esse\",\n        \"landline_name\": \"Lorem officia sit qui\",\n        \"street_address\": \"laborum officia sint dolor\",\n        \"city\": \"aute irure dolore qui\",\n        \"state\": \"nulla\",\n        \"zip_code\": \"Excepteur anim deserunt\",\n        \"completed\": -4041284,\n        \"created_at\": \"voluptate anim ullamco\",\n        \"updated_at\": \"sit proident mollit nulla\"\n      },\n      \"number_vendor\": {\n        \"id\": 58290283,\n        \"is_active\": true,\n        \"key\": \"culpa laboris Ut consectetur\",\n        \"name\": \"dolor do voluptate\",\n        \"credentials_prefix\": \"labore pariatur laboris in Excepteur\",\n        \"twilio_sid\": \"non id\",\n        \"twilio_auth_token\": \"ut Lore\",\n        \"is_billable\": 85956139,\n        \"created_at\": \"est\",\n        \"updated_at\": \"adipisicing nisi incididunt\"\n      },\n      \"call_forwarding\": {\n        \"id\": -76251017,\n        \"number_id\": 33608250,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"laborum anim dolor dolore\",\n        \"country\": \"in pariatur\",\n        \"number\": \"Lorem\",\n        \"country_calling_code\": \"in tempor esse ad est\",\n        \"national_number\": \"dolor la\",\n        \"formatted_number\": \"consequat ad\",\n        \"extension\": \"nulla irure culpa\",\n        \"created_at\": \"voluptate occaecat laborum dolor nulla\",\n        \"updated_at\": \"ipsum veniam id ea\"\n      },\n      \"numberable_id\": 11697856,\n      \"numberable_type\": \"eiusmod\",\n      \"numberable\": {\n        \"id\": 75835658,\n        \"organization_id\": -18900545,\n        \"owner_id\": 83747537,\n        \"team_id\": -51195356,\n        \"name\": \"magna\",\n        \"created_at\": \"in dolor adipisicing\",\n        \"updated_at\": \"eu sunt e\"\n      }\n    },\n    {\n      \"id\": 87141012,\n      \"organization_id\": 25212490,\n      \"country\": \"laborum incididunt\",\n      \"state\": \"dolore proident reprehenderit ad\",\n      \"city\": \"officia in\",\n      \"number\": \"non eiusmod aliquip nulla Excepteur\",\n      \"number_vendor_id\": -56421471,\n      \"country_calling_code\": \"Duis\",\n      \"national_number\": \"quis\",\n      \"formattedNumber\": \"ex ips\",\n      \"formatted_number\": \"dolore aliquip\",\n      \"short_code\": -46726973,\n      \"is_landline\": 21674046,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"ad officia sit\",\n      \"area_code\": {\n        \"id\": 4031800,\n        \"area_code\": \"ut\",\n        \"state_code\": \"exercitation pariatur eu reprehenderit dolo\",\n        \"state_name\": \"anim dolor\",\n        \"country_code\": \"id occaecat exercitation Ut\",\n        \"time_zone\": \"ut consequat sit\",\n        \"group_id\": -79926811\n      },\n      \"landline\": {\n        \"id\": -34484949,\n        \"number_id\": -65851852,\n        \"address_sid\": \"amet reprehenderit\",\n        \"sid\": \"id eu elit non\",\n        \"document_sid\": \"culpa\",\n        \"status\": \"adipisicing aliquip eiusmod dolor\",\n        \"verification_attempts\": -23812928,\n        \"last_verify_attempt_at\": \"aliqu\",\n        \"landline_name\": \"sed voluptate\",\n        \"street_address\": \"aliqua\",\n        \"city\": \"ad Lorem\",\n        \"state\": \"Ut dolore\",\n        \"zip_code\": \"minim nulla proident ipsum culpa\",\n        \"completed\": 64778162,\n        \"created_at\": \"ad ex irure nulla\",\n        \"updated_at\": \"est in in velit\"\n      },\n      \"number_vendor\": {\n        \"id\": -89610278,\n        \"is_active\": true,\n        \"key\": \"ipsum ut irure culpa pariatur\",\n        \"name\": \"ex \",\n        \"credentials_prefix\": \"Duis ullamco\",\n        \"twilio_sid\": \"est ullamco\",\n        \"twilio_auth_token\": \"dolore esse quis et anim\",\n        \"is_billable\": -87325777,\n        \"created_at\": \"tempor cillum voluptate in\",\n        \"updated_at\": \"irure culpa\"\n      },\n      \"call_forwarding\": {\n        \"id\": 73602365,\n        \"number_id\": 46679111,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"enim veniam deserunt\",\n        \"country\": \"sed ea\",\n        \"number\": \"magna\",\n        \"country_calling_code\": \"voluptate consequat non\",\n        \"national_number\": \"eu ut occaecat\",\n        \"formatted_number\": \"sit aliquip\",\n        \"extension\": \"ad Excepteur aliqua laborum\",\n        \"created_at\": \"officia\",\n        \"updated_at\": \"non ullamco in aliquip\"\n      },\n      \"numberable_id\": 83549194,\n      \"numberable_type\": \"amet reprehenderit consectetur\",\n      \"numberable\": {\n        \"id\": 50065928,\n        \"organization_id\": -47025936,\n        \"owner_id\": 58341916,\n        \"team_id\": -64294576,\n        \"name\": \"dolore non\",\n        \"created_at\": \"aliquip Excepteur amet\",\n        \"updated_at\": \"aute\"\n      }\n    }\n  ]\n}"}],"_postman_id":"86de0f08-a0b9-4938-ad1f-f9daf2a1df71"},{"name":"Make default for current user","id":"34e2e79f-fa84-4fa6-a606-b0931c686821","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/make-default","description":"<p>Make default for current user</p>\n","urlObject":{"path":["teams",":team","make-default"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"5988a413-5337-4a9a-aaa7-17ff7e763d68","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"c6bfabd3-e50a-45b1-bd56-80a2fc929343","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/make-default","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","make-default"],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -20699676,\n  \"email\": \"Excepteur consectetur\",\n  \"first_name\": \"nisi minim\",\n  \"last_name\": \"qui in\",\n  \"full_name\": \"nisi Excepteur quis eu\",\n  \"role\": \"velit\",\n  \"inbox_id\": -67516809,\n  \"organization_id\": 13996730,\n  \"photo_url\": \"minim proident ut in u\",\n  \"unread\": 65554571,\n  \"number\": \"reprehenderit ullamco sit quis exercitation\",\n  \"formatted_number\": \"incididunt sed\",\n  \"organizationNumber\": [\n    {\n      \"id\": 27003627,\n      \"country\": \"officia ex\",\n      \"number\": \"esse\",\n      \"formatted_number\": \"culpa in ad dolor\",\n      \"mms\": \"officia ea \"\n    },\n    {\n      \"id\": -69270230,\n      \"country\": \"dolor nostrud est oc\",\n      \"number\": \"aliquip elit ad\",\n      \"formatted_number\": \"proident velit\",\n      \"mms\": \"amet et proident\"\n    }\n  ],\n  \"userPermissions\": [\n    \"aliqua amet voluptate\",\n    \"tempor quis\"\n  ]\n}"},{"id":"108b4be4-1022-4722-bed2-9a56b92ac8b1","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/make-default","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","make-default"],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"team\": \"Lorem\"\n}"}],"_postman_id":"34e2e79f-fa84-4fa6-a606-b0931c686821"},{"name":"Make default for member","id":"c3d225a0-acfb-486a-9cce-7180ae2aee33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/make-default-for/:member","description":"<p>Make default for member</p>\n","urlObject":{"path":["teams",":team","make-default-for",":member"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"eaae502f-ed12-4d68-b9a7-6e3f6a9d34d9","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"},{"id":"a5ba41ea-3579-4bca-b87c-9aeb049b7b54","description":{"content":"<p>(Required) Member ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"member"}]}},"response":[{"id":"10b7bf56-5bd3-4ecc-82f2-d0158d51c7b2","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/make-default-for/:member","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","make-default-for",":member"],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"},{"key":"member","value":"38894851.6112895","description":"(Required) Member ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -96488284,\n  \"conversation_id\": -58481741,\n  \"automated\": true,\n  \"status\": \"enim nisi eu\",\n  \"type\": \"ut\",\n  \"mms_status\": \"aute ullamco culpa pariatur\",\n  \"body\": \"elit deserunt\",\n  \"body_raw\": \"officia\",\n  \"has_tagging\": false,\n  \"icon\": \"consequat in\",\n  \"received_at\": \"non\",\n  \"send_at\": \"esse adipisicing ipsum in laborum\",\n  \"queued_at\": \"minim incididunt\",\n  \"sent_at\": \"esse Lorem laboris\",\n  \"delivered_at\": \"officia aute pariatur\",\n  \"failed_at\": \"irure non laboris incididunt\",\n  \"failed_reason\": \"consequat consectetur fugiat culpa\",\n  \"created_at\": \"aliqua pariatur in\",\n  \"stop_on_response\": false,\n  \"record\": {\n    \"id\": -59453435,\n    \"message_id\": -96832515,\n    \"sid\": \"ea enim\",\n    \"record_id\": \"anim ipsum do\",\n    \"duration\": 37974802,\n    \"status\": \"proident do nulla d\",\n    \"url\": \"amet fugiat ut reprehenderit\",\n    \"is_voicemail\": false,\n    \"created_at\": \"enim eiusmod\",\n    \"updated_at\": \"velit aliqua reprehenderit\"\n  },\n  \"user_id\": -12119061,\n  \"source_id\": -28984223,\n  \"source\": \"ut\",\n  \"contact\": {\n    \"id\": 91088116,\n    \"owner_id\": -60704738,\n    \"color\": \"commodo cillum\",\n    \"first_name\": \"Lorem aute fugiat\",\n    \"last_name\": \"velit sint anim\",\n    \"full_name\": \"Duis ut id\",\n    \"email\": \"ex\",\n    \"photo_url\": \"culpa\",\n    \"number\": \"ut consectetur ullamco dolor\",\n    \"country\": \"do\",\n    \"country_calling_code\": \"consequat non deserunt culpa\",\n    \"national_number\": \"aute eiusmod\",\n    \"typeted_number\": \"pariatur\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"aute consectetur proident\",\n    \"opt_in_request_at\": \"occaecat mollit\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -30955482\n      },\n      {\n        \"number_id\": 22700103\n      }\n    ],\n    \"opt_in_at\": \"sint exercitation veniam sed nisi\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -8612238,\n        \"number_id\": 96272669,\n        \"name\": \"laboris sit fugiat pari\",\n        \"disabled\": true,\n        \"timestamp\": \"ut quis do Lorem\",\n        \"value\": true\n      },\n      {\n        \"id\": -85212453,\n        \"number_id\": 12989392,\n        \"name\": \"in et ut\",\n        \"disabled\": true,\n        \"timestamp\": \"id incididunt eiusmod cillum\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"minim labore dolore aliqua\",\n    \"updated_at\": \"laboris sint\",\n    \"integration_vendor_id\": 52476108,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": 99060454,\n        \"key\": \"in anim elit\",\n        \"name\": \"exercitation\",\n        \"photo_url\": \"dolore irure\"\n      },\n      {\n        \"id\": 76204003,\n        \"key\": \"ex reprehenderit amet\",\n        \"name\": \"deserunt\",\n        \"photo_url\": \"velit minim\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 60715432,\n        \"custom_field_id\": 48276386,\n        \"contact_id\": 39196079,\n        \"field_key\": \"adipisicing proident\",\n        \"organization_id\": -75259989,\n        \"text\": \"dolore esse laborum incididunt\",\n        \"number\": -46579899,\n        \"date\": \"Excepteur non ipsum amet\",\n        \"created_at\": \"deserun\",\n        \"updated_at\": \"sint non officia sit\",\n        \"value\": [\n          {\n            \"type\": \"Ut ex amet\",\n            \"value\": \"deserunt non\"\n          },\n          {\n            \"type\": \"laborum enim Ut\",\n            \"value\": \"Lorem commodo labore\"\n          }\n        ]\n      },\n      {\n        \"id\": -70709235,\n        \"custom_field_id\": 26590191,\n        \"contact_id\": -46631813,\n        \"field_key\": \"enim Ut nisi\",\n        \"organization_id\": -23011331,\n        \"text\": \"dolor consequat sint Ut\",\n        \"number\": -90250801,\n        \"date\": \"magna proident\",\n        \"created_at\": \"n\",\n        \"updated_at\": \"Lorem Duis\",\n        \"value\": [\n          {\n            \"type\": \"id Ut ex aliquip\",\n            \"value\": \"pariatur fugiat laboris\"\n          },\n          {\n            \"type\": \"do\",\n            \"value\": \"Ut ullamco ea\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 20232062,\n        \"name\": \"ad sunt\",\n        \"label\": \"nulla sed ut\",\n        \"created_at\": \"tempor Lorem culpa ut ullamco\"\n      },\n      {\n        \"id\": -38046060,\n        \"name\": \"dolore quis\",\n        \"label\": \"qui aliqua magna voluptate\",\n        \"created_at\": \"ipsum sint ex occaecat eu\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -214948,\n        \"text\": \"reprehenderit mollit\",\n        \"created_at\": \"aute nisi si\",\n        \"updated_at\": \"esse est Lorem\"\n      },\n      {\n        \"id\": -31159362,\n        \"text\": \"consequat magna aute qui\",\n        \"created_at\": \"eu est \",\n        \"updated_at\": \"tempor\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 38838309,\n    \"email\": \"eiusmod nisi\",\n    \"first_name\": \"nostrud incididunt qu\",\n    \"last_name\": \"elit ipsum\",\n    \"full_name\": \"dolore consectetur dolor Excepteur\",\n    \"role\": \"in enim in\",\n    \"inbox_id\": 51715230,\n    \"organization_id\": 71561898,\n    \"photo_url\": \"velit deserunt sunt dolore\",\n    \"unread\": -50128554,\n    \"number\": \"in Duis ullamco dolore sint\",\n    \"formatted_number\": \"esse et\",\n    \"organizationNumber\": [\n      {\n        \"id\": -86044635,\n        \"country\": \"proident reprehenderit\",\n        \"number\": \"do nisi id\",\n        \"formatted_number\": \"ipsum ut id in\",\n        \"mms\": \"laboris proident\"\n      },\n      {\n        \"id\": 9395009,\n        \"country\": \"est ea\",\n        \"number\": \"anim\",\n        \"formatted_number\": \"incididunt Ut nostrud\",\n        \"mms\": \"tempor labore adipisicing est\"\n      }\n    ],\n    \"userPermissions\": [\n      \"anim ut elit\",\n      \"deserunt\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": -3076559,\n      \"email\": \"dolor fugiat\",\n      \"first_name\": \"occaecat fug\",\n      \"last_name\": \"in anim\",\n      \"full_name\": \"eiusmod culpa\",\n      \"role\": \"officia Lo\",\n      \"inbox_id\": 95816824,\n      \"organization_id\": -99869044,\n      \"photo_url\": \"ea\",\n      \"unread\": -10324878,\n      \"number\": \"sunt\",\n      \"formatted_number\": \"aliqua\",\n      \"organizationNumber\": [\n        {\n          \"id\": 60919685,\n          \"country\": \"ad ut dolor ut ipsum\",\n          \"number\": \"sint eu ea\",\n          \"formatted_number\": \"voluptate dolor\",\n          \"mms\": \"Duis sit consequat enim \"\n        },\n        {\n          \"id\": -87539046,\n          \"country\": \"irure\",\n          \"number\": \"cupidatat nisi pariatur\",\n          \"formatted_number\": \"aliqua fugiat et\",\n          \"mms\": \"aliquip aliqua voluptate anim\"\n        }\n      ],\n      \"userPermissions\": [\n        \"eu ipsum\",\n        \"aute cupidat\"\n      ]\n    },\n    {\n      \"id\": -25127541,\n      \"email\": \"aliquip incididunt qui deserunt cupidatat\",\n      \"first_name\": \"cupidatat\",\n      \"last_name\": \"dolore\",\n      \"full_name\": \"eu\",\n      \"role\": \"sit\",\n      \"inbox_id\": -2680336,\n      \"organization_id\": 23007616,\n      \"photo_url\": \"in\",\n      \"unread\": -41016453,\n      \"number\": \"ex exercitation commodo nulla\",\n      \"formatted_number\": \"anim ullamco enim ex\",\n      \"organizationNumber\": [\n        {\n          \"id\": -59261576,\n          \"country\": \"sed minim mollit\",\n          \"number\": \"Lorem cillum enim\",\n          \"formatted_number\": \"laboris esse ut nisi\",\n          \"mms\": \"deserunt exercitation non velit\"\n        },\n        {\n          \"id\": -41018011,\n          \"country\": \"Duis incididunt\",\n          \"number\": \"est ut tempor Ut\",\n          \"formatted_number\": \"officia commodo consectetur\",\n          \"mms\": \"ut ut culpa\"\n        }\n      ],\n      \"userPermissions\": [\n        \"minim\",\n        \"Lorem non dolore\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": -20432784,\n      \"content_type\": \"sed dolore laborum\",\n      \"source\": \"in fugiat veniam aliquip\",\n      \"source_short\": \"nisi quis laboris\",\n      \"created_at\": \"sunt in mollit\"\n    },\n    {\n      \"id\": 56623880,\n      \"content_type\": \"in culpa\",\n      \"source\": \"et eiusmod\",\n      \"source_short\": \"ullamco dolo\",\n      \"created_at\": \"commodo sint\"\n    }\n  ]\n}"},{"id":"642cf07e-eb14-4f2f-ad3a-a68c4b98ada1","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/make-default-for/:member","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","make-default-for",":member"],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"},{"key":"member","value":"38894851.6112895","description":"(Required) Member ID"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"team\": \"Lorem\"\n}"}],"_postman_id":"c3d225a0-acfb-486a-9cce-7180ae2aee33"},{"name":"Get team members","id":"2512309c-268d-452a-8abe-a8ee13ce4671","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/members?query=laborum&limit=65893348&offset=65893348","description":"<p>Returnes a list of all the members within a particular team. This API endpoint also allows for filtering team members before fetching by user's first name or last name.</p>\n","urlObject":{"path":["teams",":team","members"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Filter by user's first_name or last_name</p>\n","type":"text/plain"},"key":"query","value":"laborum"},{"description":{"content":"<p>Limit</p>\n","type":"text/plain"},"key":"limit","value":"65893348"},{"description":{"content":"<p>Offset</p>\n","type":"text/plain"},"key":"offset","value":"65893348"}],"variable":[{"id":"9cd4fe9a-bfe9-4ad0-a54b-f2af169fc5be","description":{"content":"<p>(Required) Team</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"team"}]}},"response":[{"id":"631cb773-ac68-498a-ad4b-3ec1049eb6f3","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/members?query=laborum&limit=65893348&offset=65893348","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","members"],"query":[{"key":"query","value":"laborum"},{"key":"limit","value":"65893348"},{"key":"offset","value":"65893348"}],"variable":[{"key":"team","value":"-46945205","description":"(Required) Team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 66676258,\n    \"email\": \"ut adipisicing incididunt aliquip cupidatat\",\n    \"first_name\": \"sint pariatur\",\n    \"last_name\": \"do ipsum\",\n    \"full_name\": \"magna voluptate\",\n    \"role\": \"qui proident\",\n    \"inbox_id\": 30179371,\n    \"organization_id\": 22973591,\n    \"photo_url\": \"velit occaecat la\",\n    \"unread\": -72940675,\n    \"number\": \"reprehenderit proident dolore velit\",\n    \"formatted_number\": \"ad\",\n    \"organizationNumber\": [\n      {\n        \"id\": -25282161,\n        \"country\": \"in \",\n        \"number\": \"labore\",\n        \"formatted_number\": \"esse exercitation culpa\",\n        \"mms\": \"voluptate anim exercitation eu\"\n      },\n      {\n        \"id\": 80758208,\n        \"country\": \"Ut in\",\n        \"number\": \"aute\",\n        \"formatted_number\": \"et amet enim\",\n        \"mms\": \"laboris velit Lorem sed\"\n      }\n    ],\n    \"userPermissions\": [\n      \"sed cillum\",\n      \"aliqua amet dolor incididunt nulla\"\n    ]\n  },\n  {\n    \"id\": -34557383,\n    \"email\": \"magna sit do aute\",\n    \"first_name\": \"laborum aute ipsum\",\n    \"last_name\": \"commodo\",\n    \"full_name\": \"labore consequat\",\n    \"role\": \"nulla aliqua quis voluptate\",\n    \"inbox_id\": -42670344,\n    \"organization_id\": -48018160,\n    \"photo_url\": \"cillum do ut irure\",\n    \"unread\": 52708385,\n    \"number\": \"irure et min\",\n    \"formatted_number\": \"occaecat\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26667117,\n        \"country\": \"aute Ex\",\n        \"number\": \"sunt ex et veniam\",\n        \"formatted_number\": \"Ut dolore\",\n        \"mms\": \"Duis tempor incididunt aute\"\n      },\n      {\n        \"id\": 20029485,\n        \"country\": \"cillum labore elit nisi\",\n        \"number\": \"reprehenderit eu consequat\",\n        \"formatted_number\": \"qui eu sed cupida\",\n        \"mms\": \"velit sunt deserunt\"\n      }\n    ],\n    \"userPermissions\": [\n      \"tempor ut sint\",\n      \"minim mollit dolore in velit\"\n    ]\n  }\n]"}],"_postman_id":"2512309c-268d-452a-8abe-a8ee13ce4671"},{"name":"Add team members","id":"b0b88651-c184-4ddd-899e-e0d766a741b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"members\": [\n    {\n      \"id\": 1\n    },\n    {\n      \"id\": 1\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/members","description":"<p>This request adds a user object as a team member to a particular team by user id. Additionally, the API is used to define team member roles in the team.</p>\n","urlObject":{"path":["teams",":team","members"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"280cb1b7-e7ac-4060-83f1-e1d6bc456175","description":{"content":"<p>(Required) Team id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"team"}]}},"response":[{"id":"eca7b091-7930-4b2e-a564-705f8a2328cf","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"members\": [\n    {\n      \"id\": 1\n    },\n    {\n      \"id\": 1\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/members","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","members"],"variable":[{"key":"team","value":"27950450","description":"(Required) Team id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 66676258,\n    \"email\": \"ut adipisicing incididunt aliquip cupidatat\",\n    \"first_name\": \"sint pariatur\",\n    \"last_name\": \"do ipsum\",\n    \"full_name\": \"magna voluptate\",\n    \"role\": \"qui proident\",\n    \"inbox_id\": 30179371,\n    \"organization_id\": 22973591,\n    \"photo_url\": \"velit occaecat la\",\n    \"unread\": -72940675,\n    \"number\": \"reprehenderit proident dolore velit\",\n    \"formatted_number\": \"ad\",\n    \"organizationNumber\": [\n      {\n        \"id\": -25282161,\n        \"country\": \"in \",\n        \"number\": \"labore\",\n        \"formatted_number\": \"esse exercitation culpa\",\n        \"mms\": \"voluptate anim exercitation eu\"\n      },\n      {\n        \"id\": 80758208,\n        \"country\": \"Ut in\",\n        \"number\": \"aute\",\n        \"formatted_number\": \"et amet enim\",\n        \"mms\": \"laboris velit Lorem sed\"\n      }\n    ],\n    \"userPermissions\": [\n      \"sed cillum\",\n      \"aliqua amet dolor incididunt nulla\"\n    ]\n  },\n  {\n    \"id\": -34557383,\n    \"email\": \"magna sit do aute\",\n    \"first_name\": \"laborum aute ipsum\",\n    \"last_name\": \"commodo\",\n    \"full_name\": \"labore consequat\",\n    \"role\": \"nulla aliqua quis voluptate\",\n    \"inbox_id\": -42670344,\n    \"organization_id\": -48018160,\n    \"photo_url\": \"cillum do ut irure\",\n    \"unread\": 52708385,\n    \"number\": \"irure et min\",\n    \"formatted_number\": \"occaecat\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26667117,\n        \"country\": \"aute Ex\",\n        \"number\": \"sunt ex et veniam\",\n        \"formatted_number\": \"Ut dolore\",\n        \"mms\": \"Duis tempor incididunt aute\"\n      },\n      {\n        \"id\": 20029485,\n        \"country\": \"cillum labore elit nisi\",\n        \"number\": \"reprehenderit eu consequat\",\n        \"formatted_number\": \"qui eu sed cupida\",\n        \"mms\": \"velit sunt deserunt\"\n      }\n    ],\n    \"userPermissions\": [\n      \"tempor ut sint\",\n      \"minim mollit dolore in velit\"\n    ]\n  }\n]"},{"id":"bb97b55b-8b07-44bf-bfe2-5a8b51e9be7a","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"members\": [\n    {\n      \"id\": 1\n    },\n    {\n      \"id\": 1\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/members","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","members"],"variable":[{"key":"team","value":"27950450","description":"(Required) Team id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"594c9e36-0e9a-42a0-9e3d-a3e0df3b435f","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"members\": [\n    {\n      \"id\": 1\n    },\n    {\n      \"id\": 1\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/members","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","members"],"variable":[{"key":"team","value":"27950450","description":"(Required) Team id"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"members\": \"The members field is required.\"\n}"}],"_postman_id":"b0b88651-c184-4ddd-899e-e0d766a741b3"},{"name":"Remove team members","id":"ad204564-1153-43b8-9e52-1c83f0f77b43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/members/:member","description":"<p>This request removes information about a particular team member, specified by a member’s id, from the team, specified by team id. <br /><br />The result is – the user no more can see the team they were a part of.</p>\n","urlObject":{"path":["teams",":team","members",":member"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"c794d202-0543-4025-bc68-8a0c0156c44b","description":{"content":"<p>(Required) Team</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"team"},{"id":"922566cf-ce78-43b9-92d2-e0d224a56db9","description":{"content":"<p>(Required) Member</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"member"}]}},"response":[{"id":"853f9650-63b2-41fa-a813-4f660f7c9184","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/members/:member","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","members",":member"],"variable":[{"key":"team","value":"-46945205","description":"(Required) Team"},{"key":"member","value":"-46945205","description":"(Required) Member"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 66676258,\n    \"email\": \"ut adipisicing incididunt aliquip cupidatat\",\n    \"first_name\": \"sint pariatur\",\n    \"last_name\": \"do ipsum\",\n    \"full_name\": \"magna voluptate\",\n    \"role\": \"qui proident\",\n    \"inbox_id\": 30179371,\n    \"organization_id\": 22973591,\n    \"photo_url\": \"velit occaecat la\",\n    \"unread\": -72940675,\n    \"number\": \"reprehenderit proident dolore velit\",\n    \"formatted_number\": \"ad\",\n    \"organizationNumber\": [\n      {\n        \"id\": -25282161,\n        \"country\": \"in \",\n        \"number\": \"labore\",\n        \"formatted_number\": \"esse exercitation culpa\",\n        \"mms\": \"voluptate anim exercitation eu\"\n      },\n      {\n        \"id\": 80758208,\n        \"country\": \"Ut in\",\n        \"number\": \"aute\",\n        \"formatted_number\": \"et amet enim\",\n        \"mms\": \"laboris velit Lorem sed\"\n      }\n    ],\n    \"userPermissions\": [\n      \"sed cillum\",\n      \"aliqua amet dolor incididunt nulla\"\n    ]\n  },\n  {\n    \"id\": -34557383,\n    \"email\": \"magna sit do aute\",\n    \"first_name\": \"laborum aute ipsum\",\n    \"last_name\": \"commodo\",\n    \"full_name\": \"labore consequat\",\n    \"role\": \"nulla aliqua quis voluptate\",\n    \"inbox_id\": -42670344,\n    \"organization_id\": -48018160,\n    \"photo_url\": \"cillum do ut irure\",\n    \"unread\": 52708385,\n    \"number\": \"irure et min\",\n    \"formatted_number\": \"occaecat\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26667117,\n        \"country\": \"aute Ex\",\n        \"number\": \"sunt ex et veniam\",\n        \"formatted_number\": \"Ut dolore\",\n        \"mms\": \"Duis tempor incididunt aute\"\n      },\n      {\n        \"id\": 20029485,\n        \"country\": \"cillum labore elit nisi\",\n        \"number\": \"reprehenderit eu consequat\",\n        \"formatted_number\": \"qui eu sed cupida\",\n        \"mms\": \"velit sunt deserunt\"\n      }\n    ],\n    \"userPermissions\": [\n      \"tempor ut sint\",\n      \"minim mollit dolore in velit\"\n    ]\n  }\n]"}],"_postman_id":"ad204564-1153-43b8-9e52-1c83f0f77b43"},{"name":"Search team members","id":"5759f01c-87ff-4bd2-9a2c-735c85b98d86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/members/search?term=laborum&assigned=-46945205&limit=65893348&offset=65893348","description":"<p>This API endpoint allows for searching team members (excluding current user) by </p><ul><li>First name</li> <li>Last name</li> <li>Their email</li> <li>Their number</li></ul> <p>This request fetches and returns a specific list for members that match the specified query terms.</p><p></p>\n","urlObject":{"path":["teams",":team","members","search"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Search user by first_name, last_name, email, number)</p>\n","type":"text/plain"},"key":"term","value":"laborum"},{"description":{"content":"<p>(Required) Member's user id is not equal</p>\n","type":"text/plain"},"key":"assigned","value":"-46945205"},{"description":{"content":"<p>Limit</p>\n","type":"text/plain"},"key":"limit","value":"65893348"},{"description":{"content":"<p>Offset</p>\n","type":"text/plain"},"key":"offset","value":"65893348"}],"variable":[{"id":"6bf156f9-994b-48df-82b3-9cf036a20038","description":{"content":"<p>(Required) Team</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"team"}]}},"response":[{"id":"2263704f-4803-4d18-bce4-184f3f92822d","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/members/search?term=laborum&assigned=-46945205&limit=65893348&offset=65893348","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","members","search"],"query":[{"key":"term","value":"laborum"},{"key":"assigned","value":"-46945205"},{"key":"limit","value":"65893348"},{"key":"offset","value":"65893348"}],"variable":[{"key":"team","value":"-46945205","description":"(Required) Team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 66676258,\n    \"email\": \"ut adipisicing incididunt aliquip cupidatat\",\n    \"first_name\": \"sint pariatur\",\n    \"last_name\": \"do ipsum\",\n    \"full_name\": \"magna voluptate\",\n    \"role\": \"qui proident\",\n    \"inbox_id\": 30179371,\n    \"organization_id\": 22973591,\n    \"photo_url\": \"velit occaecat la\",\n    \"unread\": -72940675,\n    \"number\": \"reprehenderit proident dolore velit\",\n    \"formatted_number\": \"ad\",\n    \"organizationNumber\": [\n      {\n        \"id\": -25282161,\n        \"country\": \"in \",\n        \"number\": \"labore\",\n        \"formatted_number\": \"esse exercitation culpa\",\n        \"mms\": \"voluptate anim exercitation eu\"\n      },\n      {\n        \"id\": 80758208,\n        \"country\": \"Ut in\",\n        \"number\": \"aute\",\n        \"formatted_number\": \"et amet enim\",\n        \"mms\": \"laboris velit Lorem sed\"\n      }\n    ],\n    \"userPermissions\": [\n      \"sed cillum\",\n      \"aliqua amet dolor incididunt nulla\"\n    ]\n  },\n  {\n    \"id\": -34557383,\n    \"email\": \"magna sit do aute\",\n    \"first_name\": \"laborum aute ipsum\",\n    \"last_name\": \"commodo\",\n    \"full_name\": \"labore consequat\",\n    \"role\": \"nulla aliqua quis voluptate\",\n    \"inbox_id\": -42670344,\n    \"organization_id\": -48018160,\n    \"photo_url\": \"cillum do ut irure\",\n    \"unread\": 52708385,\n    \"number\": \"irure et min\",\n    \"formatted_number\": \"occaecat\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26667117,\n        \"country\": \"aute Ex\",\n        \"number\": \"sunt ex et veniam\",\n        \"formatted_number\": \"Ut dolore\",\n        \"mms\": \"Duis tempor incididunt aute\"\n      },\n      {\n        \"id\": 20029485,\n        \"country\": \"cillum labore elit nisi\",\n        \"number\": \"reprehenderit eu consequat\",\n        \"formatted_number\": \"qui eu sed cupida\",\n        \"mms\": \"velit sunt deserunt\"\n      }\n    ],\n    \"userPermissions\": [\n      \"tempor ut sint\",\n      \"minim mollit dolore in velit\"\n    ]\n  }\n]"}],"_postman_id":"5759f01c-87ff-4bd2-9a2c-735c85b98d86"},{"name":"Get team numbers","id":"773f9a61-fb29-4751-aa3a-84beff93bbd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/numbers","description":"<p>Get team numbers</p>\n","urlObject":{"path":["teams",":team","numbers"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"cd83fbea-7417-4d8a-9613-62be78f6ba3c","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"team"}]}},"response":[{"id":"2bee8b6a-c150-4402-b12b-7303e37d9230","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/numbers","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","numbers"],"variable":[{"key":"team","value":"-46945205","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 76055705,\n      \"organization_id\": -10694264,\n      \"country\": \"officia \",\n      \"state\": \"dolore ullamco\",\n      \"city\": \"nostrud est Ut\",\n      \"number\": \"ipsum eu est Duis\",\n      \"number_vendor_id\": 64525208,\n      \"country_calling_code\": \"laborum ut\",\n      \"national_number\": \"exercitati\",\n      \"formattedNumber\": \"dolor dolor in\",\n      \"formatted_number\": \"Duis voluptate cupidatat sed sint\",\n      \"short_code\": 2764847,\n      \"is_landline\": 97998671,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": true,\n      \"verified_status\": \"in ut\",\n      \"area_code\": {\n        \"id\": -38424664,\n        \"area_code\": \"nostrud rep\",\n        \"state_code\": \"ipsum consectetur sit cillum\",\n        \"state_name\": \"dolor\",\n        \"country_code\": \"nulla officia dolore\",\n        \"time_zone\": \"eu magna voluptate et ea\",\n        \"group_id\": -79609695\n      },\n      \"landline\": {\n        \"id\": 37669408,\n        \"number_id\": 17198274,\n        \"address_sid\": \"sit pariatur dolor consectetur\",\n        \"sid\": \"labore sed ei\",\n        \"document_sid\": \"nisi u\",\n        \"status\": \"mollit\",\n        \"verification_attempts\": 983452,\n        \"last_verify_attempt_at\": \"nostrud\",\n        \"landline_name\": \"magna cillum nulla consectetur\",\n        \"street_address\": \"ut in proident nulla\",\n        \"city\": \"cillum sed do\",\n        \"state\": \"esse nisi dolor ullamco\",\n        \"zip_code\": \"velit dolor\",\n        \"completed\": 56221201,\n        \"created_at\": \"ut\",\n        \"updated_at\": \"commodo velit ut Lorem\"\n      },\n      \"number_vendor\": {\n        \"id\": -204229,\n        \"is_active\": true,\n        \"key\": \"amet minim ex\",\n        \"name\": \"dolore commodo elit tempor\",\n        \"credentials_prefix\": \"ve\",\n        \"twilio_sid\": \"do deserunt\",\n        \"twilio_auth_token\": \"anim ipsum id\",\n        \"is_billable\": -71888058,\n        \"created_at\": \"commodo est et\",\n        \"updated_at\": \"ipsum consectetur\"\n      },\n      \"call_forwarding\": {\n        \"id\": 40125485,\n        \"number_id\": -61955844,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"officia laborum\",\n        \"country\": \"in\",\n        \"number\": \"fugiat minim ea\",\n        \"country_calling_code\": \"irure\",\n        \"national_number\": \"eu labore laborum\",\n        \"formatted_number\": \"commodo Excepteur in officia Duis\",\n        \"extension\": \"Duis in\",\n        \"created_at\": \"sit deserunt\",\n        \"updated_at\": \"eiusmod culpa incididunt\"\n      },\n      \"numberable_id\": 29388320,\n      \"numberable_type\": \"esse ex\",\n      \"numberable\": {\n        \"id\": 31333650,\n        \"organization_id\": 60261430,\n        \"owner_id\": 17772838,\n        \"team_id\": 39664436,\n        \"name\": \"ea veniam sit labore\",\n        \"created_at\": \"nisi irure officia mollit eiusmod\",\n        \"updated_at\": \"sit fugiat ex adipisicing\"\n      }\n    },\n    {\n      \"id\": 40932847,\n      \"organization_id\": 76239803,\n      \"country\": \"ipsum ullamco irure officia mollit\",\n      \"state\": \"sunt\",\n      \"city\": \"exercitation qui quis\",\n      \"number\": \"deserunt dolore\",\n      \"number_vendor_id\": 78892466,\n      \"country_calling_code\": \"pariatur ea velit\",\n      \"national_number\": \"elit tempor Lorem incididunt\",\n      \"formattedNumber\": \"e\",\n      \"formatted_number\": \"laborum minim anim\",\n      \"short_code\": 82202450,\n      \"is_landline\": -5759111,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": true,\n      \"verified_status\": \"proident minim\",\n      \"area_code\": {\n        \"id\": 85061597,\n        \"area_code\": \"dolor Lorem dolore\",\n        \"state_code\": \"sunt laborum deserunt Excepteur\",\n        \"state_name\": \"Ut proident ad\",\n        \"country_code\": \"deserunt\",\n        \"time_zone\": \"sint\",\n        \"group_id\": 62836554\n      },\n      \"landline\": {\n        \"id\": -15559225,\n        \"number_id\": 84270605,\n        \"address_sid\": \"nostrud sint sunt irure\",\n        \"sid\": \"sit\",\n        \"document_sid\": \"sunt ad\",\n        \"status\": \"ex cillum non\",\n        \"verification_attempts\": 48841219,\n        \"last_verify_attempt_at\": \"cillum\",\n        \"landline_name\": \"ut\",\n        \"street_address\": \"ad\",\n        \"city\": \"ullamco\",\n        \"state\": \"ullamco amet\",\n        \"zip_code\": \"qui irure dolor\",\n        \"completed\": -23060849,\n        \"created_at\": \"sint dolor\",\n        \"updated_at\": \"proident commodo elit\"\n      },\n      \"number_vendor\": {\n        \"id\": -78872375,\n        \"is_active\": true,\n        \"key\": \"ut ipsum\",\n        \"name\": \"dolore eiusmo\",\n        \"credentials_prefix\": \"cupidatat est aute\",\n        \"twilio_sid\": \"irure aliqua commodo ut consectetur\",\n        \"twilio_auth_token\": \"consequat pariatur in\",\n        \"is_billable\": -98713010,\n        \"created_at\": \"sed laborum aliquip in\",\n        \"updated_at\": \"cillum\"\n      },\n      \"call_forwarding\": {\n        \"id\": -98663588,\n        \"number_id\": -12814256,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"pariatur elit cupidatat\",\n        \"country\": \"elit fugiat consequat\",\n        \"number\": \"labore sed occaecat\",\n        \"country_calling_code\": \"quis\",\n        \"national_number\": \"sit eu irure es\",\n        \"formatted_number\": \"ea dolor\",\n        \"extension\": \"reprehenderit\",\n        \"created_at\": \"pariatur in \",\n        \"updated_at\": \"quis sit\"\n      },\n      \"numberable_id\": -72802356,\n      \"numberable_type\": \"ad occaecat laboris ut\",\n      \"numberable\": {\n        \"id\": 21223983,\n        \"organization_id\": 61999000,\n        \"owner_id\": 92318290,\n        \"team_id\": -77224544,\n        \"name\": \"enim in ad laborum\",\n        \"created_at\": \"est dolore cillum eiusmod nisi\",\n        \"updated_at\": \"minim mollit\"\n      }\n    }\n  ]\n}"}],"_postman_id":"773f9a61-fb29-4751-aa3a-84beff93bbd5"},{"name":"Toggle team round robin","id":"dbfdd9c5-2d29-41c7-9df2-1e39508532e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/round-robin","description":"<p>Toggle team round robin</p>\n","urlObject":{"path":["teams",":team","round-robin"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"59612739-cd06-43d9-b87c-ad99b385b862","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"team"}]}},"response":[{"id":"9ac8dfdd-8509-4e11-964d-ec2d60104810","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/round-robin","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","round-robin"],"variable":[{"key":"team","value":"-46945205","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 46337981,\n  \"organization_id\": -54253047,\n  \"owner_id\": 17163234,\n  \"name\": \"pariatur fugiat non anim\",\n  \"created_at\": \"Duis dolor elit eiusmod sit\",\n  \"updated_at\": \"culpa incididunt cillum\",\n  \"number\": {\n    \"id\": -31790645,\n    \"organization_id\": -26620559,\n    \"country\": \"pariatur\",\n    \"state\": \"eu amet tempor exercitation sunt\",\n    \"city\": \"ut Ut in elit nostrud\",\n    \"number\": \"do Ut\",\n    \"number_vendor_id\": 52927167,\n    \"country_calling_code\": \"Ut id cupidatat\",\n    \"national_number\": \"aliquip \",\n    \"formattedNumber\": \"eu proident sed\",\n    \"formatted_number\": \"labo\",\n    \"short_code\": 77808715,\n    \"is_landline\": -19375680,\n    \"is_toll_free\": true,\n    \"is_aircall\": true,\n    \"voice\": true,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": true,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": false,\n    \"verified_status\": \"elit occaecat enim non\",\n    \"area_code\": {\n      \"id\": -39334518,\n      \"area_code\": \"nulla pariatur\",\n      \"state_code\": \"qui cupidatat dolor\",\n      \"state_name\": \"esse\",\n      \"country_code\": \"voluptate culpa do dolore reprehenderit\",\n      \"time_zone\": \"sit quis ullamco ex enim\",\n      \"group_id\": -18014851\n    },\n    \"landline\": {\n      \"id\": 52618197,\n      \"number_id\": -62653768,\n      \"address_sid\": \"Lorem exercitation proident incididunt\",\n      \"sid\": \"pariatur aute nostrud Lorem deserunt\",\n      \"document_sid\": \"commodo aute proident nulla\",\n      \"status\": \"sunt\",\n      \"verification_attempts\": -19128739,\n      \"last_verify_attempt_at\": \"minim\",\n      \"landline_name\": \"id\",\n      \"street_address\": \"ea eu\",\n      \"city\": \"dolor\",\n      \"state\": \"cillum fugiat\",\n      \"zip_code\": \"eu Excepteur veniam do\",\n      \"completed\": 34206237,\n      \"created_at\": \"in amet sit\",\n      \"updated_at\": \"sunt\"\n    },\n    \"number_vendor\": {\n      \"id\": 72075618,\n      \"is_active\": true,\n      \"key\": \"dolor dolor ea culpa\",\n      \"name\": \"Excepteur\",\n      \"credentials_prefix\": \"ut aute esse fugiat\",\n      \"twilio_sid\": \"aute minim in Excepteur\",\n      \"twilio_auth_token\": \"do\",\n      \"is_billable\": 82280193,\n      \"created_at\": \"et consequat anim\",\n      \"updated_at\": \"pariatur\"\n    },\n    \"call_forwarding\": {\n      \"id\": 87424077,\n      \"number_id\": -15392638,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"\",\n      \"country\": \"nisi amet dolore ut\",\n      \"number\": \"in pariatur ea\",\n      \"country_calling_code\": \"dolor ex do consectetur\",\n      \"national_number\": \"est veniam Duis et\",\n      \"formatted_number\": \"nisi consequat do\",\n      \"extension\": \"in esse voluptate\",\n      \"created_at\": \"ut laborum cupidatat in eu\",\n      \"updated_at\": \"proident commodo in\"\n    },\n    \"numberable_id\": 22690736,\n    \"numberable_type\": \"aliquip veniam do qui magna\",\n    \"numberable\": {\n      \"id\": 48557422,\n      \"organization_id\": -74396900,\n      \"owner_id\": 60716020,\n      \"team_id\": -65173352,\n      \"name\": \"voluptate do\",\n      \"created_at\": \"voluptate sint quis\",\n      \"updated_at\": \"ad exercitation aute\"\n    }\n  },\n  \"numbers\": [\n    {\n      \"id\": 48701471,\n      \"organization_id\": -9991625,\n      \"country\": \"in\",\n      \"state\": \"minim\",\n      \"city\": \"ut amet aute sed\",\n      \"number\": \"proident do esse pari\",\n      \"number_vendor_id\": -92720338,\n      \"country_calling_code\": \"labore laboris dolore tempor\",\n      \"national_number\": \"in exercitation est non aute\",\n      \"formattedNumber\": \"anim dolor\",\n      \"formatted_number\": \"ut consequat amet\",\n      \"short_code\": 20942558,\n      \"is_landline\": 26123861,\n      \"is_toll_free\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"est incididunt qu\",\n      \"area_code\": {\n        \"id\": -85877957,\n        \"area_code\": \"non ea labore adipisicing\",\n        \"state_code\": \"incididunt aute\",\n        \"state_name\": \"consequat sed pariatur qui\",\n        \"country_code\": \"quis irure id est\",\n        \"time_zone\": \"reprehende\",\n        \"group_id\": -57554008\n      },\n      \"landline\": {\n        \"id\": -50662972,\n        \"number_id\": 40949215,\n        \"address_sid\": \"dolore nostrud sint veniam\",\n        \"sid\": \"aliqua reprehenderit\",\n        \"document_sid\": \"fugiat nisi minim nulla\",\n        \"status\": \"Ut sunt\",\n        \"verification_attempts\": 50032905,\n        \"last_verify_attempt_at\": \"laborum sunt minim sed esse\",\n        \"landline_name\": \"Lorem officia sit qui\",\n        \"street_address\": \"laborum officia sint dolor\",\n        \"city\": \"aute irure dolore qui\",\n        \"state\": \"nulla\",\n        \"zip_code\": \"Excepteur anim deserunt\",\n        \"completed\": -4041284,\n        \"created_at\": \"voluptate anim ullamco\",\n        \"updated_at\": \"sit proident mollit nulla\"\n      },\n      \"number_vendor\": {\n        \"id\": 58290283,\n        \"is_active\": true,\n        \"key\": \"culpa laboris Ut consectetur\",\n        \"name\": \"dolor do voluptate\",\n        \"credentials_prefix\": \"labore pariatur laboris in Excepteur\",\n        \"twilio_sid\": \"non id\",\n        \"twilio_auth_token\": \"ut Lore\",\n        \"is_billable\": 85956139,\n        \"created_at\": \"est\",\n        \"updated_at\": \"adipisicing nisi incididunt\"\n      },\n      \"call_forwarding\": {\n        \"id\": -76251017,\n        \"number_id\": 33608250,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"laborum anim dolor dolore\",\n        \"country\": \"in pariatur\",\n        \"number\": \"Lorem\",\n        \"country_calling_code\": \"in tempor esse ad est\",\n        \"national_number\": \"dolor la\",\n        \"formatted_number\": \"consequat ad\",\n        \"extension\": \"nulla irure culpa\",\n        \"created_at\": \"voluptate occaecat laborum dolor nulla\",\n        \"updated_at\": \"ipsum veniam id ea\"\n      },\n      \"numberable_id\": 11697856,\n      \"numberable_type\": \"eiusmod\",\n      \"numberable\": {\n        \"id\": 75835658,\n        \"organization_id\": -18900545,\n        \"owner_id\": 83747537,\n        \"team_id\": -51195356,\n        \"name\": \"magna\",\n        \"created_at\": \"in dolor adipisicing\",\n        \"updated_at\": \"eu sunt e\"\n      }\n    },\n    {\n      \"id\": 87141012,\n      \"organization_id\": 25212490,\n      \"country\": \"laborum incididunt\",\n      \"state\": \"dolore proident reprehenderit ad\",\n      \"city\": \"officia in\",\n      \"number\": \"non eiusmod aliquip nulla Excepteur\",\n      \"number_vendor_id\": -56421471,\n      \"country_calling_code\": \"Duis\",\n      \"national_number\": \"quis\",\n      \"formattedNumber\": \"ex ips\",\n      \"formatted_number\": \"dolore aliquip\",\n      \"short_code\": -46726973,\n      \"is_landline\": 21674046,\n      \"is_toll_free\": true,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"ad officia sit\",\n      \"area_code\": {\n        \"id\": 4031800,\n        \"area_code\": \"ut\",\n        \"state_code\": \"exercitation pariatur eu reprehenderit dolo\",\n        \"state_name\": \"anim dolor\",\n        \"country_code\": \"id occaecat exercitation Ut\",\n        \"time_zone\": \"ut consequat sit\",\n        \"group_id\": -79926811\n      },\n      \"landline\": {\n        \"id\": -34484949,\n        \"number_id\": -65851852,\n        \"address_sid\": \"amet reprehenderit\",\n        \"sid\": \"id eu elit non\",\n        \"document_sid\": \"culpa\",\n        \"status\": \"adipisicing aliquip eiusmod dolor\",\n        \"verification_attempts\": -23812928,\n        \"last_verify_attempt_at\": \"aliqu\",\n        \"landline_name\": \"sed voluptate\",\n        \"street_address\": \"aliqua\",\n        \"city\": \"ad Lorem\",\n        \"state\": \"Ut dolore\",\n        \"zip_code\": \"minim nulla proident ipsum culpa\",\n        \"completed\": 64778162,\n        \"created_at\": \"ad ex irure nulla\",\n        \"updated_at\": \"est in in velit\"\n      },\n      \"number_vendor\": {\n        \"id\": -89610278,\n        \"is_active\": true,\n        \"key\": \"ipsum ut irure culpa pariatur\",\n        \"name\": \"ex \",\n        \"credentials_prefix\": \"Duis ullamco\",\n        \"twilio_sid\": \"est ullamco\",\n        \"twilio_auth_token\": \"dolore esse quis et anim\",\n        \"is_billable\": -87325777,\n        \"created_at\": \"tempor cillum voluptate in\",\n        \"updated_at\": \"irure culpa\"\n      },\n      \"call_forwarding\": {\n        \"id\": 73602365,\n        \"number_id\": 46679111,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"enim veniam deserunt\",\n        \"country\": \"sed ea\",\n        \"number\": \"magna\",\n        \"country_calling_code\": \"voluptate consequat non\",\n        \"national_number\": \"eu ut occaecat\",\n        \"formatted_number\": \"sit aliquip\",\n        \"extension\": \"ad Excepteur aliqua laborum\",\n        \"created_at\": \"officia\",\n        \"updated_at\": \"non ullamco in aliquip\"\n      },\n      \"numberable_id\": 83549194,\n      \"numberable_type\": \"amet reprehenderit consectetur\",\n      \"numberable\": {\n        \"id\": 50065928,\n        \"organization_id\": -47025936,\n        \"owner_id\": 58341916,\n        \"team_id\": -64294576,\n        \"name\": \"dolore non\",\n        \"created_at\": \"aliquip Excepteur amet\",\n        \"updated_at\": \"aute\"\n      }\n    }\n  ]\n}"}],"_postman_id":"dbfdd9c5-2d29-41c7-9df2-1e39508532e8"},{"name":"Search teams","id":"8b47315f-fe8c-4296-ab95-ed374931167e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/search?per_page=50&page=1&term=laborum","description":"<p>Search teams</p>\n","urlObject":{"path":["teams","search"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The maximum number of teams that you want returned from this call.</p>\n","type":"text/plain"},"key":"per_page","value":"50"},{"description":{"content":"<p>Page</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>(Required) The string to search for.</p>\n","type":"text/plain"},"key":"term","value":"laborum"}],"variable":[]}},"response":[{"id":"2e735f7a-5503-4925-b597-5927eabfb2da","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/search?per_page=50&page=1&term=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","search"],"query":[{"key":"per_page","value":"50"},{"key":"page","value":"1"},{"key":"term","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 70445333,\n    \"organization_id\": -61065358,\n    \"owner_id\": 56822820,\n    \"name\": \"aliqua culpa sit\",\n    \"created_at\": \"consequat fugiat\",\n    \"updated_at\": \"sed\",\n    \"number\": {\n      \"id\": 94603648,\n      \"organization_id\": 45257534,\n      \"country\": \"Duis eu ipsum\",\n      \"state\": \"commodo sint ex ea\",\n      \"city\": \"in pariatur labore dolore qui\",\n      \"number\": \"minim laborum voluptate do\",\n      \"number_vendor_id\": 20075900,\n      \"country_calling_code\": \"anim id\",\n      \"national_number\": \"aliqua Duis sed\",\n      \"formattedNumber\": \"irure Excepteur dolor aliquip\",\n      \"formatted_number\": \"Duis nostrud ip\",\n      \"short_code\": 4126389,\n      \"is_landline\": 59010207,\n      \"is_toll_free\": false,\n      \"is_aircall\": false,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"sunt elit anim ex nisi\",\n      \"area_code\": {\n        \"id\": -87702757,\n        \"area_code\": \"dolor aliqua ut\",\n        \"state_code\": \"veniam sed\",\n        \"state_name\": \"aliqua\",\n        \"country_code\": \"tempor irure ipsum\",\n        \"time_zone\": \"in nostrud labore culpa\",\n        \"group_id\": -33497255\n      },\n      \"landline\": {\n        \"id\": 57740361,\n        \"number_id\": 30932882,\n        \"address_sid\": \"commodo do adipisicing aliquip\",\n        \"sid\": \"non esse magna\",\n        \"document_sid\": \"aliqua\",\n        \"status\": \"laboris\",\n        \"verification_attempts\": -32372989,\n        \"last_verify_attempt_at\": \"culpa elit \",\n        \"landline_name\": \"exercitation dolor sit\",\n        \"street_address\": \"ut\",\n        \"city\": \"occaecat eu culpa pariatur in\",\n        \"state\": \"in et minim pariatur ex\",\n        \"zip_code\": \"tempor exercitation\",\n        \"completed\": 7293337,\n        \"created_at\": \"et magna proident\",\n        \"updated_at\": \"aliqua et\"\n      },\n      \"number_vendor\": {\n        \"id\": -10054041,\n        \"is_active\": false,\n        \"key\": \"sunt min\",\n        \"name\": \"sint dolore magna\",\n        \"credentials_prefix\": \"Lorem el\",\n        \"twilio_sid\": \"v\",\n        \"twilio_auth_token\": \"dolor cupidatat\",\n        \"is_billable\": 19370908,\n        \"created_at\": \"sed deserunt non\",\n        \"updated_at\": \"pro\"\n      },\n      \"call_forwarding\": {\n        \"id\": 99771967,\n        \"number_id\": -67574236,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"sint in Duis\",\n        \"country\": \"pariatur enim Ut ut\",\n        \"number\": \"occaecat aute\",\n        \"country_calling_code\": \"nisi pariatur consequat elit in\",\n        \"national_number\": \"cillum nisi aliqua\",\n        \"formatted_number\": \"id minim cillum\",\n        \"extension\": \"tempor do\",\n        \"created_at\": \"occaecat nulla eu\",\n        \"updated_at\": \"Ut irure magna\"\n      },\n      \"numberable_id\": -51334707,\n      \"numberable_type\": \"esse qui\",\n      \"numberable\": {\n        \"id\": 77920357,\n        \"organization_id\": 25157421,\n        \"owner_id\": 3620419,\n        \"team_id\": 67768555,\n        \"name\": \"reprehenderit Duis\",\n        \"created_at\": \"eu occaecat adipisicing ipsum consequ\",\n        \"updated_at\": \"laboru\"\n      }\n    },\n    \"numbers\": [\n      {\n        \"id\": 26518630,\n        \"organization_id\": -70967365,\n        \"country\": \"dolore aute ut commodo\",\n        \"state\": \"labore laborum Ut ex ad\",\n        \"city\": \"occaecat\",\n        \"number\": \"Lorem non\",\n        \"number_vendor_id\": -19061953,\n        \"country_calling_code\": \"adipisicing\",\n        \"national_number\": \"in adipisicing velit id\",\n        \"formattedNumber\": \"eiusmod ea culpa\",\n        \"formatted_number\": \"cillum officia sed irure et\",\n        \"short_code\": -37306413,\n        \"is_landline\": -88963677,\n        \"is_toll_free\": false,\n        \"is_aircall\": true,\n        \"voice\": false,\n        \"use_organization_call_settings\": false,\n        \"voice_outbound\": true,\n        \"mms\": true,\n        \"disabled\": false,\n        \"has_profile\": false,\n        \"verified_status\": \"esse in eiusmod ea\",\n        \"area_code\": {\n          \"id\": 66734248,\n          \"area_code\": \"aute ei\",\n          \"state_code\": \"elit\",\n          \"state_name\": \"voluptate ad elit sunt in\",\n          \"country_code\": \"Excepteur sunt nostrud\",\n          \"time_zone\": \"incididunt dolor minim\",\n          \"group_id\": 26980802\n        },\n        \"landline\": {\n          \"id\": -40540393,\n          \"number_id\": 9696480,\n          \"address_sid\": \"dolore\",\n          \"sid\": \"laborum qui\",\n          \"document_sid\": \"quis aliqua\",\n          \"status\": \"do est enim\",\n          \"verification_attempts\": 58327721,\n          \"last_verify_attempt_at\": \"exercitation culpa mollit\",\n          \"landline_name\": \"occaecat dolore dolor quis\",\n          \"street_address\": \"do Excepteur labore\",\n          \"city\": \"aliquip\",\n          \"state\": \"incididunt ea amet occaecat\",\n          \"zip_code\": \"dolore\",\n          \"completed\": -93555682,\n          \"created_at\": \"sit eiusmod id\",\n          \"updated_at\": \"nulla id est voluptate\"\n        },\n        \"number_vendor\": {\n          \"id\": -46456377,\n          \"is_active\": true,\n          \"key\": \"ea\",\n          \"name\": \"labore\",\n          \"credentials_prefix\": \"in fugiat officia\",\n          \"twilio_sid\": \"cupidatat sit Excepteur\",\n          \"twilio_auth_token\": \"laboris proident \",\n          \"is_billable\": 64454906,\n          \"created_at\": \"deserunt aute proident\",\n          \"updated_at\": \"id magna tempor in culpa\"\n        },\n        \"call_forwarding\": {\n          \"id\": -57031905,\n          \"number_id\": -84053174,\n          \"is_active\": true,\n          \"is_screening\": false,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"pariatur\",\n          \"country\": \"Duis consequat voluptate irure\",\n          \"number\": \"nisi est labore\",\n          \"country_calling_code\": \"nisi adipisicing\",\n          \"national_number\": \"incididunt sunt ut veniam\",\n          \"formatted_number\": \"id dolore culpa incididunt\",\n          \"extension\": \"dolor anim reprehenderit nulla elit\",\n          \"created_at\": \"et nisi est\",\n          \"updated_at\": \"in elit laboris nisi qui\"\n        },\n        \"numberable_id\": 50238681,\n        \"numberable_type\": \"consectetur officia Duis labore\",\n        \"numberable\": {\n          \"id\": 36156731,\n          \"organization_id\": -55238446,\n          \"owner_id\": -84765383,\n          \"team_id\": -84713796,\n          \"name\": \"Ut non dolor dolore dolor\",\n          \"created_at\": \"minim aliquip enim\",\n          \"updated_at\": \"esse officia\"\n        }\n      },\n      {\n        \"id\": -38867022,\n        \"organization_id\": -45598243,\n        \"country\": \"Excepteur officia\",\n        \"state\": \"ut\",\n        \"city\": \"adipisicing dolore deserunt\",\n        \"number\": \"ullamco laborum\",\n        \"number_vendor_id\": -40335474,\n        \"country_calling_code\": \"irure commodo veniam aliquip\",\n        \"national_number\": \"anim mollit qui\",\n        \"formattedNumber\": \"veniam amet officia ut\",\n        \"formatted_number\": \"\",\n        \"short_code\": 67104252,\n        \"is_landline\": -61112140,\n        \"is_toll_free\": false,\n        \"is_aircall\": false,\n        \"voice\": false,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": false,\n        \"mms\": true,\n        \"disabled\": true,\n        \"has_profile\": true,\n        \"verified_status\": \"consequat mollit ut magna nulla\",\n        \"area_code\": {\n          \"id\": -13369172,\n          \"area_code\": \"ea\",\n          \"state_code\": \"ame\",\n          \"state_name\": \"consequat dolor mag\",\n          \"country_code\": \"in incididunt nisi ea ad\",\n          \"time_zone\": \"in dolore labore ad\",\n          \"group_id\": 29650553\n        },\n        \"landline\": {\n          \"id\": -31783983,\n          \"number_id\": -94278404,\n          \"address_sid\": \"nostrud laborum Duis\",\n          \"sid\": \"sed cupidatat qui consequat aliqua\",\n          \"document_sid\": \"aute Lorem anim\",\n          \"status\": \"laborum aliqua est\",\n          \"verification_attempts\": 61980239,\n          \"last_verify_attempt_at\": \"quis veniam\",\n          \"landline_name\": \"cillum sint\",\n          \"street_address\": \"in reprehenderit Excepteur\",\n          \"city\": \"dolore id\",\n          \"state\": \"amet consequat deserunt voluptate\",\n          \"zip_code\": \"dolor sunt\",\n          \"completed\": 95802270,\n          \"created_at\": \"ut v\",\n          \"updated_at\": \"adipisicing magna\"\n        },\n        \"number_vendor\": {\n          \"id\": -62108485,\n          \"is_active\": false,\n          \"key\": \"elit magna\",\n          \"name\": \"magna\",\n          \"credentials_prefix\": \"eu esse exercitation incididunt\",\n          \"twilio_sid\": \"occaecat aute sit laborum\",\n          \"twilio_auth_token\": \"fugiat veniam\",\n          \"is_billable\": -69429648,\n          \"created_at\": \"elit Excepteur\",\n          \"updated_at\": \"enim cupidatat\"\n        },\n        \"call_forwarding\": {\n          \"id\": 87211901,\n          \"number_id\": -61736412,\n          \"is_active\": false,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"eu Ut ut qui\",\n          \"country\": \"occaecat ut\",\n          \"number\": \"tempor amet aliquip\",\n          \"country_calling_code\": \"laboris minim Lorem tempor\",\n          \"national_number\": \"sed cupidatat amet\",\n          \"formatted_number\": \"elit dolor\",\n          \"extension\": \"cillum dolore in\",\n          \"created_at\": \"magna officia cillum\",\n          \"updated_at\": \"esse ut est veniam\"\n        },\n        \"numberable_id\": -27860750,\n        \"numberable_type\": \"velit in ullamco\",\n        \"numberable\": {\n          \"id\": -76947979,\n          \"organization_id\": 91440710,\n          \"owner_id\": 33625770,\n          \"team_id\": -77459360,\n          \"name\": \"dolor qui\",\n          \"created_at\": \"anim\",\n          \"updated_at\": \"eiusmod proident in sit nulla\"\n        }\n      }\n    ]\n  },\n  {\n    \"id\": 48946533,\n    \"organization_id\": 49500809,\n    \"owner_id\": 47936211,\n    \"name\": \"in\",\n    \"created_at\": \"nulla\",\n    \"updated_at\": \"deserunt\",\n    \"number\": {\n      \"id\": -6242736,\n      \"organization_id\": -82123514,\n      \"country\": \"id laboris ut\",\n      \"state\": \"esse ad\",\n      \"city\": \"officia dolor occaecat ea dolor\",\n      \"number\": \"ut pariatur deserunt eu\",\n      \"number_vendor_id\": 40316551,\n      \"country_calling_code\": \"cillum sit occaecat ad nostrud\",\n      \"national_number\": \"fugiat sit consectetur\",\n      \"formattedNumber\": \"magna ipsum tempor qui sit\",\n      \"formatted_number\": \"voluptate non eu adipisicing\",\n      \"short_code\": -64774041,\n      \"is_landline\": 45903514,\n      \"is_toll_free\": false,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": true,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": true,\n      \"verified_status\": \"commodo\",\n      \"area_code\": {\n        \"id\": -64203933,\n        \"area_code\": \"anim\",\n        \"state_code\": \"commodo\",\n        \"state_name\": \"dolore qui dolor sed\",\n        \"country_code\": \"Excepteur elit\",\n        \"time_zone\": \"elit sit consequat do\",\n        \"group_id\": -8798928\n      },\n      \"landline\": {\n        \"id\": 51159249,\n        \"number_id\": -49795931,\n        \"address_sid\": \"Lorem laborum eiusmod ea\",\n        \"sid\": \"sit dolore do magna\",\n        \"document_sid\": \"sint dolor ut venia\",\n        \"status\": \"Excepteur si\",\n        \"verification_attempts\": -82797753,\n        \"last_verify_attempt_at\": \"ut mollit amet deserunt sit\",\n        \"landline_name\": \"deserunt magna eiusmod dolor\",\n        \"street_address\": \"amet\",\n        \"city\": \"ad\",\n        \"state\": \"culpa velit cillum\",\n        \"zip_code\": \"sunt commodo\",\n        \"completed\": -27924380,\n        \"created_at\": \"tempor laboris quis in\",\n        \"updated_at\": \"magna reprehenderit\"\n      },\n      \"number_vendor\": {\n        \"id\": -99069333,\n        \"is_active\": false,\n        \"key\": \"enim culpa\",\n        \"name\": \"nostrud et adipisicing enim\",\n        \"credentials_prefix\": \"Excepteur dolor consequat\",\n        \"twilio_sid\": \"sed minim deserunt\",\n        \"twilio_auth_token\": \"non eu\",\n        \"is_billable\": 96750921,\n        \"created_at\": \"quis velit esse ut\",\n        \"updated_at\": \"nulla Lorem\"\n      },\n      \"call_forwarding\": {\n        \"id\": 5451236,\n        \"number_id\": -79519843,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"sint aliquip\",\n        \"country\": \"culpa aute aliqua\",\n        \"number\": \"laboris sed cupidatat voluptate\",\n        \"country_calling_code\": \"occaecat minim dolor Duis\",\n        \"national_number\": \"nisi dolore\",\n        \"formatted_number\": \"voluptate sint eiusmod cillum\",\n        \"extension\": \"occaecat mollit pariatur\",\n        \"created_at\": \"commodo occaecat minim\",\n        \"updated_at\": \"ad\"\n      },\n      \"numberable_id\": 21390827,\n      \"numberable_type\": \"non consectetur anim\",\n      \"numberable\": {\n        \"id\": 84785447,\n        \"organization_id\": -91741210,\n        \"owner_id\": 45646078,\n        \"team_id\": -46928633,\n        \"name\": \"elit temp\",\n        \"created_at\": \"qui veniam\",\n        \"updated_at\": \"proident laborum pariatur\"\n      }\n    },\n    \"numbers\": [\n      {\n        \"id\": 25517677,\n        \"organization_id\": -22719568,\n        \"country\": \"eiusmod\",\n        \"state\": \"Excepteur Lorem Ut in\",\n        \"city\": \"exercitation ut elit cupidatat occaecat\",\n        \"number\": \"velit proident nostrud\",\n        \"number_vendor_id\": 31929836,\n        \"country_calling_code\": \"Excepteur occaecat\",\n        \"national_number\": \"nisi elit\",\n        \"formattedNumber\": \"dolore commodo sed\",\n        \"formatted_number\": \"commodo sed nulla aliqua labore\",\n        \"short_code\": 49429337,\n        \"is_landline\": -72192918,\n        \"is_toll_free\": false,\n        \"is_aircall\": true,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": false,\n        \"mms\": false,\n        \"disabled\": false,\n        \"has_profile\": false,\n        \"verified_status\": \"incididunt i\",\n        \"area_code\": {\n          \"id\": -70773650,\n          \"area_code\": \"pariatur elit \",\n          \"state_code\": \"in incididunt ullamco pariatur Ut\",\n          \"state_name\": \"pariatur mollit\",\n          \"country_code\": \"ut do magna fugiat amet\",\n          \"time_zone\": \"pariatur enim in\",\n          \"group_id\": 59547873\n        },\n        \"landline\": {\n          \"id\": 89998,\n          \"number_id\": -21547706,\n          \"address_sid\": \"sed eiusmod\",\n          \"sid\": \"quis do sed elit\",\n          \"document_sid\": \"adipisicing id consectetur\",\n          \"status\": \"laborum in\",\n          \"verification_attempts\": 78759368,\n          \"last_verify_attempt_at\": \"ullamco nostrud\",\n          \"landline_name\": \"velit enim\",\n          \"street_address\": \"reprehenderit proident ut occaecat\",\n          \"city\": \"veniam Duis minim\",\n          \"state\": \"in\",\n          \"zip_code\": \"laborum nostrud aliqua mollit\",\n          \"completed\": 56342028,\n          \"created_at\": \"ullamco exercitation est irure\",\n          \"updated_at\": \"velit ipsum in dolo\"\n        },\n        \"number_vendor\": {\n          \"id\": 58620233,\n          \"is_active\": true,\n          \"key\": \"nostrud sed c\",\n          \"name\": \"in eu\",\n          \"credentials_prefix\": \"ipsum occaecat\",\n          \"twilio_sid\": \"reprehenderit qui aliqua amet\",\n          \"twilio_auth_token\": \"est\",\n          \"is_billable\": 82634922,\n          \"created_at\": \"ad minim\",\n          \"updated_at\": \"culp\"\n        },\n        \"call_forwarding\": {\n          \"id\": -97354817,\n          \"number_id\": 31391178,\n          \"is_active\": false,\n          \"is_screening\": false,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"deserunt incididunt officia reprehenderit sed\",\n          \"country\": \"pariatur proident ad dolore\",\n          \"number\": \"id\",\n          \"country_calling_code\": \"dolor laboris anim\",\n          \"national_number\": \"eiusmod dolor consequat\",\n          \"formatted_number\": \"sint est commodo\",\n          \"extension\": \"cupidata\",\n          \"created_at\": \"pariatur\",\n          \"updated_at\": \"esse\"\n        },\n        \"numberable_id\": -33439864,\n        \"numberable_type\": \"id\",\n        \"numberable\": {\n          \"id\": -57885504,\n          \"organization_id\": -65647131,\n          \"owner_id\": -60358113,\n          \"team_id\": -15237195,\n          \"name\": \"dolore\",\n          \"created_at\": \"ad\",\n          \"updated_at\": \"non Duis nulla\"\n        }\n      },\n      {\n        \"id\": 66923492,\n        \"organization_id\": 48989171,\n        \"country\": \"cupidatat ullamco consequat\",\n        \"state\": \"est ea labore aute Excepteur\",\n        \"city\": \"in dolor sunt\",\n        \"number\": \"do incididunt elit ipsum\",\n        \"number_vendor_id\": -83670952,\n        \"country_calling_code\": \"ipsum\",\n        \"national_number\": \"qui eiusmod sunt est occaecat\",\n        \"formattedNumber\": \"in incididunt Lorem quis\",\n        \"formatted_number\": \"reprehenderit dolor\",\n        \"short_code\": 68595246,\n        \"is_landline\": -19539860,\n        \"is_toll_free\": false,\n        \"is_aircall\": true,\n        \"voice\": true,\n        \"use_organization_call_settings\": false,\n        \"voice_outbound\": false,\n        \"mms\": true,\n        \"disabled\": true,\n        \"has_profile\": true,\n        \"verified_status\": \"dolore nulla\",\n        \"area_code\": {\n          \"id\": 80151661,\n          \"area_code\": \"aute\",\n          \"state_code\": \"sunt sed\",\n          \"state_name\": \"aliquip aliqua sint\",\n          \"country_code\": \"dolor consectetur\",\n          \"time_zone\": \"dolore eiusmod\",\n          \"group_id\": 89274985\n        },\n        \"landline\": {\n          \"id\": 39547412,\n          \"number_id\": 27424714,\n          \"address_sid\": \"Excepteur\",\n          \"sid\": \"Duis\",\n          \"document_sid\": \"consectetur\",\n          \"status\": \"officia labore quis\",\n          \"verification_attempts\": -77768848,\n          \"last_verify_attempt_at\": \"commodo eiusmod amet\",\n          \"landline_name\": \"qui voluptate irure\",\n          \"street_address\": \"nisi Lorem laboris elit nostrud\",\n          \"city\": \"laboris\",\n          \"state\": \"dolore et consectetur ullamco\",\n          \"zip_code\": \"ut aliquip eu\",\n          \"completed\": -23474072,\n          \"created_at\": \"reprehenderit dolor\",\n          \"updated_at\": \"occaecat eu\"\n        },\n        \"number_vendor\": {\n          \"id\": 3167245,\n          \"is_active\": false,\n          \"key\": \"la\",\n          \"name\": \"aute officia ullamco adipisicing\",\n          \"credentials_prefix\": \"in Lorem cillum\",\n          \"twilio_sid\": \"ut reprehenderit exercitation Duis\",\n          \"twilio_auth_token\": \"est veniam cillum exercitat\",\n          \"is_billable\": -3314129,\n          \"created_at\": \"fugiat dolore Lorem officia\",\n          \"updated_at\": \"culpa q\"\n        },\n        \"call_forwarding\": {\n          \"id\": 29045927,\n          \"number_id\": -54817522,\n          \"is_active\": true,\n          \"is_screening\": false,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"id nulla\",\n          \"country\": \"incididunt dolore exercitation\",\n          \"number\": \"dolor irure tempor mollit\",\n          \"country_calling_code\": \"qui ut magna pariatur proident\",\n          \"national_number\": \"ut\",\n          \"formatted_number\": \"minim voluptate laboris dolor\",\n          \"extension\": \"do in veniam velit\",\n          \"created_at\": \"pariatur in ullamco\",\n          \"updated_at\": \"pariatur enim Excepteur\"\n        },\n        \"numberable_id\": 54976418,\n        \"numberable_type\": \"in occaecat culp\",\n        \"numberable\": {\n          \"id\": 33905793,\n          \"organization_id\": 14009549,\n          \"owner_id\": 54924229,\n          \"team_id\": -81833152,\n          \"name\": \"velit non\",\n          \"created_at\": \"consequat mi\",\n          \"updated_at\": \"sit mollit\"\n        }\n      }\n    ]\n  }\n]"}],"_postman_id":"8b47315f-fe8c-4296-ab95-ed374931167e"},{"name":"Create team group","id":"8f4bf87e-2d22-495e-8d2e-6f18221e7b9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/groups/create?name=laborum&description=laborum&team_ids[]=26601370.028385937&team_ids[]=-75562993.1831482","description":"<p>Create team group</p>\n","urlObject":{"path":["teams","groups","create"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Name</p>\n","type":"text/plain"},"key":"name","value":"laborum"},{"description":{"content":"<p>(Required) Description</p>\n","type":"text/plain"},"key":"description","value":"laborum"},{"description":{"content":"<p>(Required) Team IDs</p>\n","type":"text/plain"},"key":"team_ids[]","value":"26601370.028385937"},{"description":{"content":"<p>(Required) Team IDs</p>\n","type":"text/plain"},"key":"team_ids[]","value":"-75562993.1831482"}],"variable":[]}},"response":[{"id":"d72c9838-fa88-4a30-8ccd-6d8bcecb966e","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/groups/create?name=laborum&description=laborum&team_ids[]=42476275.02805784&team_ids[]=36935972.86530301","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","groups","create"],"query":[{"key":"name","value":"laborum"},{"key":"description","value":"laborum"},{"key":"team_ids[]","value":"42476275.02805784"},{"key":"team_ids[]","value":"36935972.86530301"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 85058143,\n  \"organization_id\": 1148297,\n  \"name\": \"in u\",\n  \"description\": \"pariatur laborum est\",\n  \"created_at\": \"irure \",\n  \"updated_at\": \"occaecat\"\n}"},{"id":"8a0f6b1d-ab14-473f-b3d2-b545bbbe2600","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/groups/create?name=laborum&description=laborum&team_ids[]=42476275.02805784&team_ids[]=36935972.86530301","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","groups","create"],"query":[{"key":"name","value":"laborum"},{"key":"description","value":"laborum"},{"key":"team_ids[]","value":"42476275.02805784"},{"key":"team_ids[]","value":"36935972.86530301"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8f4bf87e-2d22-495e-8d2e-6f18221e7b9b"},{"name":"Update team group","id":"4ca84d27-3768-4f7f-a8a0-d0b73345c421","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/groups/:teamsGroup?name=laborum&description=laborum&teamIds[]=26601370.028385937&teamIds[]=-75562993.1831482","description":"<p>Update team group</p>\n","urlObject":{"path":["teams","groups",":teamsGroup"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Name</p>\n","type":"text/plain"},"key":"name","value":"laborum"},{"description":{"content":"<p>(Required) Description</p>\n","type":"text/plain"},"key":"description","value":"laborum"},{"description":{"content":"<p>(Required) Team IDs</p>\n","type":"text/plain"},"key":"teamIds[]","value":"26601370.028385937"},{"description":{"content":"<p>(Required) Team IDs</p>\n","type":"text/plain"},"key":"teamIds[]","value":"-75562993.1831482"}],"variable":[{"id":"c324bfda-b5a1-4c4f-80e1-e0172339abc3","description":{"content":"<p>(Required) Teams Group ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"teamsGroup"}]}},"response":[{"id":"67bde114-6fc8-4ff2-9799-b27e372397dc","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/groups/:teamsGroup?name=laborum&description=laborum&teamIds[]=42476275.02805784&teamIds[]=36935972.86530301","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","groups",":teamsGroup"],"query":[{"key":"name","value":"laborum"},{"key":"description","value":"laborum"},{"key":"teamIds[]","value":"42476275.02805784"},{"key":"teamIds[]","value":"36935972.86530301"}],"variable":[{"key":"teamsGroup","value":"38894851.6112895","description":"(Required) Teams Group ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 85058143,\n  \"organization_id\": 1148297,\n  \"name\": \"in u\",\n  \"description\": \"pariatur laborum est\",\n  \"created_at\": \"irure \",\n  \"updated_at\": \"occaecat\"\n}"},{"id":"21c012fb-6cb8-47b9-8baa-15baff52df61","name":"Not Found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/groups/:teamsGroup?name=laborum&description=laborum&teamIds[]=42476275.02805784&teamIds[]=36935972.86530301","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","groups",":teamsGroup"],"query":[{"key":"name","value":"laborum"},{"key":"description","value":"laborum"},{"key":"teamIds[]","value":"42476275.02805784"},{"key":"teamIds[]","value":"36935972.86530301"}],"variable":[{"key":"teamsGroup","value":"38894851.6112895","description":"(Required) Teams Group ID"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4ca84d27-3768-4f7f-a8a0-d0b73345c421"},{"name":"Delete team group","id":"7ef09790-824b-4305-89fc-fdc93cb07175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/groups/:teamsGroup","description":"<p>Delete team group</p>\n","urlObject":{"path":["teams","groups",":teamsGroup"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"83738b3b-0e8f-4699-a1c8-a839cbbd4b1d","description":{"content":"<p>(Required) Teams Group ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"teamsGroup"}]}},"response":[{"id":"bb8a0ad7-7a01-47ce-b578-57b102700701","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/groups/:teamsGroup","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","groups",":teamsGroup"],"variable":[{"key":"teamsGroup","value":"38894851.6112895","description":"(Required) Teams Group ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"aute sit\"\n}"}],"_postman_id":"7ef09790-824b-4305-89fc-fdc93cb07175"},{"name":"Get team groups","id":"4a8fe5ac-c975-4593-9710-52cb233002f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/groups/list","description":"<p>Get team groups</p>\n","urlObject":{"path":["teams","groups","list"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"6e295b5a-18d9-4240-9836-12c199bf388d","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/groups/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": -71434429,\n      \"organization_id\": 20945149,\n      \"name\": \"adipisicing in voluptate proident\",\n      \"description\": \"adipisicing dolore nulla\",\n      \"created_at\": \"m\",\n      \"updated_at\": \"officia pariatur adipisicing\"\n    },\n    {\n      \"id\": 53846104,\n      \"organization_id\": 12043558,\n      \"name\": \"dolor commodo reprehenderit\",\n      \"description\": \"laboris aute\",\n      \"created_at\": \"Ut aliquip ipsum non\",\n      \"updated_at\": \"incididunt dolor dolor\"\n    }\n  ]\n}"}],"_postman_id":"4a8fe5ac-c975-4593-9710-52cb233002f7"},{"name":"Add teams to team group","id":"f06e4aa5-0d75-4ca6-b75e-feb5cae31106","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/groups/:teamsGroup/add-teams?teamIds=26601370.028385937&teamIds=-75562993.1831482","description":"<p>Add teams to team group</p>\n","urlObject":{"path":["teams","groups",":teamsGroup","add-teams"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Team IDs</p>\n","type":"text/plain"},"key":"teamIds","value":"26601370.028385937"},{"description":{"content":"<p>(Required) Team IDs</p>\n","type":"text/plain"},"key":"teamIds","value":"-75562993.1831482"}],"variable":[{"id":"bca441a8-1756-4a74-9e44-309de9b00970","description":{"content":"<p>(Required) Teams Group ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"teamsGroup"}]}},"response":[{"id":"98e42f56-8fd6-45b1-86a4-2ae75b487be6","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/groups/:teamsGroup/add-teams?teamIds=42476275.02805784&teamIds=36935972.86530301","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","groups",":teamsGroup","add-teams"],"query":[{"key":"teamIds","value":"42476275.02805784"},{"key":"teamIds","value":"36935972.86530301"}],"variable":[{"key":"teamsGroup","value":"38894851.6112895","description":"(Required) Teams Group ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"aute sit\"\n}"}],"_postman_id":"f06e4aa5-0d75-4ca6-b75e-feb5cae31106"},{"name":"Remove team from team group","id":"56b8b370-6a21-48a0-b874-e4a0c809199a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//teams/groups/:teamsGroup/remove-team/:team","description":"<p>Remove team from team group</p>\n","urlObject":{"path":["teams","groups",":teamsGroup","remove-team",":team"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"895dae86-1786-4814-863f-ca91c0bd6317","description":{"content":"<p>(Required) Teams Group ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"teamsGroup"},{"id":"62eaefbc-51f4-4ff6-8455-0d1b7a7aa3ea","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"e6c38f45-57c6-4475-9f88-aca93bd71112","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/groups/:teamsGroup/remove-team/:team","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams","groups",":teamsGroup","remove-team",":team"],"variable":[{"key":"teamsGroup","value":"38894851.6112895","description":"(Required) Teams Group ID"},{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"aute sit\"\n}"}],"_postman_id":"56b8b370-6a21-48a0-b874-e4a0c809199a"},{"name":"Toggle call-settings","id":"9cdee8f4-808a-444b-870b-af40750bfdf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"voice\": true,\n  \"voice_outbound\": true,\n  \"use_organization_call_settings\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//teams/:team/call-settings","description":"<p>Toggle call-settings</p>\n","urlObject":{"path":["teams",":team","call-settings"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"a4ef7984-bfc7-4f5c-9fbc-a4bb11ab7174","description":{"content":"<p>(Required) Team ID</p>\n","type":"text/plain"},"type":"any","value":"38894851.6112895","key":"team"}]}},"response":[{"id":"ed989cee-29f6-4454-acd1-24e83ce1338b","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"voice\": true,\n  \"voice_outbound\": true,\n  \"use_organization_call_settings\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/call-settings","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","call-settings"],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -96488284,\n  \"conversation_id\": -58481741,\n  \"automated\": true,\n  \"status\": \"enim nisi eu\",\n  \"type\": \"ut\",\n  \"mms_status\": \"aute ullamco culpa pariatur\",\n  \"body\": \"elit deserunt\",\n  \"body_raw\": \"officia\",\n  \"has_tagging\": false,\n  \"icon\": \"consequat in\",\n  \"received_at\": \"non\",\n  \"send_at\": \"esse adipisicing ipsum in laborum\",\n  \"queued_at\": \"minim incididunt\",\n  \"sent_at\": \"esse Lorem laboris\",\n  \"delivered_at\": \"officia aute pariatur\",\n  \"failed_at\": \"irure non laboris incididunt\",\n  \"failed_reason\": \"consequat consectetur fugiat culpa\",\n  \"created_at\": \"aliqua pariatur in\",\n  \"stop_on_response\": false,\n  \"record\": {\n    \"id\": -59453435,\n    \"message_id\": -96832515,\n    \"sid\": \"ea enim\",\n    \"record_id\": \"anim ipsum do\",\n    \"duration\": 37974802,\n    \"status\": \"proident do nulla d\",\n    \"url\": \"amet fugiat ut reprehenderit\",\n    \"is_voicemail\": false,\n    \"created_at\": \"enim eiusmod\",\n    \"updated_at\": \"velit aliqua reprehenderit\"\n  },\n  \"user_id\": -12119061,\n  \"source_id\": -28984223,\n  \"source\": \"ut\",\n  \"contact\": {\n    \"id\": 91088116,\n    \"owner_id\": -60704738,\n    \"color\": \"commodo cillum\",\n    \"first_name\": \"Lorem aute fugiat\",\n    \"last_name\": \"velit sint anim\",\n    \"full_name\": \"Duis ut id\",\n    \"email\": \"ex\",\n    \"photo_url\": \"culpa\",\n    \"number\": \"ut consectetur ullamco dolor\",\n    \"country\": \"do\",\n    \"country_calling_code\": \"consequat non deserunt culpa\",\n    \"national_number\": \"aute eiusmod\",\n    \"typeted_number\": \"pariatur\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"aute consectetur proident\",\n    \"opt_in_request_at\": \"occaecat mollit\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -30955482\n      },\n      {\n        \"number_id\": 22700103\n      }\n    ],\n    \"opt_in_at\": \"sint exercitation veniam sed nisi\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -8612238,\n        \"number_id\": 96272669,\n        \"name\": \"laboris sit fugiat pari\",\n        \"disabled\": true,\n        \"timestamp\": \"ut quis do Lorem\",\n        \"value\": true\n      },\n      {\n        \"id\": -85212453,\n        \"number_id\": 12989392,\n        \"name\": \"in et ut\",\n        \"disabled\": true,\n        \"timestamp\": \"id incididunt eiusmod cillum\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"minim labore dolore aliqua\",\n    \"updated_at\": \"laboris sint\",\n    \"integration_vendor_id\": 52476108,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": 99060454,\n        \"key\": \"in anim elit\",\n        \"name\": \"exercitation\",\n        \"photo_url\": \"dolore irure\"\n      },\n      {\n        \"id\": 76204003,\n        \"key\": \"ex reprehenderit amet\",\n        \"name\": \"deserunt\",\n        \"photo_url\": \"velit minim\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 60715432,\n        \"custom_field_id\": 48276386,\n        \"contact_id\": 39196079,\n        \"field_key\": \"adipisicing proident\",\n        \"organization_id\": -75259989,\n        \"text\": \"dolore esse laborum incididunt\",\n        \"number\": -46579899,\n        \"date\": \"Excepteur non ipsum amet\",\n        \"created_at\": \"deserun\",\n        \"updated_at\": \"sint non officia sit\",\n        \"value\": [\n          {\n            \"type\": \"Ut ex amet\",\n            \"value\": \"deserunt non\"\n          },\n          {\n            \"type\": \"laborum enim Ut\",\n            \"value\": \"Lorem commodo labore\"\n          }\n        ]\n      },\n      {\n        \"id\": -70709235,\n        \"custom_field_id\": 26590191,\n        \"contact_id\": -46631813,\n        \"field_key\": \"enim Ut nisi\",\n        \"organization_id\": -23011331,\n        \"text\": \"dolor consequat sint Ut\",\n        \"number\": -90250801,\n        \"date\": \"magna proident\",\n        \"created_at\": \"n\",\n        \"updated_at\": \"Lorem Duis\",\n        \"value\": [\n          {\n            \"type\": \"id Ut ex aliquip\",\n            \"value\": \"pariatur fugiat laboris\"\n          },\n          {\n            \"type\": \"do\",\n            \"value\": \"Ut ullamco ea\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 20232062,\n        \"name\": \"ad sunt\",\n        \"label\": \"nulla sed ut\",\n        \"created_at\": \"tempor Lorem culpa ut ullamco\"\n      },\n      {\n        \"id\": -38046060,\n        \"name\": \"dolore quis\",\n        \"label\": \"qui aliqua magna voluptate\",\n        \"created_at\": \"ipsum sint ex occaecat eu\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -214948,\n        \"text\": \"reprehenderit mollit\",\n        \"created_at\": \"aute nisi si\",\n        \"updated_at\": \"esse est Lorem\"\n      },\n      {\n        \"id\": -31159362,\n        \"text\": \"consequat magna aute qui\",\n        \"created_at\": \"eu est \",\n        \"updated_at\": \"tempor\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 38838309,\n    \"email\": \"eiusmod nisi\",\n    \"first_name\": \"nostrud incididunt qu\",\n    \"last_name\": \"elit ipsum\",\n    \"full_name\": \"dolore consectetur dolor Excepteur\",\n    \"role\": \"in enim in\",\n    \"inbox_id\": 51715230,\n    \"organization_id\": 71561898,\n    \"photo_url\": \"velit deserunt sunt dolore\",\n    \"unread\": -50128554,\n    \"number\": \"in Duis ullamco dolore sint\",\n    \"formatted_number\": \"esse et\",\n    \"organizationNumber\": [\n      {\n        \"id\": -86044635,\n        \"country\": \"proident reprehenderit\",\n        \"number\": \"do nisi id\",\n        \"formatted_number\": \"ipsum ut id in\",\n        \"mms\": \"laboris proident\"\n      },\n      {\n        \"id\": 9395009,\n        \"country\": \"est ea\",\n        \"number\": \"anim\",\n        \"formatted_number\": \"incididunt Ut nostrud\",\n        \"mms\": \"tempor labore adipisicing est\"\n      }\n    ],\n    \"userPermissions\": [\n      \"anim ut elit\",\n      \"deserunt\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": -3076559,\n      \"email\": \"dolor fugiat\",\n      \"first_name\": \"occaecat fug\",\n      \"last_name\": \"in anim\",\n      \"full_name\": \"eiusmod culpa\",\n      \"role\": \"officia Lo\",\n      \"inbox_id\": 95816824,\n      \"organization_id\": -99869044,\n      \"photo_url\": \"ea\",\n      \"unread\": -10324878,\n      \"number\": \"sunt\",\n      \"formatted_number\": \"aliqua\",\n      \"organizationNumber\": [\n        {\n          \"id\": 60919685,\n          \"country\": \"ad ut dolor ut ipsum\",\n          \"number\": \"sint eu ea\",\n          \"formatted_number\": \"voluptate dolor\",\n          \"mms\": \"Duis sit consequat enim \"\n        },\n        {\n          \"id\": -87539046,\n          \"country\": \"irure\",\n          \"number\": \"cupidatat nisi pariatur\",\n          \"formatted_number\": \"aliqua fugiat et\",\n          \"mms\": \"aliquip aliqua voluptate anim\"\n        }\n      ],\n      \"userPermissions\": [\n        \"eu ipsum\",\n        \"aute cupidat\"\n      ]\n    },\n    {\n      \"id\": -25127541,\n      \"email\": \"aliquip incididunt qui deserunt cupidatat\",\n      \"first_name\": \"cupidatat\",\n      \"last_name\": \"dolore\",\n      \"full_name\": \"eu\",\n      \"role\": \"sit\",\n      \"inbox_id\": -2680336,\n      \"organization_id\": 23007616,\n      \"photo_url\": \"in\",\n      \"unread\": -41016453,\n      \"number\": \"ex exercitation commodo nulla\",\n      \"formatted_number\": \"anim ullamco enim ex\",\n      \"organizationNumber\": [\n        {\n          \"id\": -59261576,\n          \"country\": \"sed minim mollit\",\n          \"number\": \"Lorem cillum enim\",\n          \"formatted_number\": \"laboris esse ut nisi\",\n          \"mms\": \"deserunt exercitation non velit\"\n        },\n        {\n          \"id\": -41018011,\n          \"country\": \"Duis incididunt\",\n          \"number\": \"est ut tempor Ut\",\n          \"formatted_number\": \"officia commodo consectetur\",\n          \"mms\": \"ut ut culpa\"\n        }\n      ],\n      \"userPermissions\": [\n        \"minim\",\n        \"Lorem non dolore\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": -20432784,\n      \"content_type\": \"sed dolore laborum\",\n      \"source\": \"in fugiat veniam aliquip\",\n      \"source_short\": \"nisi quis laboris\",\n      \"created_at\": \"sunt in mollit\"\n    },\n    {\n      \"id\": 56623880,\n      \"content_type\": \"in culpa\",\n      \"source\": \"et eiusmod\",\n      \"source_short\": \"ullamco dolo\",\n      \"created_at\": \"commodo sint\"\n    }\n  ]\n}"},{"id":"35074ca2-0305-4f83-8690-5be3a2afa067","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"voice\": true,\n  \"voice_outbound\": true,\n  \"use_organization_call_settings\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//teams/:team/call-settings","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["teams",":team","call-settings"],"variable":[{"key":"team","value":"38894851.6112895","description":"(Required) Team ID"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"use_organization_call_settings\": \"The use organization call settings field is required.\"\n}"}],"_postman_id":"9cdee8f4-808a-444b-870b-af40750bfdf2"}],"id":"dfe2afc0-55ae-4517-9bd5-f6425e11b340","description":"<p>Teams are message inboxes which can be viewed by multiple authorized users, also called team members. Team members are users who have access to a particular inbox. <br /><br />Team members can invite a user by their id to join a team, change team member roles, delete a member, become assigned for a conversations within a particular team. <br /><br />The Teams APIs enable your application to manage and interact with message inboxes.</p>\n","_postman_id":"dfe2afc0-55ae-4517-9bd5-f6425e11b340"},{"name":"Users","item":[{"name":"Add push token for user device","id":"4e46cb30-a440-4f51-bb0b-23f5a2321005","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/devices?type=apple&token=token","description":"<p>This API endpoint request adds a token that is responsible for receiving push notifications when logged in so that the user’s device is capable of receiving pushes. <br /><br />The POST request is sent as the user logs into the mobile application. <br /><br />As a result, the user can receive notifications each time a message arrives to them.</p>\n","urlObject":{"path":["users","devices"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Device type</p>\n","type":"text/plain"},"key":"type","value":"apple"},{"description":{"content":"<p>(Required) Push token</p>\n","type":"text/plain"},"key":"token","value":"token"}],"variable":[]}},"response":[{"id":"abba2322-478f-426b-a2d6-f53b6b61a381","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//users/devices?type=apple&token=token","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["users","devices"],"query":[{"key":"type","value":"apple"},{"key":"token","value":"token"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -60169074,\n  \"type\": {\n    \"id\": -11993488,\n    \"name\": \"adipisicing\",\n    \"slug\": 36291855\n  },\n  \"push_token\": \"ut reprehenderit\"\n}"}],"_postman_id":"4e46cb30-a440-4f51-bb0b-23f5a2321005"},{"name":"Delete push token for user device","id":"b3ea607a-de28-4049-b1d4-e1c00b336179","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/devices?push_token=token","description":"<p>This API endpoint request removes the token that is responsible for receiving push notifications when logged out from the application. The user’s device becomes incapable of receiving pushes. <br /><br />The <code>DELETE</code> request is sent as the user logs out the mobile application. <br /><br />As a result, the user can no more receive notifications each time a message arrives to them.</p>\n","urlObject":{"path":["users","devices"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Push token</p>\n","type":"text/plain"},"key":"push_token","value":"token"}],"variable":[]}},"response":[{"id":"d6068e76-e686-4e96-bc5c-96146fd18bf1","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//users/devices?push_token=token","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["users","devices"],"query":[{"key":"push_token","value":"token"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"in velit est dolor\",\n  \"message\": \"consectetur quis ut sint\"\n}"},{"id":"1aa6ab32-9402-4d29-9096-b66ee371bf75","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//users/devices?push_token=token","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["users","devices"],"query":[{"key":"push_token","value":"token"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"in velit est dolor\",\n  \"message\": \"consectetur quis ut sint\"\n}"}],"_postman_id":"b3ea607a-de28-4049-b1d4-e1c00b336179"},{"name":"Update user email and password","id":"e74eeee4-d1d8-4a34-9d67-f4588c329524","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/email?current_password=laborum&email=laborum","description":"<p>This API endpoint is used to update the email address of the user. <br /><br />The required parameter to update user’s email is the relevant user’s password which is used to confirm the email update operation. <br /><br />As a result of this API request, you are able to change the email record in the database.</p>\n","urlObject":{"path":["users","email"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Password</p>\n","type":"text/plain"},"key":"current_password","value":"laborum"},{"description":{"content":"<p>(Required) Email</p>\n","type":"text/plain"},"key":"email","value":"laborum"}],"variable":[]}},"response":[{"id":"0407cef7-09c2-47c6-ac54-7e8367cb6c52","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//users/email?current_password=laborum&email=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["users","email"],"query":[{"key":"current_password","value":"laborum"},{"key":"email","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -20699676,\n  \"email\": \"Excepteur consectetur\",\n  \"first_name\": \"nisi minim\",\n  \"last_name\": \"qui in\",\n  \"full_name\": \"nisi Excepteur quis eu\",\n  \"role\": \"velit\",\n  \"inbox_id\": -67516809,\n  \"organization_id\": 13996730,\n  \"photo_url\": \"minim proident ut in u\",\n  \"unread\": 65554571,\n  \"number\": \"reprehenderit ullamco sit quis exercitation\",\n  \"formatted_number\": \"incididunt sed\",\n  \"organizationNumber\": [\n    {\n      \"id\": 27003627,\n      \"country\": \"officia ex\",\n      \"number\": \"esse\",\n      \"formatted_number\": \"culpa in ad dolor\",\n      \"mms\": \"officia ea \"\n    },\n    {\n      \"id\": -69270230,\n      \"country\": \"dolor nostrud est oc\",\n      \"number\": \"aliquip elit ad\",\n      \"formatted_number\": \"proident velit\",\n      \"mms\": \"amet et proident\"\n    }\n  ],\n  \"userPermissions\": [\n    \"aliqua amet voluptate\",\n    \"tempor quis\"\n  ]\n}"}],"_postman_id":"e74eeee4-d1d8-4a34-9d67-f4588c329524"},{"name":"Get current user","id":"cb2e923f-7489-4572-8821-96b19d531939","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/me","description":"<p>Returnes information about the user who is currently authenticated in the system and wants to view the data about their account. <br /><br />In the case of a client-side authenticated OAuth application, this will be the user who authorized the application. <br /><br />After sending the request, the current user can view thier: </p><ul><li>First name</li> <li>Last name</li> <li>Email</li> <li>Business hour</li> <li>Configs</li> <li>Number, etc.</li></ul><p></p>\n","urlObject":{"path":["users","me"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"97e943e4-86e0-4e5f-94aa-5d8d9bea8680","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//users/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"unread\": null\n}"}],"_postman_id":"cb2e923f-7489-4572-8821-96b19d531939"},{"name":"Change user password","id":"5fa4b429-d08a-435d-8428-76d4c86cd5de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/password?password=laborum&password_confirmation=laborum&current_password=laborum","description":"<p>This endpoint allows an authenticated current user to change their password. <br /><br />To allow a user to successfully change their password via this API call, it is required from the user to input: </p><ul><li>Current password</li> <li>New password</li> <li>Confirm the new password</li></ul><p></p>\n","urlObject":{"path":["users","password"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) New password</p>\n","type":"text/plain"},"key":"password","value":"laborum"},{"description":{"content":"<p>(Required) Confirm new password</p>\n","type":"text/plain"},"key":"password_confirmation","value":"laborum"},{"description":{"content":"<p>(Required) Current password</p>\n","type":"text/plain"},"key":"current_password","value":"laborum"}],"variable":[]}},"response":[{"id":"8b2cdcea-bd5a-41c7-b0a0-d86754e5e0b6","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//users/password?password=laborum&password_confirmation=laborum&current_password=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["users","password"],"query":[{"key":"password","value":"laborum"},{"key":"password_confirmation","value":"laborum"},{"key":"current_password","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -20699676,\n  \"email\": \"Excepteur consectetur\",\n  \"first_name\": \"nisi minim\",\n  \"last_name\": \"qui in\",\n  \"full_name\": \"nisi Excepteur quis eu\",\n  \"role\": \"velit\",\n  \"inbox_id\": -67516809,\n  \"organization_id\": 13996730,\n  \"photo_url\": \"minim proident ut in u\",\n  \"unread\": 65554571,\n  \"number\": \"reprehenderit ullamco sit quis exercitation\",\n  \"formatted_number\": \"incididunt sed\",\n  \"organizationNumber\": [\n    {\n      \"id\": 27003627,\n      \"country\": \"officia ex\",\n      \"number\": \"esse\",\n      \"formatted_number\": \"culpa in ad dolor\",\n      \"mms\": \"officia ea \"\n    },\n    {\n      \"id\": -69270230,\n      \"country\": \"dolor nostrud est oc\",\n      \"number\": \"aliquip elit ad\",\n      \"formatted_number\": \"proident velit\",\n      \"mms\": \"amet et proident\"\n    }\n  ],\n  \"userPermissions\": [\n    \"aliqua amet voluptate\",\n    \"tempor quis\"\n  ]\n}"}],"_postman_id":"5fa4b429-d08a-435d-8428-76d4c86cd5de"},{"name":"Update user profile","id":"d47d5207-21ea-47a7-a022-8e6c20c67f88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/profile?first_name=&last_name=&email=&number=","description":"<p>This API endpoint enables you to update the current user’s specific personal information in the system. <br /><br />Each contact (user) has 4 fields which can be updated by default: </p><ul><li>First name</li> <li>Last name</li> <li>Email</li> <li>Phone number</li></ul><p>These fields of a user’s profile document with JSON objects are replaced by data that’s included in the request. New keys and their values are added to the profile document.</p><p></p>\n","urlObject":{"path":["users","profile"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) First name</p>\n","type":"text/plain"},"key":"first_name","value":""},{"description":{"content":"<p>(Required) Last name</p>\n","type":"text/plain"},"key":"last_name","value":""},{"description":{"content":"<p>Email</p>\n","type":"text/plain"},"key":"email","value":""},{"description":{"content":"<p>Number</p>\n","type":"text/plain"},"key":"number","value":""}],"variable":[]}},"response":[{"id":"e39a61a4-52e3-4671-b88e-0a283f95c223","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//users/profile?first_name=&last_name=&email=&number=","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["users","profile"],"query":[{"key":"first_name","value":""},{"key":"last_name","value":""},{"key":"email","value":""},{"key":"number","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -20699676,\n  \"email\": \"Excepteur consectetur\",\n  \"first_name\": \"nisi minim\",\n  \"last_name\": \"qui in\",\n  \"full_name\": \"nisi Excepteur quis eu\",\n  \"role\": \"velit\",\n  \"inbox_id\": -67516809,\n  \"organization_id\": 13996730,\n  \"photo_url\": \"minim proident ut in u\",\n  \"unread\": 65554571,\n  \"number\": \"reprehenderit ullamco sit quis exercitation\",\n  \"formatted_number\": \"incididunt sed\",\n  \"organizationNumber\": [\n    {\n      \"id\": 27003627,\n      \"country\": \"officia ex\",\n      \"number\": \"esse\",\n      \"formatted_number\": \"culpa in ad dolor\",\n      \"mms\": \"officia ea \"\n    },\n    {\n      \"id\": -69270230,\n      \"country\": \"dolor nostrud est oc\",\n      \"number\": \"aliquip elit ad\",\n      \"formatted_number\": \"proident velit\",\n      \"mms\": \"amet et proident\"\n    }\n  ],\n  \"userPermissions\": [\n    \"aliqua amet voluptate\",\n    \"tempor quis\"\n  ]\n}"},{"id":"39aa742d-9b16-4cb9-973c-e45b92b4bc2a","name":"Error","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//users/profile?first_name=&last_name=&email=&number=","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["users","profile"],"query":[{"key":"first_name","value":""},{"key":"last_name","value":""},{"key":"email","value":""},{"key":"number","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"officia sint c\",\n  \"trace\": \"tempor veniam esse adipisicing anim\"\n}"}],"_postman_id":"d47d5207-21ea-47a7-a022-8e6c20c67f88"},{"name":"Get users assign inbox request","id":"1f108d65-f716-45b7-833a-145955b6b79a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/assign-inbox-request","description":"<p>Get users assign inbox request</p>\n","urlObject":{"path":["users","assign-inbox-request"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"0722ff77-f803-4a72-abc5-522f9d16f322","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//users/assign-inbox-request"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"dolor exercitation\",\n  \"data\": {}\n}"},{"id":"ed659b2e-9bfb-4949-b7be-70edc4b32067","name":"Unauthorized action.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//users/assign-inbox-request"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1f108d65-f716-45b7-833a-145955b6b79a"},{"name":"Update user assign inbox request","id":"7e8800c7-9bb8-4e65-9a51-8c66b5b243b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/assign-inbox-request","description":"<p>Update user assign inbox request</p>\n","urlObject":{"path":["users","assign-inbox-request"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"f81f33c8-7daf-4acd-a13a-39f5b83f8e92","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//users/assign-inbox-request"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"dolor exercitation\",\n  \"data\": {}\n}"},{"id":"89aad73a-da37-487d-8c61-1992ae3c828d","name":"Unauthorized action.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//users/assign-inbox-request"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7e8800c7-9bb8-4e65-9a51-8c66b5b243b6"},{"name":"Get user access requests","id":"cca343b1-8572-4c64-a683-719633ad412b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/access-requests","description":"<p>Get user access requests</p>\n","urlObject":{"path":["users","access-requests"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"4dc10383-985b-4889-806a-53c48e7279e8","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//users/access-requests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"dolor exercitation\",\n  \"data\": {}\n}"}],"_postman_id":"cca343b1-8572-4c64-a683-719633ad412b"},{"name":"Search members in current organization","id":"5dfe8b86-4810-4cf7-9147-b47ec41604a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/search?term=laborum&per_page=50&page=1&exclude[]=-57824058&exclude[]=76665986","description":"<p>Search members in current organization</p>\n","urlObject":{"path":["users","search"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Term</p>\n","type":"text/plain"},"key":"term","value":"laborum"},{"description":{"content":"<p>(Required) Per Page</p>\n","type":"text/plain"},"key":"per_page","value":"50"},{"description":{"content":"<p>(Required) Page</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"exclude[]","value":"-57824058"},{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"exclude[]","value":"76665986"}],"variable":[]}},"response":[{"id":"0a6f0386-3b8c-4d5a-bf4d-0232cd7890c8","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//users/search?term=laborum&per_page=50&page=1&exclude[]=91455370&exclude[]=19715930","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["users","search"],"query":[{"key":"term","value":"laborum"},{"key":"per_page","value":"50"},{"key":"page","value":"1"},{"key":"exclude[]","value":"91455370"},{"key":"exclude[]","value":"19715930"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"total\": 48281762,\n  \"errors\": false\n}"}],"_postman_id":"5dfe8b86-4810-4cf7-9147-b47ec41604a2"},{"name":"Update user feature settings","id":"c3b5a8d5-6b90-434f-a3c1-c89d721deaf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/settings?featureKey=laborum&settingsKey=laborum&value=laborum","description":"<p>Each user in the system has personal feature settings related to choosing a convenient UI for the interaction within a conversation. <br /><br />This API endpoint allows for setting a flag for a specific feature setting, such as send a message by a click of the ‘Send’ button or the ‘Enter’ button on the keyboard. <br /><br />Through this API request, the user can save such personal settings and preferences.</p>\n","urlObject":{"path":["users","settings"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Key of the feature</p>\n","type":"text/plain"},"key":"featureKey","value":"laborum"},{"description":{"content":"<p>(Required) Settings key</p>\n","type":"text/plain"},"key":"settingsKey","value":"laborum"},{"description":{"content":"<p>Settings value</p>\n","type":"text/plain"},"key":"value","value":"laborum"}],"variable":[]}},"response":[{"id":"f097ffe0-6341-49f9-9b7e-ee567764def2","name":"OK","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//users/settings?featureKey=laborum&settingsKey=laborum&value=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["users","settings"],"query":[{"key":"featureKey","value":"laborum"},{"key":"settingsKey","value":"laborum"},{"key":"value","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"value\": \"u\",\n  \"settingsKey\": \"sed officia et laboris aliqua\",\n  \"featureKey\": \"proident in ut\"\n}"}],"_postman_id":"c3b5a8d5-6b90-434f-a3c1-c89d721deaf7"},{"name":"Update user's team","id":"bcc4580b-a4fe-4489-a7a3-bf5ba7966c17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//users/team?id=-46945205","description":"<p>The API endpoint helps to update team id and choose another message inbox which will be used for the conversations by default. <br /><br />This becomes needed in case the user wants to switch between teams (inboxes) that they wish to receive messages and notifications from. <br /><br />If the users skip updating their team, messages will be sent and received within the currently active team.</p>\n","urlObject":{"path":["users","team"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"key":"id","value":"-46945205"}],"variable":[]}},"response":[{"id":"2ba4ee46-10eb-4186-9331-027cf865f1c8","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//users/team?id=-46945205","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["users","team"],"query":[{"key":"id","value":"-46945205"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"mollit irure ut commodo\",\n  \"currentInboxId\": -63770884,\n  \"currentInboxTypeId\": 55458663,\n  \"currentInboxType\": \"culpa laboris\",\n  \"unread\": 21181573\n}"}],"_postman_id":"bcc4580b-a4fe-4489-a7a3-bf5ba7966c17"},{"name":"Update users toggle record automatically","id":"c11753fa-f4c0-49d8-8b8f-00109349b726","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isRecordAutomatically\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//users/toggle-record-automatically","description":"<p>Update users toggle record automatically</p>\n","urlObject":{"path":["users","toggle-record-automatically"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"ff81d1e1-5837-4a93-8b9b-d6a3b1db7b5d","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"isRecordAutomatically\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//users/toggle-record-automatically"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c11753fa-f4c0-49d8-8b8f-00109349b726"}],"id":"e9a8fa82-21eb-4ff2-976c-ca1158bcc399","description":"<p>The user is the one that is associated with the authorization within the system. It is the currently authorized, authenticated user having a token. Users belong to the system and are not visible by other systems or APIs. <br /><br />The Users APIs enable your application to manage and interact with specific data about the current user.</p>\n","_postman_id":"e9a8fa82-21eb-4ff2-976c-ca1158bcc399"},{"name":"Tags","item":[{"name":"Add tag for contact","id":"a1417cb8-935f-41ff-be2e-6b25868c5685","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//tags/contact/:contact/:tag","description":"<p>Add tag for contact</p>\n","urlObject":{"path":["tags","contact",":contact",":tag"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"67787d29-dc8d-4bd4-932c-d9deecc74afd","description":{"content":"<p>(Required) The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"laborum","key":"contact"},{"id":"20c23aec-852d-40fe-96f3-0cf0f7a5a52c","description":{"content":"<p>(Required) The ID of the Tag</p>\n","type":"text/plain"},"type":"any","value":"laborum","key":"tag"}]}},"response":[{"id":"5e08ddf4-f367-4d02-ac73-62c16c4e9388","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"laborum","description":"(Required) The ID of the Contact"},{"key":"tag","value":"laborum","description":"(Required) The ID of the Tag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"veniam nostrud ex\",\n  \"message\": \"pariatur laborum ad Ut\"\n}"},{"id":"0dfa83d8-d234-419e-a244-b08802016ac9","name":"Forbidden","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"laborum","description":"(Required) The ID of the Contact"},{"key":"tag","value":"laborum","description":"(Required) The ID of the Tag"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"This action is unauthorized.\",\n  \"status\": 403\n}"},{"id":"ffeef7da-4adb-4133-87fa-20e487b5bbb9","name":"Not Found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"laborum","description":"(Required) The ID of the Contact"},{"key":"tag","value":"laborum","description":"(Required) The ID of the Tag"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Not Found\",\n  \"status\": 404\n}"}],"_postman_id":"a1417cb8-935f-41ff-be2e-6b25868c5685"},{"name":"Remove tag from contact","id":"c5d4debd-d0c7-4ee5-8f4b-f8ba979292f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//tags/contact/:contact/:tag","description":"<p>Remove tag from contact</p>\n","urlObject":{"path":["tags","contact",":contact",":tag"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"8f84d602-6927-49f8-90b0-96130cf2f233","description":{"content":"<p>(Required) The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"laborum","key":"contact"},{"id":"a31e1373-3be4-4761-84df-3694543cc827","description":{"content":"<p>(Required) The ID of the Tag</p>\n","type":"text/plain"},"type":"any","value":"laborum","key":"tag"}]}},"response":[{"id":"7de08544-f8da-4cca-acd6-18f688f2d65e","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"laborum","description":"(Required) The ID of the Contact"},{"key":"tag","value":"laborum","description":"(Required) The ID of the Tag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"veniam nostrud ex\",\n  \"message\": \"pariatur laborum ad Ut\"\n}"},{"id":"9ad833f7-a178-45b6-b75c-f0354e198047","name":"Forbidden","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"laborum","description":"(Required) The ID of the Contact"},{"key":"tag","value":"laborum","description":"(Required) The ID of the Tag"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"This action is unauthorized.\",\n  \"status\": 403\n}"},{"id":"b6bf4a64-e57c-4ff1-bd20-5d74472f6465","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"laborum","description":"(Required) The ID of the Contact"},{"key":"tag","value":"laborum","description":"(Required) The ID of the Tag"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Not Found\",\n  \"status\": 404\n}"}],"_postman_id":"c5d4debd-d0c7-4ee5-8f4b-f8ba979292f9"},{"name":"Get tags","id":"0462a42e-9a87-4b50-9d44-507d6b395202","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//tags?sortBy=laborum&sortOrder=desc&page=1&search=laborum&length=10","description":"<p>This API endpoint returns all tags that are currently used within the system.<br /><br />Tags can be sorted by name, label, etc. Additionally, you are allowed to choose a sorting order and the number of results per page, up to 100.</p>\n","urlObject":{"path":["tags"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Sort by field (name, label, etc)</p>\n","type":"text/plain"},"key":"sortBy","value":"laborum"},{"description":{"content":"<p>Sorting order</p>\n","type":"text/plain"},"key":"sortOrder","value":"desc"},{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Tag label</p>\n","type":"text/plain"},"key":"search","value":"laborum"},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"length","value":"10"}],"variable":[]}},"response":[{"id":"9a82f0ab-1a91-40f5-b7b6-833bcff8c7d2","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags?sortBy=laborum&sortOrder=desc&page=1&search=laborum&length=10","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags"],"query":[{"key":"sortBy","value":"laborum"},{"key":"sortOrder","value":"desc"},{"key":"page","value":"1"},{"key":"search","value":"laborum"},{"key":"length","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": -8018127,\n      \"owner_id\": 24256530,\n      \"organization_id\": 696460,\n      \"label\": \"laboris ut incididunt irure sed\",\n      \"name\": \"incididunt ullamco id nostrud dolor\",\n      \"type\": \"aute conse\",\n      \"classname\": \"do\"\n    },\n    {\n      \"id\": -49474640,\n      \"owner_id\": -75920797,\n      \"organization_id\": 98286298,\n      \"label\": \"esse exercitation\",\n      \"name\": \"ullamco deserunt anim qui\",\n      \"type\": \"ut adipisici\",\n      \"classname\": \"nisi incididunt\"\n    }\n  ]\n}"}],"_postman_id":"0462a42e-9a87-4b50-9d44-507d6b395202"},{"name":"Create tag","id":"6b5fc5af-47db-4333-b780-7daa48f5cf2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//tags?label=ea ","description":"<p>Through this API endpoint, you can create and add a new tag label in the repository to the ones that already exist. <br /><br />As a result, each user in the system can now narrow down the search among their contacts and individualize messages. <br /><br />On creating, up to 15 characters are allowed for each tag label.</p>\n","urlObject":{"path":["tags"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Tag label</p>\n","type":"text/plain"},"key":"label","value":"ea "}],"variable":[]}},"response":[{"id":"9dec8aa7-f619-4ecc-ab52-39d15ede3a9e","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags?label=ea ","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags"],"query":[{"key":"label","value":"ea "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 55239939,\n  \"owner_id\": 61616375,\n  \"organization_id\": -43836511,\n  \"label\": \"eiusmod Ut\",\n  \"name\": \"commodo ullamco esse\",\n  \"type\": \"ut labore aliqua\",\n  \"classname\": \"qui in quis proident\"\n}"}],"_postman_id":"6b5fc5af-47db-4333-b780-7daa48f5cf2d"},{"name":"Bulk delete tags","id":"c3238d76-482d-411d-94df-10d0f4817feb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    1,\n    1\n  ],\n  \"delete_all\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//tags","description":"<p>Bulk delete tags</p>\n","urlObject":{"path":["tags"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"15167e0b-2146-40ca-a35d-50698a029f90","name":"Response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    1,\n    1\n  ],\n  \"delete_all\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//tags"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"7005cbb6-ecc8-4fc1-9959-dde358e7bc08","name":"Organization not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    1,\n    1\n  ],\n  \"delete_all\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//tags"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"}],"_postman_id":"c3238d76-482d-411d-94df-10d0f4817feb"},{"name":"Create tag for contact","id":"3f3a56b9-7d21-4bd3-be2c-2e5b552a0f8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//tags/contact/:contact/create?label=laborum","description":"<p>Create tag for contact</p>\n","urlObject":{"path":["tags","contact",":contact","create"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Tag label</p>\n","type":"text/plain"},"key":"label","value":"laborum"}],"variable":[{"id":"adac3a2d-f742-4634-a46c-370cf0770da8","description":{"content":"<p>(Required) The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"contact"}]}},"response":[{"id":"67a0ee7c-2a46-4acc-b0c2-a1b6982b1a11","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/contact/:contact/create?label=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags","contact",":contact","create"],"query":[{"key":"label","value":"laborum"}],"variable":[{"key":"contact","value":"-46945205","description":"(Required) The ID of the Contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 55239939,\n  \"owner_id\": 61616375,\n  \"organization_id\": -43836511,\n  \"label\": \"eiusmod Ut\",\n  \"name\": \"commodo ullamco esse\",\n  \"type\": \"ut labore aliqua\",\n  \"classname\": \"qui in quis proident\"\n}"}],"_postman_id":"3f3a56b9-7d21-4bd3-be2c-2e5b552a0f8c"},{"name":"Get tag","id":"45e13c64-d4a9-41b4-bd5d-cbfb05557778","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//tags/:tag","description":"<p>Get tag</p>\n","urlObject":{"path":["tags",":tag"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"1fc59f63-9308-404f-9306-b81586baba82","description":{"content":"<p>(Required) The ID of the Tag</p>\n","type":"text/plain"},"type":"any","value":"laborum","key":"tag"}]}},"response":[{"id":"46594d53-44c7-4eef-9d0a-a667b3c90487","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/:tag","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags",":tag"],"variable":[{"key":"tag","value":"laborum","description":"(Required) The ID of the Tag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 55239939,\n  \"owner_id\": 61616375,\n  \"organization_id\": -43836511,\n  \"label\": \"eiusmod Ut\",\n  \"name\": \"commodo ullamco esse\",\n  \"type\": \"ut labore aliqua\",\n  \"classname\": \"qui in quis proident\"\n}"}],"_postman_id":"45e13c64-d4a9-41b4-bd5d-cbfb05557778"},{"name":"Update tag","id":"4de8006d-0997-4eee-a94c-878457ac59ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//tags/:tag?label=mini","description":"<p>This API request allows for modifying data for a specific tag by tag id. You can update tag label with any text up to 15 characters. <br /><br />The endpoint updates a tag based on the data properties provided in the request body.</p>\n","urlObject":{"path":["tags",":tag"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Tag label</p>\n","type":"text/plain"},"key":"label","value":"mini"}],"variable":[{"id":"58fb8de7-644b-47e4-99ea-165e6fdeebf0","description":{"content":"<p>(Required) Tag id</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"tag"}]}},"response":[{"id":"c9676612-56eb-4a7a-9eba-e3eb3eeb41f2","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/:tag?label=mini","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags",":tag"],"query":[{"key":"label","value":"mini"}],"variable":[{"key":"tag","value":"-46945205","description":"(Required) Tag id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 55239939,\n  \"owner_id\": 61616375,\n  \"organization_id\": -43836511,\n  \"label\": \"eiusmod Ut\",\n  \"name\": \"commodo ullamco esse\",\n  \"type\": \"ut labore aliqua\",\n  \"classname\": \"qui in quis proident\"\n}"}],"_postman_id":"4de8006d-0997-4eee-a94c-878457ac59ed"},{"name":"Delete a tag","id":"4c9cfdee-ea27-46ad-9aa3-184f68d0ff1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//tags/:tag","description":"<p>This API endpoint deletes a tag of a repository. <br /><br />As a result, through this API endpoint, any identified tag will automatically be removed from all the contacts who had it applied to them. The request deletes a tag by id with the corresponding values.</p>\n","urlObject":{"path":["tags",":tag"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"d13f53a2-0135-4b45-80de-ad51b6fc1ebc","description":{"content":"<p>(Required) Tag id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"tag"}]}},"response":[{"id":"392a58c1-ce16-4224-a8d8-78a82b8b57f4","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/:tag","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags",":tag"],"variable":[{"key":"tag","value":"1","description":"(Required) Tag id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"Ut ullamco\",\n  \"message\": \"est exercitation quis laboris veniam\"\n}"},{"id":"fff82bae-3c43-413c-b6fb-336713b3412c","name":"Organization not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/:tag","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags",":tag"],"variable":[{"key":"tag","value":"1","description":"(Required) Tag id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Not Found\",\n  \"status\": 404\n}"}],"_postman_id":"4c9cfdee-ea27-46ad-9aa3-184f68d0ff1d"},{"name":"Search tags","id":"5ac5cc38-7ad1-488e-b777-a4ed6af38db5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//tags/search?term=laborum&per_page=50&page=1&exclude[]=-57824058&exclude[]=76665986","description":"<p>Search tags</p>\n","urlObject":{"path":["tags","search"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Term</p>\n","type":"text/plain"},"key":"term","value":"laborum"},{"description":{"content":"<p>(Required) Per Page</p>\n","type":"text/plain"},"key":"per_page","value":"50"},{"description":{"content":"<p>(Required) Page</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The IDs of the Tags</p>\n","type":"text/plain"},"key":"exclude[]","value":"-57824058"},{"description":{"content":"<p>The IDs of the Tags</p>\n","type":"text/plain"},"key":"exclude[]","value":"76665986"}],"variable":[]}},"response":[{"id":"3093d5a8-f82b-4cf0-a293-3b8459eb3a9c","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//tags/search?term=laborum&per_page=50&page=1&exclude[]=91455370&exclude[]=19715930","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["tags","search"],"query":[{"key":"term","value":"laborum"},{"key":"per_page","value":"50"},{"key":"page","value":"1"},{"key":"exclude[]","value":"91455370"},{"key":"exclude[]","value":"19715930"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"results\": [\n    {\n      \"id\": -55033045,\n      \"owner_id\": -74952551,\n      \"organization_id\": -32118940,\n      \"label\": \"nostrud in aliqua ad velit\",\n      \"name\": \"Ut sed in veniam\",\n      \"type\": \"voluptate sed\",\n      \"classname\": \"velit\"\n    },\n    {\n      \"id\": 32669463,\n      \"owner_id\": -66593716,\n      \"organization_id\": -15285509,\n      \"label\": \"f\",\n      \"name\": \"Excepteur tempor ut occaecat\",\n      \"type\": \"nisi\",\n      \"classname\": \"dolore id\"\n    }\n  ],\n  \"total\": -98405790,\n  \"errors\": true\n}"}],"_postman_id":"5ac5cc38-7ad1-488e-b777-a4ed6af38db5"}],"id":"74c351b7-695a-4ef4-adb1-4ee06c718412","description":"<p>SalesMsg’s Tags API is for creating tags and adding them to your contacts. <br /><br />Tags serve for identification of contacts and searching for contacts via associated tags, filtering messages, analytics, conversations, and more. For example, you’ve got a contact that had come from Instagram. By adding the ‘instagram’ tag to the contact, we can then filter and search that exact contact much easier. <br /><br />Tags section is found in the Settings.<br /><br />The Tags APIs enable your application to manage and interact with tags.</p>\n","_postman_id":"74c351b7-695a-4ef4-adb1-4ee06c718412"},{"name":"Custom Fields","item":[{"name":"Create custom field","id":"301e405c-46cc-4933-b33a-3426a31299c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//custom-fields/field?name=First Name&type=text&visible=false","description":"<p>In addition to the 4 fields available by default (First name, Last name, Phone Number, Email address), this API endpoint allows for creating and adding a new custom field to the ones that already exist. <br /><br />As a result, each user in the system can now narrow down the search among their contacts and individualize messages. <br /><br />To create a new custom field for your contacts, you have two things to select: <strong>Field Name</strong> which is a recognizable title for your custom property (i.e <code>Birthday</code>) and <strong>Field Type.</strong> <br /><br />The values that are allowed for Field Types include: </p><ul> <li>Text</li> <li>URL</li> <li>Date</li> <li>Number</li> </ul> <p>As a result, inside the conversation window, on the user contact card, there’s new data available for view. You can choose whethe to show custom information on the user contact card or not.</p><p></p>\n","urlObject":{"path":["custom-fields","field"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Field name</p>\n","type":"text/plain"},"key":"name","value":"First Name"},{"description":{"content":"<p>(Required) Type</p>\n","type":"text/plain"},"key":"type","value":"text"},{"description":{"content":"<p>(Required) Show in сonversations</p>\n","type":"text/plain"},"key":"visible","value":"false"}],"variable":[]}},"response":[{"id":"0d778b4a-a532-4770-ab02-5a4c5c9a7685","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//custom-fields/field?name=First Name&type=text&visible=false","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["custom-fields","field"],"query":[{"key":"name","value":"First Name"},{"key":"type","value":"text"},{"key":"visible","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"cillum minim anim in\",\n  \"data\": {\n    \"id\": 2594783,\n    \"organization_id\": -32034027,\n    \"key\": \"consequat sint\",\n    \"name\": \"voluptate consequat ipsum\",\n    \"type\": \"commodo tempor minim quis id\",\n    \"visible\": 65438869\n  }\n}"},{"id":"41da3a7d-cf92-44e5-9665-3bcd62593184","name":"Error","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//custom-fields/field?name=First Name&type=text&visible=true","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["custom-fields","field"],"query":[{"key":"name","value":"First Name"},{"key":"type","value":"text"},{"key":"visible","value":"true"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"co\",\n  \"code\": \"ad sit id\",\n  \"message\": \"pariatur et irure\"\n}"}],"_postman_id":"301e405c-46cc-4933-b33a-3426a31299c3"},{"name":"Update custom field","id":"a64cc2d5-6b62-4342-b2f8-1c1490d6564f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//custom-fields/field/:customField?name=First Name&type=text&visible=true","description":"<p>This API request allows for modifying data for a specific custom field by id specified in path. <br /><br />Properties that you can update are the name of a specific custom field and value type of a specific custom field (text, URL, date, number). <br /><br />Additionally, you can update the feature that shows or does not show specific custom fields in сonversations.</p>\n","urlObject":{"path":["custom-fields","field",":customField"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Field name</p>\n","type":"text/plain"},"key":"name","value":"First Name"},{"description":{"content":"<p>(Required) Type</p>\n","type":"text/plain"},"key":"type","value":"text"},{"description":{"content":"<p>(Required) Show in сonversations</p>\n","type":"text/plain"},"key":"visible","value":"true"}],"variable":[{"id":"8c8cdbca-3e72-4bf1-a7ba-922ee11fc5d7","description":{"content":"<p>(Required) Custom field id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"customField"}]}},"response":[{"id":"800597b8-7cfe-47f6-b9f2-10961b8a8f8b","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//custom-fields/field/:customField?name=First Name&type=text&visible=true","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["custom-fields","field",":customField"],"query":[{"key":"name","value":"First Name"},{"key":"type","value":"text"},{"key":"visible","value":"true"}],"variable":[{"key":"customField","value":"27950450","description":"(Required) Custom field id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"qui id\",\n  \"data\": {\n    \"id\": -99602584,\n    \"organization_id\": -18066978,\n    \"key\": \"labore laborum do\",\n    \"name\": \"in voluptate minim id deserunt\",\n    \"type\": \"deserunt null\",\n    \"visible\": 85789675\n  }\n}"},{"id":"5b25d7ec-b8a1-4de4-811c-ab65aa6270c1","name":"Error","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//custom-fields/field/:customField?name=First Name&type=text&visible=true","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["custom-fields","field",":customField"],"query":[{"key":"name","value":"First Name"},{"key":"type","value":"text"},{"key":"visible","value":"true"}],"variable":[{"key":"customField","value":"27950450","description":"(Required) Custom field id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"co\",\n  \"code\": \"ad sit id\",\n  \"message\": \"pariatur et irure\"\n}"}],"_postman_id":"a64cc2d5-6b62-4342-b2f8-1c1490d6564f"},{"name":"Delete custom field","id":"ce804893-d40f-42b6-b528-cb3c234db8e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//custom-fields/field/:customField","description":"<p>Through this API endpoint, any custom field subresource can easily be removed from all the contacts to which it was applied. <br /><br />The request deletes a custom field by id with the corresponding values. Deleting a custom field will also delete all of the values across all contact cards that have been set for that custom field.</p>\n","urlObject":{"path":["custom-fields","field",":customField"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"202fd80e-b3a7-43dc-84e0-d7e6681902ad","description":{"content":"<p>(Required) Custom field id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"customField"}]}},"response":[{"id":"936d43ce-f32c-416d-859b-6ea45a28bb58","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//custom-fields/field/:customField","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["custom-fields","field",":customField"],"variable":[{"key":"customField","value":"27950450","description":"(Required) Custom field id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"qui id\",\n  \"data\": {\n    \"id\": -99602584,\n    \"organization_id\": -18066978,\n    \"key\": \"labore laborum do\",\n    \"name\": \"in voluptate minim id deserunt\",\n    \"type\": \"deserunt null\",\n    \"visible\": 85789675\n  }\n}"},{"id":"59cb8c32-2b94-4e8f-8c96-6b530aaa1755","name":"Error","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//custom-fields/field/:customField","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["custom-fields","field",":customField"],"variable":[{"key":"customField","value":"27950450","description":"(Required) Custom field id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"co\",\n  \"code\": \"ad sit id\",\n  \"message\": \"pariatur et irure\"\n}"}],"_postman_id":"ce804893-d40f-42b6-b528-cb3c234db8e5"},{"name":"Get custom fields","id":"a223e0a1-0282-4c1e-972e-07eff2d71dd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//custom-fields/fields?search=&length=&page=","description":"<p>This API request returns the entire collection of custom fields that are available for use in a user`s account. <br /><br />The response will contain the names and values of all the custom fields. Choose the number of results per page that you wish to view. <br /><br />I addition, the endpoint allows for setting a search filter by field name.</p>\n","urlObject":{"path":["custom-fields","fields"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Filter by name</p>\n","type":"text/plain"},"key":"search","value":""},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"length","value":""},{"description":{"content":"<p>Page</p>\n","type":"text/plain"},"key":"page","value":""}],"variable":[]}},"response":[{"id":"177d5373-3b1f-4ede-8c60-1ac9d2a3ae70","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//custom-fields/fields?search=&length=&page=","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["custom-fields","fields"],"query":[{"key":"search","value":""},{"key":"length","value":""},{"key":"page","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 52807627,\n      \"organization_id\": -14206178,\n      \"key\": \"proident sit qui\",\n      \"name\": \"\",\n      \"type\": \"pariatur cillum\",\n      \"visible\": 58971518\n    },\n    {\n      \"id\": 96554854,\n      \"organization_id\": 64826653,\n      \"key\": \"aute ea do dolore\",\n      \"name\": \"commodo enim aliqua\",\n      \"type\": \"ad nulla id\",\n      \"visible\": -21076664\n    }\n  ]\n}"},{"id":"14a0a41b-fbe4-4ebd-86b2-4e71997ef611","name":"Error","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//custom-fields/fields?search=&length=&page=","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["custom-fields","fields"],"query":[{"key":"search","value":""},{"key":"length","value":""},{"key":"page","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"code\": -99765548,\n  \"message\": \"ad nostrud adipisicing officia\"\n}"}],"_postman_id":"a223e0a1-0282-4c1e-972e-07eff2d71dd7"},{"name":"Get custom field","id":"8ed1407d-3856-4d9c-8ff4-6abe690a3611","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//custom-fields/:customField","description":"<p>This API request retrieves information for a single specific custom field. Getting one specific custom field will require you to input unique id of the custom field. <br /><br />As a result, you view the name of the field and all its unique properties.</p>\n","urlObject":{"path":["custom-fields",":customField"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"83a6d8a1-2796-427a-a9fb-20815c66b6f9","description":{"content":"<p>(Required) Custom field id</p>\n","type":"text/plain"},"type":"any","value":"27950450","key":"customField"}]}},"response":[{"id":"a054492e-eb11-44d8-b445-54e4ae8eeec2","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//custom-fields/:customField","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["custom-fields",":customField"],"variable":[{"key":"customField","value":"27950450","description":"(Required) Custom field id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6575276,\n  \"organization_id\": 56895910,\n  \"key\": \"qui sint consequat cillum\",\n  \"name\": \"tempor nulla\",\n  \"type\": \"qui sint culpa laboris\",\n  \"visible\": 98295211\n}"}],"_postman_id":"8ed1407d-3856-4d9c-8ff4-6abe690a3611"}],"id":"bf064b91-efe7-48bc-9fe6-97f2ad6baedf","description":"<p>Custom fields API brings the ability to personalize a message even more through saving valuable dynamic information in custom properties. Custom properties are the best way to save unique contact information and keep all the personalized details about contacts at your fingertips. <br /><br />4 already existing fields normally associated with the contacts include: First name, Last name, Phone Number, Email address. <br /><br />In addition to these, this API helps to save, for instance, their pet's name, anniversary, shoe size, favorite color, or even <strong>a link to their website</strong>.  <br /><br />Besides, it’s possible to choose whether to show this specific information in a conversation within the contact card or not. <br /><br />A new contact property field will be created for all contacts.</p>\n","_postman_id":"bf064b91-efe7-48bc-9fe6-97f2ad6baedf"},{"name":"Attachments","item":[{"name":"Download selected attachments","id":"8af248dc-56f9-4c06-8d95-bcbd600e38ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/zip"}],"url":"https://api.salesmessage.com/pub/v2.1//attachments/download?attachment_ids[]=-57824058&attachment_ids[]=76665986","description":"<p>Download selected attachments</p>\n","urlObject":{"path":["attachments","download"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) The IDs of the Attachments</p>\n","type":"text/plain"},"key":"attachment_ids[]","value":"-57824058"},{"description":{"content":"<p>(Required) The IDs of the Attachments</p>\n","type":"text/plain"},"key":"attachment_ids[]","value":"76665986"}],"variable":[]}},"response":[{"id":"b617b5de-ca98-46a5-a667-938a67c0714a","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//attachments/download?attachment_ids[]=91455370&attachment_ids[]=19715930","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["attachments","download"],"query":[{"key":"attachment_ids[]","value":"91455370"},{"key":"attachment_ids[]","value":"19715930"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/zip"}],"cookie":[],"responseTime":null,"body":"laborum"},{"id":"37c3fb60-2ba7-4e66-a25f-1122f6fee448","name":"Attachment Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//attachments/download?attachment_ids[]=91455370&attachment_ids[]=19715930","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["attachments","download"],"query":[{"key":"attachment_ids[]","value":"91455370"},{"key":"attachment_ids[]","value":"19715930"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"ee4bfbef-9f15-4ff3-a820-aced48cb20f2","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//attachments/download?attachment_ids[]=91455370&attachment_ids[]=19715930","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["attachments","download"],"query":[{"key":"attachment_ids[]","value":"91455370"},{"key":"attachment_ids[]","value":"19715930"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"}],"_postman_id":"8af248dc-56f9-4c06-8d95-bcbd600e38ba"},{"name":"Convert attachment file","id":"3a815bfd-5dfa-4ee8-ba7e-dc93d1b214f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://api.salesmessage.com/pub/v2.1//attachments/convert","description":"<p>Convert attachment file</p>\n","urlObject":{"path":["attachments","convert"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"ac8db6e2-855d-44f2-8fbd-deb02caaa0da","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file"}]},"url":"https://api.salesmessage.com/pub/v2.1//attachments/convert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"source\": \"labore cupidatat ut\",\n  \"source_short\": \"dolor amet quis ut\",\n  \"content_type\": \"esse cillum\"\n}"},{"id":"9e793358-d587-4bbb-8da8-fca14359fef2","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file"}]},"url":"https://api.salesmessage.com/pub/v2.1//attachments/convert"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3a815bfd-5dfa-4ee8-ba7e-dc93d1b214f4"},{"name":"Delete selected attachments","id":"c5eeb7ba-8d79-41ef-b3b0-6a22f0c8da93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//attachments?attachment_ids[]=-57824058&attachment_ids[]=76665986","description":"<p>Delete selected attachments</p>\n","urlObject":{"path":["attachments"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) The IDs of the Attachments</p>\n","type":"text/plain"},"key":"attachment_ids[]","value":"-57824058"},{"description":{"content":"<p>(Required) The IDs of the Attachments</p>\n","type":"text/plain"},"key":"attachment_ids[]","value":"76665986"}],"variable":[]}},"response":[{"id":"557fd150-1b42-42b0-9b74-3e8a46682f16","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//attachments?attachment_ids[]=91455370&attachment_ids[]=19715930","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["attachments"],"query":[{"key":"attachment_ids[]","value":"91455370"},{"key":"attachment_ids[]","value":"19715930"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"eiusmod dolor\"\n}"},{"id":"3b44d8fa-d7eb-4bea-8126-641afb50e0ab","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//attachments?attachment_ids[]=91455370&attachment_ids[]=19715930","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["attachments"],"query":[{"key":"attachment_ids[]","value":"91455370"},{"key":"attachment_ids[]","value":"19715930"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c5eeb7ba-8d79-41ef-b3b0-6a22f0c8da93"},{"name":"Get all attachments","id":"e8e2b765-1f11-4af8-acbd-960f5edd3593","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//attachments/list","description":"<p>Get all attachments</p>\n","urlObject":{"path":["attachments","list"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"df97a630-449e-4597-abe2-cad716df7587","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//attachments/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"attachments\": [\n    {\n      \"source\": \"quis consequat aliqua q\",\n      \"source_short\": \"labore\",\n      \"content_type\": \"eiusmod Duis\"\n    },\n    {\n      \"source\": \"magna minim\",\n      \"source_short\": \"pariatur et\",\n      \"content_type\": \"ex\"\n    }\n  ],\n  \"space_used\": 5492031\n}"}],"_postman_id":"e8e2b765-1f11-4af8-acbd-960f5edd3593"},{"name":"Get preview file","id":"ad926049-0b83-4fe3-976e-7eeecf4e6364","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//attachments/preview?urls[]=incididunt laboris ea elit&urls[]=nisi","description":"<p>Get preview file</p>\n","urlObject":{"path":["attachments","preview"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Short Urls</p>\n","type":"text/plain"},"key":"urls[]","value":"incididunt laboris ea elit"},{"description":{"content":"<p>(Required) Short Urls</p>\n","type":"text/plain"},"key":"urls[]","value":"nisi"}],"variable":[]}},"response":[{"id":"9884fd14-fcca-4293-816b-6aa2cb5237d4","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//attachments/preview?urls[]=commodo veniam dolore est&urls[]=dolore magna ut","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["attachments","preview"],"query":[{"key":"urls[]","value":"commodo veniam dolore est"},{"key":"urls[]","value":"dolore magna ut"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"source\": \"labore cupidatat ut\",\n  \"source_short\": \"dolor amet quis ut\",\n  \"content_type\": \"esse cillum\"\n}"},{"id":"032f401d-e61f-44fd-b430-42d65f559b57","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//attachments/preview?urls[]=commodo veniam dolore est&urls[]=dolore magna ut","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["attachments","preview"],"query":[{"key":"urls[]","value":"commodo veniam dolore est"},{"key":"urls[]","value":"dolore magna ut"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f7a66131-f987-4434-b021-8d4611db289c","name":"Error","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//attachments/preview?urls[]=commodo veniam dolore est&urls[]=dolore magna ut","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["attachments","preview"],"query":[{"key":"urls[]","value":"commodo veniam dolore est"},{"key":"urls[]","value":"dolore magna ut"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"}],"_postman_id":"ad926049-0b83-4fe3-976e-7eeecf4e6364"},{"name":"Upload attachments","id":"b1625a47-da72-44a0-818b-9d1373be4175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"[\"quis exercitation cupidatat\",\"dolor incididunt\"]","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.1//attachments/upload","description":"<p>Upload attachment</p>\n","urlObject":{"path":["attachments","upload"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"e7d3f863-59ca-4806-8529-2f2434c99fdb","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"[\"minim consequat\",\"velit cupidatat dolor\"]","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.1//attachments/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"source\": \"labore cupidatat ut\",\n  \"source_short\": \"dolor amet quis ut\",\n  \"content_type\": \"esse cillum\"\n}"},{"id":"acdbe904-2266-42c4-b939-2613c2205cd4","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"[\"minim consequat\",\"velit cupidatat dolor\"]","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.1//attachments/upload"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"24c67664-6e3d-49d8-bb00-13a6eca36eac","name":"Unprocessable Content","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"[\"minim consequat\",\"velit cupidatat dolor\"]","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.1//attachments/upload"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"files.0\": \"We currently only allow: .mp4,.mov,.quicktime,.vcard,.csv,.pdf,.doc,.docx,.xlsx,.jpg,.jpeg,.png,.gif,.vcf,.mp3\"\n}"}],"_postman_id":"b1625a47-da72-44a0-818b-9d1373be4175"}],"id":"04eb57de-bf61-4007-bc86-934b4d6fac16","_postman_id":"04eb57de-bf61-4007-bc86-934b4d6fac16","description":""},{"name":"Broadcasts","item":[{"name":"Get contacts broadcasts","id":"bc5292af-5b20-4f8a-9c8b-c2ab706f74dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/contacts/:broadcast?filter=laborum&page=1&length=10","description":"<p>Get contacts broadcasts</p>\n","urlObject":{"path":["broadcasts","contacts",":broadcast"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Filter</p>\n","type":"text/plain"},"key":"filter","value":"laborum"},{"description":{"content":"<p>The page of a collection to return.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"length","value":"10"}],"variable":[{"id":"697e9940-c41f-45a8-8373-ed1a8299ada3","description":{"content":"<p>(Required) The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"broadcast"}]}},"response":[{"id":"d1642282-3ec7-4ff3-a8a0-eafd831541c7","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/contacts/:broadcast?filter=laborum&page=1&length=10","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","contacts",":broadcast"],"query":[{"key":"filter","value":"laborum"},{"key":"page","value":"1"},{"key":"length","value":"10"}],"variable":[{"key":"broadcast","value":"65893348","description":"(Required) The ID of the Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"bc5292af-5b20-4f8a-9c8b-c2ab706f74dd"},{"name":"Export broadcast contacts","id":"da7f48d1-203d-440c-a8f3-967994294248","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/contacts/:broadcast/export?filter=laborum","description":"<p>Export broadcast contacts</p>\n","urlObject":{"path":["broadcasts","contacts",":broadcast","export"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Filter</p>\n","type":"text/plain"},"key":"filter","value":"laborum"}],"variable":[{"id":"dfa1ee57-7a3b-447d-beff-89242462bc81","description":{"content":"<p>(Required) The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"broadcast"}]}},"response":[{"id":"c014e210-42c6-45f0-a754-d2f74adb61d3","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/contacts/:broadcast/export?filter=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","contacts",":broadcast","export"],"query":[{"key":"filter","value":"laborum"}],"variable":[{"key":"broadcast","value":"65893348","description":"(Required) The ID of the Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"url\": \"https://app.salesmessage.com/export/contacts.csv\"\n}"}],"_postman_id":"da7f48d1-203d-440c-a8f3-967994294248"},{"name":"Get all broadcasts","id":"3f3e7370-4106-4d14-96f3-5d1814a3ed71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts?sortBy=laborum&sortOrder=laborum&page=1&search=laborum&length=10","description":"<p>Get all broadcasts</p>\n","urlObject":{"path":["broadcasts"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Sort by</p>\n","type":"text/plain"},"key":"sortBy","value":"laborum"},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"sortOrder","value":"laborum"},{"description":{"content":"<p>The page of a collection to return.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The string to search for..</p>\n","type":"text/plain"},"key":"search","value":"laborum"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"length","value":"10"}],"variable":[]}},"response":[{"id":"85b3540c-f270-405d-ba81-3ed9d02db3ae","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts?sortBy=laborum&sortOrder=laborum&page=1&search=laborum&length=10","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts"],"query":[{"key":"sortBy","value":"laborum"},{"key":"sortOrder","value":"laborum"},{"key":"page","value":"1"},{"key":"search","value":"laborum"},{"key":"length","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": -8030714,\n    \"organization_id\": -19428025,\n    \"owner_id\": \"velit et sit\",\n    \"number_id\": \"cillum ut sit minim\",\n    \"team_id\": \"sed\",\n    \"is_send_now\": \"Excepteur adipisicing minim Duis sint\",\n    \"name\": \"deserunt mollit et\",\n    \"status\": \"nulla\",\n    \"created_at\": \"laboris dolore est\",\n    \"updated_at\": \"\",\n    \"sent_at\": \"labore\",\n    \"send_at\": \"in nulla esse minim\",\n    \"contacts\": [\n      {\n        \"id\": -41510560,\n        \"owner_id\": -15331939,\n        \"color\": \"esse voluptate et\",\n        \"first_name\": \"Duis ex consectetur minim mollit\",\n        \"last_name\": \"mollit eiusmod ullamco aute\",\n        \"full_name\": \"consequat mollit Duis\",\n        \"email\": \"magna culpa ut\",\n        \"photo_url\": \"cupidatat\",\n        \"number\": \"enim minim ut\",\n        \"country\": \"proident ad\",\n        \"country_calling_code\": \"quis aliqua\",\n        \"national_number\": \"labore pariatur\",\n        \"typeted_number\": \"non proident et ea\",\n        \"is_blocked\": true,\n        \"opt_out\": true,\n        \"opt_out_at\": \"non\",\n        \"opt_in_request_at\": \"dolore elit Excepteur\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 57058191\n          },\n          {\n            \"number_id\": -50208390\n          }\n        ],\n        \"opt_in_at\": \"in Excepteur aliqua\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 38106639,\n            \"number_id\": 40446220,\n            \"name\": \"sint voluptate culpa sit\",\n            \"disabled\": false,\n            \"timestamp\": \"al\",\n            \"value\": true\n          },\n          {\n            \"id\": 89345687,\n            \"number_id\": -29182699,\n            \"name\": \"labore laborum\",\n            \"disabled\": true,\n            \"timestamp\": \"aute quis adipisicing commodo\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"dolor p\",\n        \"updated_at\": \"velit\",\n        \"integration_vendor_id\": -30801136,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": 91519937,\n            \"key\": \"consequat aliqua id dolore\",\n            \"name\": \"officia id\",\n            \"photo_url\": \"e\"\n          },\n          {\n            \"id\": -15687433,\n            \"key\": \"vel\",\n            \"name\": \"sit dolor conseq\",\n            \"photo_url\": \"mollit adipisicing\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -28452410,\n            \"custom_field_id\": -21991628,\n            \"contact_id\": 24691709,\n            \"field_key\": \"in proident do tempor voluptate\",\n            \"organization_id\": -51590278,\n            \"text\": \"non do\",\n            \"number\": -45429981,\n            \"date\": \"pariatur nostrud\",\n            \"created_at\": \"proident magna\",\n            \"updated_at\": \"aliquip v\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": -75209522,\n            \"custom_field_id\": 161543,\n            \"contact_id\": -68538938,\n            \"field_key\": \"esse anim\",\n            \"organization_id\": -34317246,\n            \"text\": \"minim dolor velit elit\",\n            \"number\": -54424203,\n            \"date\": \"ullamco mollit\",\n            \"created_at\": \"Duis reprehenderit\",\n            \"updated_at\": \"nostrud do fugiat eu\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 49441579,\n            \"name\": \"consequat magna cillum esse\",\n            \"label\": \"amet\",\n            \"created_at\": \"consectetur sint velit\"\n          },\n          {\n            \"id\": -87418406,\n            \"name\": \"commodo elit fugiat\",\n            \"label\": \"esse commodo officia \",\n            \"created_at\": \"cupidatat sunt dolore exercitation\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 90578761,\n            \"text\": \"dolor quis et id esse\",\n            \"created_at\": \"Excepteur commodo cupidatat reprehenderit\",\n            \"updated_at\": \"nulla voluptate sint nostrud\"\n          },\n          {\n            \"id\": 775863,\n            \"text\": \"laboris reprehenderit\",\n            \"created_at\": \"ullamco sint et culpa dolor\",\n            \"updated_at\": \"eiusmod occaecat ut\"\n          }\n        ]\n      },\n      {\n        \"id\": 29591239,\n        \"owner_id\": -96876797,\n        \"color\": \"voluptate\",\n        \"first_name\": \"ad\",\n        \"last_name\": \"in qui minim\",\n        \"full_name\": \"veniam mo\",\n        \"email\": \"proident veniam ullamco\",\n        \"photo_url\": \"cillum Lorem\",\n        \"number\": \"laborum eiusmod pariatur\",\n        \"country\": \"sit consequat nulla\",\n        \"country_calling_code\": \"aliqua in dolore enim sint\",\n        \"national_number\": \"officia Ut\",\n        \"typeted_number\": \"do mollit commodo\",\n        \"is_blocked\": true,\n        \"opt_out\": true,\n        \"opt_out_at\": \"in adipisicing\",\n        \"opt_in_request_at\": \"tempor consectetur\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": -70313288\n          },\n          {\n            \"number_id\": -75987098\n          }\n        ],\n        \"opt_in_at\": \"culpa sit\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -88384882,\n            \"number_id\": -33921631,\n            \"name\": \"magna labore commodo eiusmod tempor\",\n            \"disabled\": false,\n            \"timestamp\": \"in consequat fugiat labore\",\n            \"value\": false\n          },\n          {\n            \"id\": -73593047,\n            \"number_id\": 26561153,\n            \"name\": \"id ipsum\",\n            \"disabled\": true,\n            \"timestamp\": \"proident mollit sit\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"proident anim exercitation non\",\n        \"updated_at\": \"ipsum anim\",\n        \"integration_vendor_id\": -21170297,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": -78773506,\n            \"key\": \"sint non\",\n            \"name\": \"mollit dolor minim tempor in\",\n            \"photo_url\": \"Lorem\"\n          },\n          {\n            \"id\": 42567493,\n            \"key\": \"laborum dolore\",\n            \"name\": \"in consectetur reprehenderit tempor\",\n            \"photo_url\": \"voluptate commodo\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 63095997,\n            \"custom_field_id\": -37023159,\n            \"contact_id\": 88725994,\n            \"field_key\": \"ipsum veniam\",\n            \"organization_id\": -16531932,\n            \"text\": \"est sint aute\",\n            \"number\": -17297449,\n            \"date\": \"in dolore id ad\",\n            \"created_at\": \"in exercitation voluptate nostrud\",\n            \"updated_at\": \"veniam deserunt tempor ut\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": 1486164,\n            \"custom_field_id\": 37588477,\n            \"contact_id\": 67687688,\n            \"field_key\": \"aliq\",\n            \"organization_id\": -67170152,\n            \"text\": \"Duis reprehenderit nulla in\",\n            \"number\": -16281654,\n            \"date\": \"enim minim sed pariatur\",\n            \"created_at\": \"Ut amet sunt id\",\n            \"updated_at\": \"exercitation tempor pariatur anim\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": -88484203,\n            \"name\": \"Lorem ex labore\",\n            \"label\": \"laboris id\",\n            \"created_at\": \"elit eiusmod laborum dolore\"\n          },\n          {\n            \"id\": -80949396,\n            \"name\": \"in cupidata\",\n            \"label\": \"elit\",\n            \"created_at\": \"Ut cupidatat nulla tempor\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -27004874,\n            \"text\": \"cupidatat voluptate\",\n            \"created_at\": \"Excepteur qui\",\n            \"updated_at\": \"ad tempor\"\n          },\n          {\n            \"id\": -26896137,\n            \"text\": \"laborum quis Lorem nostr\",\n            \"created_at\": \"qui enim tempor incididunt non\",\n            \"updated_at\": \"proident nulla eu\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"id\": 60646499,\n    \"organization_id\": 97522117,\n    \"owner_id\": \"amet dolore\",\n    \"number_id\": \"dolor\",\n    \"team_id\": \"voluptate\",\n    \"is_send_now\": \"dolor commodo sit\",\n    \"name\": \"in qui ipsum\",\n    \"status\": \"ea magna sunt\",\n    \"created_at\": \"eu Excepteur\",\n    \"updated_at\": \"do\",\n    \"sent_at\": \"quis aliquip et sunt\",\n    \"send_at\": \"sint elit cupidatat\",\n    \"contacts\": [\n      {\n        \"id\": -49265670,\n        \"owner_id\": -54452483,\n        \"color\": \"irure nulla cupidatat voluptate\",\n        \"first_name\": \"sed deserunt\",\n        \"last_name\": \"et Lorem amet irure\",\n        \"full_name\": \"labore ipsum Lorem\",\n        \"email\": \"ea velit Excepteur incididu\",\n        \"photo_url\": \"cupidatat incididunt culpa dolore\",\n        \"number\": \"consequat U\",\n        \"country\": \"do anim cillum\",\n        \"country_calling_code\": \"amet eiusmod incididunt\",\n        \"national_number\": \"do\",\n        \"typeted_number\": \"dolore ull\",\n        \"is_blocked\": false,\n        \"opt_out\": false,\n        \"opt_out_at\": \"ea ullamco adipisicing sunt proident\",\n        \"opt_in_request_at\": \"pariatur deserunt\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": -40411158\n          },\n          {\n            \"number_id\": 78256508\n          }\n        ],\n        \"opt_in_at\": \"in anim enim\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 26987550,\n            \"number_id\": -69921131,\n            \"name\": \"mollit\",\n            \"disabled\": false,\n            \"timestamp\": \"veniam\",\n            \"value\": true\n          },\n          {\n            \"id\": -29430727,\n            \"number_id\": -88738004,\n            \"name\": \"elit o\",\n            \"disabled\": true,\n            \"timestamp\": \"cupidatat\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"quis\",\n        \"updated_at\": \"ad\",\n        \"integration_vendor_id\": 35604062,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": -43653114,\n            \"key\": \"non dolore veniam\",\n            \"name\": \"in\",\n            \"photo_url\": \"cillum velit dolor\"\n          },\n          {\n            \"id\": -32648947,\n            \"key\": \"nulla est magn\",\n            \"name\": \"ipsum qui\",\n            \"photo_url\": \"esse\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 498197,\n            \"custom_field_id\": 92479741,\n            \"contact_id\": -77076562,\n            \"field_key\": \"in cupidatat enim\",\n            \"organization_id\": 79974834,\n            \"text\": \"pariatur q\",\n            \"number\": 76042659,\n            \"date\": \"dolor\",\n            \"created_at\": \"ad\",\n            \"updated_at\": \"ullamco esse sit id\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": -25561210,\n            \"custom_field_id\": 45312493,\n            \"contact_id\": 30152967,\n            \"field_key\": \"Excepteur aute nostrud\",\n            \"organization_id\": 80109993,\n            \"text\": \"et dolor in\",\n            \"number\": 76174316,\n            \"date\": \"dolor\",\n            \"created_at\": \"Lorem sed cupidatat\",\n            \"updated_at\": \"Duis labore quis\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": -81517429,\n            \"name\": \"laborum eiusmod id anim qui\",\n            \"label\": \"aute voluptate aliquip\",\n            \"created_at\": \"eu\"\n          },\n          {\n            \"id\": -76185100,\n            \"name\": \"dolore aute aliqua ut\",\n            \"label\": \"id sit cillum\",\n            \"created_at\": \"occaecat amet exercitation\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 87148896,\n            \"text\": \"sunt magna deserunt dolore ut\",\n            \"created_at\": \"laboris occaecat nulla in\",\n            \"updated_at\": \"velit\"\n          },\n          {\n            \"id\": 10522963,\n            \"text\": \"laboris anim consectetur\",\n            \"created_at\": \"Duis\",\n            \"updated_at\": \"incididunt\"\n          }\n        ]\n      },\n      {\n        \"id\": -69242981,\n        \"owner_id\": -88500271,\n        \"color\": \"est aute nostrud\",\n        \"first_name\": \"Ut elit in\",\n        \"last_name\": \"qui in pariatur minim\",\n        \"full_name\": \"tempor Lorem\",\n        \"email\": \"ullamco incididunt\",\n        \"photo_url\": \"id nostrud\",\n        \"number\": \"proident reprehenderit d\",\n        \"country\": \"enim\",\n        \"country_calling_code\": \"nostrud cu\",\n        \"national_number\": \"consectetur\",\n        \"typeted_number\": \"laboris aute ullamco\",\n        \"is_blocked\": false,\n        \"opt_out\": false,\n        \"opt_out_at\": \"nostrud aute incididunt consectetur\",\n        \"opt_in_request_at\": \"Ut magna\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": -87438326\n          },\n          {\n            \"number_id\": -92366607\n          }\n        ],\n        \"opt_in_at\": \"proident pariatur occaecat ut\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 62593599,\n            \"number_id\": -65865945,\n            \"name\": \"aliquip Ut ad\",\n            \"disabled\": false,\n            \"timestamp\": \"nisi in ullamco commodo mollit\",\n            \"value\": false\n          },\n          {\n            \"id\": -44818801,\n            \"number_id\": 66072011,\n            \"name\": \"et u\",\n            \"disabled\": true,\n            \"timestamp\": \"incididunt est Excepteur labore ex\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"anim consequat deserunt Duis enim\",\n        \"updated_at\": \"ex dolore laborum\",\n        \"integration_vendor_id\": 86493987,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": -28988256,\n            \"key\": \"do culpa sed officia\",\n            \"name\": \"Lorem dolore\",\n            \"photo_url\": \"Lorem dolor\"\n          },\n          {\n            \"id\": 23496467,\n            \"key\": \"cupidatat magna do\",\n            \"name\": \"nostrud id deserunt\",\n            \"photo_url\": \"do elit cillum proident\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -16658044,\n            \"custom_field_id\": -43452383,\n            \"contact_id\": 85685918,\n            \"field_key\": \"esse qui\",\n            \"organization_id\": 44292277,\n            \"text\": \"id reprehenderit magna enim Duis\",\n            \"number\": -63922979,\n            \"date\": \"ad\",\n            \"created_at\": \"fugiat exercitation reprehenderit dolore\",\n            \"updated_at\": \"consectetur dolor\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": 51283065,\n            \"custom_field_id\": 93938786,\n            \"contact_id\": 80477575,\n            \"field_key\": \"ut tempor\",\n            \"organization_id\": -27538840,\n            \"text\": \"dolore\",\n            \"number\": -32158839,\n            \"date\": \"ut laboris enim tempor\",\n            \"created_at\": \"nostrud deserunt adipisicing\",\n            \"updated_at\": \"consectetur fugiat deserunt laboris\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": -17594348,\n            \"name\": \"in nulla\",\n            \"label\": \"minim Ut ea voluptate\",\n            \"created_at\": \"ut consequat\"\n          },\n          {\n            \"id\": -83214829,\n            \"name\": \"magna amet\",\n            \"label\": \"irure qui nostrud\",\n            \"created_at\": \"sint magna veniam\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -67737833,\n            \"text\": \"ullamco nostrud in\",\n            \"created_at\": \"in dolor consequat Ut\",\n            \"updated_at\": \"occaecat magna incididunt\"\n          },\n          {\n            \"id\": -8567873,\n            \"text\": \"labore laboris est\",\n            \"created_at\": \"sed non offici\",\n            \"updated_at\": \"consectetur labore\"\n          }\n        ]\n      }\n    ]\n  }\n]"}],"_postman_id":"3f3e7370-4106-4d14-96f3-5d1814a3ed71"},{"name":"Create broadcast","id":"6f8a2251-18cb-4a67-a4d7-e6963a56762e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Broadcast\",\n  \"number_id\": 1,\n  \"package_count\": 10,\n  \"message\": \"Broadcast Message\",\n  \"media_url\": [\n    \"https://test.com/test.png\",\n    \"https://test.com/test.png\"\n  ],\n  \"send_at\": \"1965-12-02\",\n  \"is_draft\": false,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"sed ipsum esse labore\",\n      \"in sint veniam\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        75768401,\n        49541924\n      ],\n      \"contacts\": [\n        26910935,\n        -79834806\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        -17300730,\n        -46930489\n      ]\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//broadcasts","description":"<p>Create broadcast</p>\n","urlObject":{"path":["broadcasts"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"296a9acf-f134-410d-9c58-8cfb6007b883","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Broadcast\",\n  \"number_id\": 1,\n  \"package_count\": 10,\n  \"message\": \"Broadcast Message\",\n  \"media_url\": [\n    \"https://test.com/test.png\",\n    \"https://test.com/test.png\"\n  ],\n  \"send_at\": \"1987-07-08\",\n  \"is_draft\": false,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"deserunt ullamco consequat irure\",\n      \"non occaecat\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        -91553498,\n        -4946053\n      ],\n      \"contacts\": [\n        63536036,\n        -89390074\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        -70285459,\n        -34541668\n      ]\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//broadcasts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 80178087,\n  \"organization_id\": -71478749,\n  \"owner_id\": \"ipsum\",\n  \"number_id\": \"dolore elit consequat\",\n  \"team_id\": \"ut nostrud Ut\",\n  \"is_send_now\": \"ad fugiat mollit\",\n  \"name\": \"labore Lore\",\n  \"status\": \"exercitation fugiat dolore\",\n  \"created_at\": \"Lorem proident cupidatat do laboris\",\n  \"updated_at\": \"ullamco fugiat tempor Duis\",\n  \"sent_at\": \"aute ea ut non\",\n  \"send_at\": \"nisi sed occaecat dolore\",\n  \"contacts\": [\n    {\n      \"id\": -37779606,\n      \"owner_id\": -94866046,\n      \"color\": \"cupidatat volup\",\n      \"first_name\": \"enim aliquip proident\",\n      \"last_name\": \"deserunt amet\",\n      \"full_name\": \"occaecat magna do in\",\n      \"email\": \"consectetur eu minim sit\",\n      \"photo_url\": \"vol\",\n      \"number\": \"dolore\",\n      \"country\": \"L\",\n      \"country_calling_code\": \"ut sed\",\n      \"national_number\": \"dolor commodo\",\n      \"typeted_number\": \"dolore in\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"minim culpa proident\",\n      \"opt_in_request_at\": \"occaecat laboris sint\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -81248821\n        },\n        {\n          \"number_id\": -42401639\n        }\n      ],\n      \"opt_in_at\": \"in proident sint sit\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -18167386,\n          \"number_id\": -89385843,\n          \"name\": \"ad consectetur amet deserunt eu\",\n          \"disabled\": false,\n          \"timestamp\": \"aute occaecat veniam minim\",\n          \"value\": false\n        },\n        {\n          \"id\": -84294363,\n          \"number_id\": 62893858,\n          \"name\": \"est id enim sunt in\",\n          \"disabled\": true,\n          \"timestamp\": \"in\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"veniam consequat\",\n      \"updated_at\": \"est\",\n      \"integration_vendor_id\": -8146057,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -38261194,\n          \"key\": \"ea laborum\",\n          \"name\": \"nisi in tempor occaecat laborum\",\n          \"photo_url\": \"id deserunt\"\n        },\n        {\n          \"id\": -50294924,\n          \"key\": \"nostrud ullamco enim laboris\",\n          \"name\": \"laborum Lorem in officia\",\n          \"photo_url\": \"in ullamco in minim reprehenderit\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -40516514,\n          \"custom_field_id\": 94304677,\n          \"contact_id\": -81781043,\n          \"field_key\": \"Duis aliquip cupidat\",\n          \"organization_id\": 23825756,\n          \"text\": \"Excepteur\",\n          \"number\": -47087871,\n          \"date\": \"Excepteur\",\n          \"created_at\": \"Ut ad fugiat\",\n          \"updated_at\": \"dolor eu elit dolore\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 38251883,\n          \"custom_field_id\": 32439070,\n          \"contact_id\": -60059890,\n          \"field_key\": \"commodo incididunt ipsum\",\n          \"organization_id\": -75225012,\n          \"text\": \"in\",\n          \"number\": 21165593,\n          \"date\": \"exercitation reprehenderit sit anim\",\n          \"created_at\": \"occaecat irure labore\",\n          \"updated_at\": \"magna ut est\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -78000546,\n          \"name\": \"enim voluptate\",\n          \"label\": \"proident\",\n          \"created_at\": \"laborum pariatur esse sit irure\"\n        },\n        {\n          \"id\": -83120043,\n          \"name\": \"labore dolor\",\n          \"label\": \"id magna ut ut\",\n          \"created_at\": \"in fugiat ea minim\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -39961315,\n          \"text\": \"ipsum\",\n          \"created_at\": \"exercitation cupidatat id\",\n          \"updated_at\": \"cupidatat\"\n        },\n        {\n          \"id\": 55680341,\n          \"text\": \"consectetur veniam\",\n          \"created_at\": \"labore Duis id adipisicing et\",\n          \"updated_at\": \"veniam mollit\"\n        }\n      ]\n    },\n    {\n      \"id\": -67987651,\n      \"owner_id\": 27464346,\n      \"color\": \"commodo cupidatat non\",\n      \"first_name\": \"Ut consectetur\",\n      \"last_name\": \"enim\",\n      \"full_name\": \"eu\",\n      \"email\": \"in\",\n      \"photo_url\": \"ullamco labore\",\n      \"number\": \"culpa consequat sint\",\n      \"country\": \"eu\",\n      \"country_calling_code\": \"tempor in\",\n      \"national_number\": \"deserunt dolor commodo\",\n      \"typeted_number\": \"tempor consectetur sit incididunt\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"dolore mollit id nisi\",\n      \"opt_in_request_at\": \"ut dolor\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -53214618\n        },\n        {\n          \"number_id\": -58023354\n        }\n      ],\n      \"opt_in_at\": \"nisi occaecat aliquip\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -51905750,\n          \"number_id\": 45384195,\n          \"name\": \"quis id occaecat sunt\",\n          \"disabled\": false,\n          \"timestamp\": \"ipsum sunt officia dolor\",\n          \"value\": true\n        },\n        {\n          \"id\": 69090302,\n          \"number_id\": 99576859,\n          \"name\": \"labore dolor\",\n          \"disabled\": true,\n          \"timestamp\": \"elit deserunt commodo\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"culpa laboris anim qui\",\n      \"updated_at\": \"sit et\",\n      \"integration_vendor_id\": -56972543,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": -69624162,\n          \"key\": \"fugiat\",\n          \"name\": \"reprehenderit fugiat\",\n          \"photo_url\": \"ea adipisicing labore\"\n        },\n        {\n          \"id\": -19213515,\n          \"key\": \"eu adipisicing dolore deserunt laboris\",\n          \"name\": \"culpa eu\",\n          \"photo_url\": \"aute Dui\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 34154724,\n          \"custom_field_id\": 74871501,\n          \"contact_id\": 64392449,\n          \"field_key\": \"mollit Ut proident\",\n          \"organization_id\": 37514159,\n          \"text\": \"ex non\",\n          \"number\": -26672128,\n          \"date\": \"aute ad\",\n          \"created_at\": \"reprehenderit in proident\",\n          \"updated_at\": \"ut\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 21035863,\n          \"custom_field_id\": -97937360,\n          \"contact_id\": -15518972,\n          \"field_key\": \"qui nostrud\",\n          \"organization_id\": -13509384,\n          \"text\": \"ea\",\n          \"number\": -86101596,\n          \"date\": \"mollit pariatur exercitation elit commodo\",\n          \"created_at\": \"ipsum ven\",\n          \"updated_at\": \"dolore irure\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 44297805,\n          \"name\": \"cillum quis\",\n          \"label\": \"enim\",\n          \"created_at\": \"cillum quis\"\n        },\n        {\n          \"id\": 22106784,\n          \"name\": \"ad\",\n          \"label\": \"consectetur tempor et aliquip\",\n          \"created_at\": \"Excepteur dolore consequat fugiat nostrud\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 999462,\n          \"text\": \"veniam\",\n          \"created_at\": \"Ut aliqua \",\n          \"updated_at\": \"culpa consectetur ut aliquip\"\n        },\n        {\n          \"id\": -61130924,\n          \"text\": \"quis velit\",\n          \"created_at\": \"veniam dolor culpa dolor\",\n          \"updated_at\": \"laborum eiusmod ex\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"d6206d0f-8a26-4067-b1ff-d542d270d48b","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Broadcast\",\n  \"number_id\": 1,\n  \"package_count\": 10,\n  \"message\": \"Broadcast Message\",\n  \"media_url\": [\n    \"https://test.com/test.png\",\n    \"https://test.com/test.png\"\n  ],\n  \"send_at\": \"1987-07-08\",\n  \"is_draft\": false,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"deserunt ullamco consequat irure\",\n      \"non occaecat\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        -91553498,\n        -4946053\n      ],\n      \"contacts\": [\n        63536036,\n        -89390074\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        -70285459,\n        -34541668\n      ]\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//broadcasts"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"occaecat in est\",\n  \"code\": \"sint aliquip\",\n  \"amount\": \"Duis voluptate \"\n}"},{"id":"06bb65d4-f8f3-4a8c-9b11-72ce5858ed61","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Broadcast\",\n  \"number_id\": 1,\n  \"package_count\": 10,\n  \"message\": \"Broadcast Message\",\n  \"media_url\": [\n    \"https://test.com/test.png\",\n    \"https://test.com/test.png\"\n  ],\n  \"send_at\": \"1987-07-08\",\n  \"is_draft\": false,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"deserunt ullamco consequat irure\",\n      \"non occaecat\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        -91553498,\n        -4946053\n      ],\n      \"contacts\": [\n        63536036,\n        -89390074\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        -70285459,\n        -34541668\n      ]\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//broadcasts"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"640735df-1f84-482c-9591-c0652f2020ed","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Broadcast\",\n  \"number_id\": 1,\n  \"package_count\": 10,\n  \"message\": \"Broadcast Message\",\n  \"media_url\": [\n    \"https://test.com/test.png\",\n    \"https://test.com/test.png\"\n  ],\n  \"send_at\": \"1987-07-08\",\n  \"is_draft\": false,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"deserunt ullamco consequat irure\",\n      \"non occaecat\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        -91553498,\n        -4946053\n      ],\n      \"contacts\": [\n        63536036,\n        -89390074\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        -70285459,\n        -34541668\n      ]\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//broadcasts"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"occaecat in est\",\n  \"code\": \"sint aliquip\",\n  \"amount\": \"Duis voluptate \"\n}"}],"_postman_id":"6f8a2251-18cb-4a67-a4d7-e6963a56762e"},{"name":"Get broadcast","id":"2d99d88e-883f-4df1-a683-91d37d9d64fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/:id","description":"<p>Get broadcast</p>\n","urlObject":{"path":["broadcasts",":id"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"b4d43ae8-ea9c-40c2-94bb-17ff854e9871","description":{"content":"<p>(Required) The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"id"}]}},"response":[{"id":"de40c78e-bfc4-4a9e-a4eb-c84c70a9fdb0","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/:id","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts",":id"],"variable":[{"key":"id","value":"65893348","description":"(Required) The ID of the Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 80178087,\n  \"organization_id\": -71478749,\n  \"owner_id\": \"ipsum\",\n  \"number_id\": \"dolore elit consequat\",\n  \"team_id\": \"ut nostrud Ut\",\n  \"is_send_now\": \"ad fugiat mollit\",\n  \"name\": \"labore Lore\",\n  \"status\": \"exercitation fugiat dolore\",\n  \"created_at\": \"Lorem proident cupidatat do laboris\",\n  \"updated_at\": \"ullamco fugiat tempor Duis\",\n  \"sent_at\": \"aute ea ut non\",\n  \"send_at\": \"nisi sed occaecat dolore\",\n  \"contacts\": [\n    {\n      \"id\": -37779606,\n      \"owner_id\": -94866046,\n      \"color\": \"cupidatat volup\",\n      \"first_name\": \"enim aliquip proident\",\n      \"last_name\": \"deserunt amet\",\n      \"full_name\": \"occaecat magna do in\",\n      \"email\": \"consectetur eu minim sit\",\n      \"photo_url\": \"vol\",\n      \"number\": \"dolore\",\n      \"country\": \"L\",\n      \"country_calling_code\": \"ut sed\",\n      \"national_number\": \"dolor commodo\",\n      \"typeted_number\": \"dolore in\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"minim culpa proident\",\n      \"opt_in_request_at\": \"occaecat laboris sint\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -81248821\n        },\n        {\n          \"number_id\": -42401639\n        }\n      ],\n      \"opt_in_at\": \"in proident sint sit\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -18167386,\n          \"number_id\": -89385843,\n          \"name\": \"ad consectetur amet deserunt eu\",\n          \"disabled\": false,\n          \"timestamp\": \"aute occaecat veniam minim\",\n          \"value\": false\n        },\n        {\n          \"id\": -84294363,\n          \"number_id\": 62893858,\n          \"name\": \"est id enim sunt in\",\n          \"disabled\": true,\n          \"timestamp\": \"in\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"veniam consequat\",\n      \"updated_at\": \"est\",\n      \"integration_vendor_id\": -8146057,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -38261194,\n          \"key\": \"ea laborum\",\n          \"name\": \"nisi in tempor occaecat laborum\",\n          \"photo_url\": \"id deserunt\"\n        },\n        {\n          \"id\": -50294924,\n          \"key\": \"nostrud ullamco enim laboris\",\n          \"name\": \"laborum Lorem in officia\",\n          \"photo_url\": \"in ullamco in minim reprehenderit\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -40516514,\n          \"custom_field_id\": 94304677,\n          \"contact_id\": -81781043,\n          \"field_key\": \"Duis aliquip cupidat\",\n          \"organization_id\": 23825756,\n          \"text\": \"Excepteur\",\n          \"number\": -47087871,\n          \"date\": \"Excepteur\",\n          \"created_at\": \"Ut ad fugiat\",\n          \"updated_at\": \"dolor eu elit dolore\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 38251883,\n          \"custom_field_id\": 32439070,\n          \"contact_id\": -60059890,\n          \"field_key\": \"commodo incididunt ipsum\",\n          \"organization_id\": -75225012,\n          \"text\": \"in\",\n          \"number\": 21165593,\n          \"date\": \"exercitation reprehenderit sit anim\",\n          \"created_at\": \"occaecat irure labore\",\n          \"updated_at\": \"magna ut est\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -78000546,\n          \"name\": \"enim voluptate\",\n          \"label\": \"proident\",\n          \"created_at\": \"laborum pariatur esse sit irure\"\n        },\n        {\n          \"id\": -83120043,\n          \"name\": \"labore dolor\",\n          \"label\": \"id magna ut ut\",\n          \"created_at\": \"in fugiat ea minim\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -39961315,\n          \"text\": \"ipsum\",\n          \"created_at\": \"exercitation cupidatat id\",\n          \"updated_at\": \"cupidatat\"\n        },\n        {\n          \"id\": 55680341,\n          \"text\": \"consectetur veniam\",\n          \"created_at\": \"labore Duis id adipisicing et\",\n          \"updated_at\": \"veniam mollit\"\n        }\n      ]\n    },\n    {\n      \"id\": -67987651,\n      \"owner_id\": 27464346,\n      \"color\": \"commodo cupidatat non\",\n      \"first_name\": \"Ut consectetur\",\n      \"last_name\": \"enim\",\n      \"full_name\": \"eu\",\n      \"email\": \"in\",\n      \"photo_url\": \"ullamco labore\",\n      \"number\": \"culpa consequat sint\",\n      \"country\": \"eu\",\n      \"country_calling_code\": \"tempor in\",\n      \"national_number\": \"deserunt dolor commodo\",\n      \"typeted_number\": \"tempor consectetur sit incididunt\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"dolore mollit id nisi\",\n      \"opt_in_request_at\": \"ut dolor\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -53214618\n        },\n        {\n          \"number_id\": -58023354\n        }\n      ],\n      \"opt_in_at\": \"nisi occaecat aliquip\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -51905750,\n          \"number_id\": 45384195,\n          \"name\": \"quis id occaecat sunt\",\n          \"disabled\": false,\n          \"timestamp\": \"ipsum sunt officia dolor\",\n          \"value\": true\n        },\n        {\n          \"id\": 69090302,\n          \"number_id\": 99576859,\n          \"name\": \"labore dolor\",\n          \"disabled\": true,\n          \"timestamp\": \"elit deserunt commodo\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"culpa laboris anim qui\",\n      \"updated_at\": \"sit et\",\n      \"integration_vendor_id\": -56972543,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": -69624162,\n          \"key\": \"fugiat\",\n          \"name\": \"reprehenderit fugiat\",\n          \"photo_url\": \"ea adipisicing labore\"\n        },\n        {\n          \"id\": -19213515,\n          \"key\": \"eu adipisicing dolore deserunt laboris\",\n          \"name\": \"culpa eu\",\n          \"photo_url\": \"aute Dui\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 34154724,\n          \"custom_field_id\": 74871501,\n          \"contact_id\": 64392449,\n          \"field_key\": \"mollit Ut proident\",\n          \"organization_id\": 37514159,\n          \"text\": \"ex non\",\n          \"number\": -26672128,\n          \"date\": \"aute ad\",\n          \"created_at\": \"reprehenderit in proident\",\n          \"updated_at\": \"ut\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 21035863,\n          \"custom_field_id\": -97937360,\n          \"contact_id\": -15518972,\n          \"field_key\": \"qui nostrud\",\n          \"organization_id\": -13509384,\n          \"text\": \"ea\",\n          \"number\": -86101596,\n          \"date\": \"mollit pariatur exercitation elit commodo\",\n          \"created_at\": \"ipsum ven\",\n          \"updated_at\": \"dolore irure\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 44297805,\n          \"name\": \"cillum quis\",\n          \"label\": \"enim\",\n          \"created_at\": \"cillum quis\"\n        },\n        {\n          \"id\": 22106784,\n          \"name\": \"ad\",\n          \"label\": \"consectetur tempor et aliquip\",\n          \"created_at\": \"Excepteur dolore consequat fugiat nostrud\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 999462,\n          \"text\": \"veniam\",\n          \"created_at\": \"Ut aliqua \",\n          \"updated_at\": \"culpa consectetur ut aliquip\"\n        },\n        {\n          \"id\": -61130924,\n          \"text\": \"quis velit\",\n          \"created_at\": \"veniam dolor culpa dolor\",\n          \"updated_at\": \"laborum eiusmod ex\"\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"2d99d88e-883f-4df1-a683-91d37d9d64fd"},{"name":"Delete broadcast","id":"130fa02a-63b2-40e0-8380-ac94500da1b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/:id","description":"<p>Delete broadcast</p>\n","urlObject":{"path":["broadcasts",":id"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"b626e58d-b107-465d-877e-d550bc149515","description":{"content":"<p>(Required) The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"id"}]}},"response":[{"id":"01e25369-1fbc-4797-9cb8-489a20b94220","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/:id","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts",":id"],"variable":[{"key":"id","value":"65893348","description":"(Required) The ID of the Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"eiusmod dolor\"\n}"},{"id":"051d9625-8417-4ee3-95d8-e5de25d02ad4","name":"Error","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/:id","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts",":id"],"variable":[{"key":"id","value":"65893348","description":"(Required) The ID of the Broadcast"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"aute sit\"\n}"}],"_postman_id":"130fa02a-63b2-40e0-8380-ac94500da1b1"},{"name":"Get failed broadcasts","id":"e2ec9469-0ab4-4067-aa87-2f120f637589","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/failed/:broadcastId","description":"<p>Get failed broadcasts</p>\n","urlObject":{"path":["broadcasts","failed",":broadcastId"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"26ad0bff-7c45-4992-9dd5-a73883e8cfc6","description":{"content":"<p>(Required) The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"broadcastId"}]}},"response":[{"id":"5a1b8e88-04b7-4f63-af90-5a999632954d","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/failed/:broadcastId","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","failed",":broadcastId"],"variable":[{"key":"broadcastId","value":"65893348","description":"(Required) The ID of the Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": -84053589\n  },\n  {\n    \"id\": -47593195\n  }\n]"}],"_postman_id":"e2ec9469-0ab4-4067-aa87-2f120f637589"},{"name":"Get all broadcasts filters","id":"4b88abbd-2ff1-45b9-83f8-f2e21fadf87e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/filters","description":"<p>Get all broadcasts filters</p>\n","urlObject":{"path":["broadcasts","filters"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"156345d6-f3ab-4dbb-9805-17ef27f928fc","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/filters"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4b88abbd-2ff1-45b9-83f8-f2e21fadf87e"},{"name":"Broadcast test","id":"f95cd951-0b0f-4f87-9c14-f9bbe3c9db92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/test?number=laborum&number_id=-46945205&message=laborum&media_url[]=incididunt laboris ea elit&media_url[]=nisi","description":"<p>Broadcast test</p>\n","urlObject":{"path":["broadcasts","test"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Number</p>\n","type":"text/plain"},"key":"number","value":"laborum"},{"description":{"content":"<p>(Required) The ID of the Number</p>\n","type":"text/plain"},"key":"number_id","value":"-46945205"},{"description":{"content":"<p>Message</p>\n","type":"text/plain"},"key":"message","value":"laborum"},{"description":{"content":"<p>The url of the media</p>\n","type":"text/plain"},"key":"media_url[]","value":"incididunt laboris ea elit"},{"description":{"content":"<p>The url of the media</p>\n","type":"text/plain"},"key":"media_url[]","value":"nisi"}],"variable":[]}},"response":[{"id":"b7adae96-39cc-4467-a88b-db83a6f2335c","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/test?number=laborum&number_id=-46945205&message=laborum&media_url[]=commodo veniam dolore est&media_url[]=dolore magna ut","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","test"],"query":[{"key":"number","value":"laborum"},{"key":"number_id","value":"-46945205"},{"key":"message","value":"laborum"},{"key":"media_url[]","value":"commodo veniam dolore est"},{"key":"media_url[]","value":"dolore magna ut"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"Ut ullamco\",\n  \"message\": \"est exercitation quis laboris veniam\"\n}"}],"_postman_id":"f95cd951-0b0f-4f87-9c14-f9bbe3c9db92"},{"name":"Update broadcast","id":"4dacecc2-4030-45d3-ac1a-b74992f99b72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/:broadcastId?id=-46945205&name=laborum&number_id=-46945205&message=laborum&media_url[]=incididunt laboris ea elit&media_url[]=nisi&tags[]=incididunt laboris ea elit&tags[]=nisi&send_at=2016-10-19&send_now=true&filters=laborum&status=laborum","description":"<p>Update broadcast</p>\n","urlObject":{"path":["broadcasts",":broadcastId"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) The ID of the Broadcast</p>\n","type":"text/plain"},"key":"id","value":"-46945205"},{"description":{"content":"<p>Name</p>\n","type":"text/plain"},"key":"name","value":"laborum"},{"description":{"content":"<p>(Required) The ID of the Number</p>\n","type":"text/plain"},"key":"number_id","value":"-46945205"},{"description":{"content":"<p>Message</p>\n","type":"text/plain"},"key":"message","value":"laborum"},{"description":{"content":"<p>The url of the media</p>\n","type":"text/plain"},"key":"media_url[]","value":"incididunt laboris ea elit"},{"description":{"content":"<p>The url of the media</p>\n","type":"text/plain"},"key":"media_url[]","value":"nisi"},{"description":{"content":"<p>Tags</p>\n","type":"text/plain"},"key":"tags[]","value":"incididunt laboris ea elit"},{"description":{"content":"<p>Tags</p>\n","type":"text/plain"},"key":"tags[]","value":"nisi"},{"description":{"content":"<p>Date of send</p>\n","type":"text/plain"},"key":"send_at","value":"2016-10-19"},{"description":{"content":"<p>To send now?</p>\n","type":"text/plain"},"key":"send_now","value":"true"},{"description":{"content":"<p>Filters</p>\n","type":"text/plain"},"key":"filters","value":"laborum"},{"description":{"content":"<p>Status</p>\n","type":"text/plain"},"key":"status","value":"laborum"}],"variable":[{"id":"81490682-bdb8-44c1-bd66-acdf677b2911","description":{"content":"<p>(Required) The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"broadcastId"}]}},"response":[{"id":"2201b9d0-1749-4988-a61f-f26733b7aad4","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/:broadcastId?id=-46945205&name=laborum&number_id=-46945205&message=laborum&media_url[]=commodo veniam dolore est&media_url[]=dolore magna ut&tags[]=commodo veniam dolore est&tags[]=dolore magna ut&send_at=2016-10-19&send_now=true&filters=laborum&status=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts",":broadcastId"],"query":[{"key":"id","value":"-46945205"},{"key":"name","value":"laborum"},{"key":"number_id","value":"-46945205"},{"key":"message","value":"laborum"},{"key":"media_url[]","value":"commodo veniam dolore est"},{"key":"media_url[]","value":"dolore magna ut"},{"key":"tags[]","value":"commodo veniam dolore est"},{"key":"tags[]","value":"dolore magna ut"},{"key":"send_at","value":"2016-10-19"},{"key":"send_now","value":"true"},{"key":"filters","value":"laborum"},{"key":"status","value":"laborum"}],"variable":[{"key":"broadcastId","value":"65893348","description":"(Required) The ID of the Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 80178087,\n  \"organization_id\": -71478749,\n  \"owner_id\": \"ipsum\",\n  \"number_id\": \"dolore elit consequat\",\n  \"team_id\": \"ut nostrud Ut\",\n  \"is_send_now\": \"ad fugiat mollit\",\n  \"name\": \"labore Lore\",\n  \"status\": \"exercitation fugiat dolore\",\n  \"created_at\": \"Lorem proident cupidatat do laboris\",\n  \"updated_at\": \"ullamco fugiat tempor Duis\",\n  \"sent_at\": \"aute ea ut non\",\n  \"send_at\": \"nisi sed occaecat dolore\",\n  \"contacts\": [\n    {\n      \"id\": -37779606,\n      \"owner_id\": -94866046,\n      \"color\": \"cupidatat volup\",\n      \"first_name\": \"enim aliquip proident\",\n      \"last_name\": \"deserunt amet\",\n      \"full_name\": \"occaecat magna do in\",\n      \"email\": \"consectetur eu minim sit\",\n      \"photo_url\": \"vol\",\n      \"number\": \"dolore\",\n      \"country\": \"L\",\n      \"country_calling_code\": \"ut sed\",\n      \"national_number\": \"dolor commodo\",\n      \"typeted_number\": \"dolore in\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"minim culpa proident\",\n      \"opt_in_request_at\": \"occaecat laboris sint\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -81248821\n        },\n        {\n          \"number_id\": -42401639\n        }\n      ],\n      \"opt_in_at\": \"in proident sint sit\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -18167386,\n          \"number_id\": -89385843,\n          \"name\": \"ad consectetur amet deserunt eu\",\n          \"disabled\": false,\n          \"timestamp\": \"aute occaecat veniam minim\",\n          \"value\": false\n        },\n        {\n          \"id\": -84294363,\n          \"number_id\": 62893858,\n          \"name\": \"est id enim sunt in\",\n          \"disabled\": true,\n          \"timestamp\": \"in\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"veniam consequat\",\n      \"updated_at\": \"est\",\n      \"integration_vendor_id\": -8146057,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": -38261194,\n          \"key\": \"ea laborum\",\n          \"name\": \"nisi in tempor occaecat laborum\",\n          \"photo_url\": \"id deserunt\"\n        },\n        {\n          \"id\": -50294924,\n          \"key\": \"nostrud ullamco enim laboris\",\n          \"name\": \"laborum Lorem in officia\",\n          \"photo_url\": \"in ullamco in minim reprehenderit\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": -40516514,\n          \"custom_field_id\": 94304677,\n          \"contact_id\": -81781043,\n          \"field_key\": \"Duis aliquip cupidat\",\n          \"organization_id\": 23825756,\n          \"text\": \"Excepteur\",\n          \"number\": -47087871,\n          \"date\": \"Excepteur\",\n          \"created_at\": \"Ut ad fugiat\",\n          \"updated_at\": \"dolor eu elit dolore\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 38251883,\n          \"custom_field_id\": 32439070,\n          \"contact_id\": -60059890,\n          \"field_key\": \"commodo incididunt ipsum\",\n          \"organization_id\": -75225012,\n          \"text\": \"in\",\n          \"number\": 21165593,\n          \"date\": \"exercitation reprehenderit sit anim\",\n          \"created_at\": \"occaecat irure labore\",\n          \"updated_at\": \"magna ut est\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -78000546,\n          \"name\": \"enim voluptate\",\n          \"label\": \"proident\",\n          \"created_at\": \"laborum pariatur esse sit irure\"\n        },\n        {\n          \"id\": -83120043,\n          \"name\": \"labore dolor\",\n          \"label\": \"id magna ut ut\",\n          \"created_at\": \"in fugiat ea minim\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -39961315,\n          \"text\": \"ipsum\",\n          \"created_at\": \"exercitation cupidatat id\",\n          \"updated_at\": \"cupidatat\"\n        },\n        {\n          \"id\": 55680341,\n          \"text\": \"consectetur veniam\",\n          \"created_at\": \"labore Duis id adipisicing et\",\n          \"updated_at\": \"veniam mollit\"\n        }\n      ]\n    },\n    {\n      \"id\": -67987651,\n      \"owner_id\": 27464346,\n      \"color\": \"commodo cupidatat non\",\n      \"first_name\": \"Ut consectetur\",\n      \"last_name\": \"enim\",\n      \"full_name\": \"eu\",\n      \"email\": \"in\",\n      \"photo_url\": \"ullamco labore\",\n      \"number\": \"culpa consequat sint\",\n      \"country\": \"eu\",\n      \"country_calling_code\": \"tempor in\",\n      \"national_number\": \"deserunt dolor commodo\",\n      \"typeted_number\": \"tempor consectetur sit incididunt\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"dolore mollit id nisi\",\n      \"opt_in_request_at\": \"ut dolor\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -53214618\n        },\n        {\n          \"number_id\": -58023354\n        }\n      ],\n      \"opt_in_at\": \"nisi occaecat aliquip\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": -51905750,\n          \"number_id\": 45384195,\n          \"name\": \"quis id occaecat sunt\",\n          \"disabled\": false,\n          \"timestamp\": \"ipsum sunt officia dolor\",\n          \"value\": true\n        },\n        {\n          \"id\": 69090302,\n          \"number_id\": 99576859,\n          \"name\": \"labore dolor\",\n          \"disabled\": true,\n          \"timestamp\": \"elit deserunt commodo\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"culpa laboris anim qui\",\n      \"updated_at\": \"sit et\",\n      \"integration_vendor_id\": -56972543,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": -69624162,\n          \"key\": \"fugiat\",\n          \"name\": \"reprehenderit fugiat\",\n          \"photo_url\": \"ea adipisicing labore\"\n        },\n        {\n          \"id\": -19213515,\n          \"key\": \"eu adipisicing dolore deserunt laboris\",\n          \"name\": \"culpa eu\",\n          \"photo_url\": \"aute Dui\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 34154724,\n          \"custom_field_id\": 74871501,\n          \"contact_id\": 64392449,\n          \"field_key\": \"mollit Ut proident\",\n          \"organization_id\": 37514159,\n          \"text\": \"ex non\",\n          \"number\": -26672128,\n          \"date\": \"aute ad\",\n          \"created_at\": \"reprehenderit in proident\",\n          \"updated_at\": \"ut\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 21035863,\n          \"custom_field_id\": -97937360,\n          \"contact_id\": -15518972,\n          \"field_key\": \"qui nostrud\",\n          \"organization_id\": -13509384,\n          \"text\": \"ea\",\n          \"number\": -86101596,\n          \"date\": \"mollit pariatur exercitation elit commodo\",\n          \"created_at\": \"ipsum ven\",\n          \"updated_at\": \"dolore irure\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 44297805,\n          \"name\": \"cillum quis\",\n          \"label\": \"enim\",\n          \"created_at\": \"cillum quis\"\n        },\n        {\n          \"id\": 22106784,\n          \"name\": \"ad\",\n          \"label\": \"consectetur tempor et aliquip\",\n          \"created_at\": \"Excepteur dolore consequat fugiat nostrud\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 999462,\n          \"text\": \"veniam\",\n          \"created_at\": \"Ut aliqua \",\n          \"updated_at\": \"culpa consectetur ut aliquip\"\n        },\n        {\n          \"id\": -61130924,\n          \"text\": \"quis velit\",\n          \"created_at\": \"veniam dolor culpa dolor\",\n          \"updated_at\": \"laborum eiusmod ex\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"24720031-9be3-457e-9b91-9c8bb2758ee8","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/:broadcastId?id=-46945205&name=laborum&number_id=-46945205&message=laborum&media_url[]=commodo veniam dolore est&media_url[]=dolore magna ut&tags[]=commodo veniam dolore est&tags[]=dolore magna ut&send_at=2016-10-19&send_now=true&filters=laborum&status=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts",":broadcastId"],"query":[{"key":"id","value":"-46945205"},{"key":"name","value":"laborum"},{"key":"number_id","value":"-46945205"},{"key":"message","value":"laborum"},{"key":"media_url[]","value":"commodo veniam dolore est"},{"key":"media_url[]","value":"dolore magna ut"},{"key":"tags[]","value":"commodo veniam dolore est"},{"key":"tags[]","value":"dolore magna ut"},{"key":"send_at","value":"2016-10-19"},{"key":"send_now","value":"true"},{"key":"filters","value":"laborum"},{"key":"status","value":"laborum"}],"variable":[{"key":"broadcastId","value":"65893348","description":"(Required) The ID of the Broadcast"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Du\",\n  \"code\": \"ullamco Duis esse labore\"\n}"},{"id":"22f9f40e-d903-47da-a0b1-63ee91b7ec95","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/:broadcastId?id=-46945205&name=laborum&number_id=-46945205&message=laborum&media_url[]=commodo veniam dolore est&media_url[]=dolore magna ut&tags[]=commodo veniam dolore est&tags[]=dolore magna ut&send_at=2016-10-19&send_now=true&filters=laborum&status=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts",":broadcastId"],"query":[{"key":"id","value":"-46945205"},{"key":"name","value":"laborum"},{"key":"number_id","value":"-46945205"},{"key":"message","value":"laborum"},{"key":"media_url[]","value":"commodo veniam dolore est"},{"key":"media_url[]","value":"dolore magna ut"},{"key":"tags[]","value":"commodo veniam dolore est"},{"key":"tags[]","value":"dolore magna ut"},{"key":"send_at","value":"2016-10-19"},{"key":"send_now","value":"true"},{"key":"filters","value":"laborum"},{"key":"status","value":"laborum"}],"variable":[{"key":"broadcastId","value":"65893348","description":"(Required) The ID of the Broadcast"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"}],"_postman_id":"4dacecc2-4030-45d3-ac1a-b74992f99b72"}],"id":"7de23c38-9a4d-4021-88f8-cea81990ef5e","_postman_id":"7de23c38-9a4d-4021-88f8-cea81990ef5e","description":""},{"name":"Broadcasts Recurring","item":[{"name":"Activate recurring template","id":"fd9d8753-79e0-4796-a5ae-6f8f2ca44d07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcast/active","description":"<p>Activate recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcast","active"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"8860ffad-4bdf-4971-a7d0-9feb04be41ac","description":{"content":"<p>(Required) The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"templateBroadcast"}]}},"response":[{"id":"3991387a-9cd7-4049-8835-b92c8b05c6fe","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcast/active","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","recurring",":templateBroadcast","active"],"variable":[{"key":"templateBroadcast","value":"65893348","description":"(Required) The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fd9d8753-79e0-4796-a5ae-6f8f2ca44d07"},{"name":"Delete recurring template","id":"e999a1d6-fd13-4435-bd6f-b23bf2fff9a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcast/delete","description":"<p>Delete recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcast","delete"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"6d50d555-681e-41bb-892b-33e4030e1dfa","description":{"content":"<p>(Required) The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"templateBroadcast"}]}},"response":[{"id":"f40a6fd9-39eb-4e0e-82b3-e202d5996196","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcast/delete","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","recurring",":templateBroadcast","delete"],"variable":[{"key":"templateBroadcast","value":"65893348","description":"(Required) The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e999a1d6-fd13-4435-bd6f-b23bf2fff9a8"},{"name":"Get all recurring broadcasts filters","id":"a2968969-f787-47be-b9e1-cd9040d17794","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/filters","description":"<p>Get all recurring broadcasts filters</p>\n","urlObject":{"path":["broadcasts","recurring","filters"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"3027d1ac-0904-412b-8e1c-2f9b7fb2c14b","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/filters"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a2968969-f787-47be-b9e1-cd9040d17794"},{"name":"Finish recurring template","id":"25f27c7b-75d3-4009-826e-b7d881bedc17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcast/finish","description":"<p>Finish recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcast","finish"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"ac4bab1f-e1c1-46c6-98b1-9307b409b895","description":{"content":"<p>(Required) The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"templateBroadcast"}]}},"response":[{"id":"ad018012-e61b-4807-bcce-a6a78afaa202","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcast/finish","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","recurring",":templateBroadcast","finish"],"variable":[{"key":"templateBroadcast","value":"65893348","description":"(Required) The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"25f27c7b-75d3-4009-826e-b7d881bedc17"},{"name":"Inactivate recurring template","id":"54a8da83-a1ea-4486-9a96-4923938140c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcast/inactive","description":"<p>Inactivate recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcast","inactive"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"a1411a62-c363-430f-8186-5f7d432f3d46","description":{"content":"<p>(Required) The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"templateBroadcast"}]}},"response":[{"id":"0ea66ee6-431c-4998-a7ab-4144cb78a914","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcast/inactive","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","recurring",":templateBroadcast","inactive"],"variable":[{"key":"templateBroadcast","value":"65893348","description":"(Required) The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"54a8da83-a1ea-4486-9a96-4923938140c0"},{"name":"Get all recurring templates","id":"840253f2-006a-4cf4-b1c1-0373dba7eba4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring?page=1&search=laborum&length=10","description":"<p>Get all recurring templates</p>\n","urlObject":{"path":["broadcasts","recurring"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The page of a collection to return.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The string to search for..</p>\n","type":"text/plain"},"key":"search","value":"laborum"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"length","value":"10"}],"variable":[]}},"response":[{"id":"49b27ce0-4f62-4fd5-b64a-1512d8acf30a","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring?page=1&search=laborum&length=10","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","recurring"],"query":[{"key":"page","value":"1"},{"key":"search","value":"laborum"},{"key":"length","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"840253f2-006a-4cf4-b1c1-0373dba7eba4"},{"name":"Rename recurring template","id":"070d80f3-1702-4b47-bcad-2d2015869b5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcast/rename?name=laborum","description":"<p>Rename recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcast","rename"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Name</p>\n","type":"text/plain"},"key":"name","value":"laborum"}],"variable":[{"id":"c949dc4d-44c2-486c-89ea-1e1655ffcb37","description":{"content":"<p>(Required) The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"templateBroadcast"}]}},"response":[{"id":"943ce52a-f19e-4afa-a9da-19b3a4b1cb04","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcast/rename?name=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","recurring",":templateBroadcast","rename"],"query":[{"key":"name","value":"laborum"}],"variable":[{"key":"templateBroadcast","value":"65893348","description":"(Required) The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"070d80f3-1702-4b47-bcad-2d2015869b5d"},{"name":"Get broadcasts list related to recurring template","id":"36437e90-e4be-417e-a323-67cabf763d33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcastId/details?page=1","description":"<p>Get broadcasts list related to recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcastId","details"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The page of a collection to return.</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[{"id":"1c0e1a90-43d2-46b7-ad0c-17bbc3a79793","description":{"content":"<p>(Required) The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"templateBroadcastId"}]}},"response":[{"id":"fbad0cea-f99f-4861-a4bc-161b3ecd8dcc","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//broadcasts/recurring/:templateBroadcastId/details?page=1","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["broadcasts","recurring",":templateBroadcastId","details"],"query":[{"key":"page","value":"1"}],"variable":[{"key":"templateBroadcastId","value":"65893348","description":"(Required) The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"36437e90-e4be-417e-a323-67cabf763d33"}],"id":"5def05e4-c038-472f-8c72-4dcd6b6e18bf","_postman_id":"5def05e4-c038-472f-8c72-4dcd6b6e18bf","description":""},{"name":"Contact Import","item":[{"name":"Upload file with contacts","id":"caccf435-4b1f-4232-adb0-97a2b5847877","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"<p>(Required) </p>\n","value":null}]},"url":"https://api.salesmessage.com/pub/v2.1//contacts/import/upload","description":"<p>Upload file with contacts. See example and file format here: <a href=\"https://help.salesmessage.com/en/articles/3192286-import-your-contacts\">https://help.salesmessage.com/en/articles/3192286-import-your-contacts</a></p>\n","urlObject":{"path":["contacts","import","upload"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"b786edf9-e441-4d50-9639-565e051f8c12","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) ","key":"file","type":"file"}]},"url":"https://api.salesmessage.com/pub/v2.1//contacts/import/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"firstRow\": [\n    \"consequat ut\",\n    \"aliqua exercitation elit\"\n  ],\n  \"previewRows\": [\n    \"sit ad eiusmod Lor\",\n    \"dolor Excepteur magna ut\"\n  ],\n  \"options\": [\n    {\n      \"key\": \"Ut aliquip proident sunt\",\n      \"name\": \"in tempor culpa nulla\"\n    },\n    {\n      \"key\": \"Ut nulla Lorem qui magna\",\n      \"name\": \"officia et Ut enim\"\n    }\n  ],\n  \"autoDetectedRowOptions\": [\n    {\n      \"email\": \"mollit ad tempor\",\n      \"number\": \"veniam tempor dolor non\"\n    },\n    {\n      \"email\": \"id ut aute qui laborum\",\n      \"number\": \"qui nulla labore dolore elit\"\n    }\n  ]\n}"}],"_postman_id":"caccf435-4b1f-4232-adb0-97a2b5847877"},{"name":"Update contacts imports","id":"92c349ed-2cdb-4d48-9128-93c8aed8ef49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"list\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//contacts/import/list","description":"<p>Update contacts imports</p>\n","urlObject":{"path":["contacts","import","list"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"46557b14-ccaf-4c93-82d5-aa69066bfd29","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"list\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//contacts/import/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"firstRow\": [\n    \"consequat ut\",\n    \"aliqua exercitation elit\"\n  ],\n  \"previewRows\": [\n    \"sit ad eiusmod Lor\",\n    \"dolor Excepteur magna ut\"\n  ],\n  \"options\": [\n    {\n      \"key\": \"Ut aliquip proident sunt\",\n      \"name\": \"in tempor culpa nulla\"\n    },\n    {\n      \"key\": \"Ut nulla Lorem qui magna\",\n      \"name\": \"officia et Ut enim\"\n    }\n  ],\n  \"autoDetectedRowOptions\": [\n    {\n      \"email\": \"mollit ad tempor\",\n      \"number\": \"veniam tempor dolor non\"\n    },\n    {\n      \"email\": \"id ut aute qui laborum\",\n      \"number\": \"qui nulla labore dolore elit\"\n    }\n  ]\n}"}],"_postman_id":"92c349ed-2cdb-4d48-9128-93c8aed8ef49"},{"name":"Delete contacts import","id":"bed9a8d2-17e5-45b9-afbf-94f8126627b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/import/:contactImport","description":"<p>Delete contacts import</p>\n","urlObject":{"path":["contacts","import",":contactImport"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"ecddf93c-1016-420f-808e-ce051548f56e","description":{"content":"<p>(Required) The ID of the Contact Import</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"contactImport"}]}},"response":[{"id":"2f6770f3-b8d0-4b72-851a-8fe726a6b3a3","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/import/:contactImport","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","import",":contactImport"],"variable":[{"key":"contactImport","value":"65893348","description":"(Required) The ID of the Contact Import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"[]\""}],"_postman_id":"bed9a8d2-17e5-45b9-afbf-94f8126627b6"},{"name":"Get contact contacts import progress","id":"ac3263e0-a8b0-4283-9848-a56ff0b45bb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/import/progress/:contactImport","description":"<p>Get contact contacts import progress</p>\n","urlObject":{"path":["contacts","import","progress",":contactImport"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"1f868b35-175e-46a0-930b-52c7c4d428bb","description":{"content":"<p>(Required) The ID of the Contact Import</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"contactImport"}]}},"response":[{"id":"c956e4d2-88b0-48e7-94b4-b53812f4febb","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//contacts/import/progress/:contactImport","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["contacts","import","progress",":contactImport"],"variable":[{"key":"contactImport","value":"65893348","description":"(Required) The ID of the Contact Import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -35877755\n}"}],"_postman_id":"ac3263e0-a8b0-4283-9848-a56ff0b45bb7"},{"name":"Get contacts import status","id":"2d48bf81-34b4-4045-b69c-ab8d96ab9770","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/import/status","description":"<p>Get contacts import status</p>\n","urlObject":{"path":["contacts","import","status"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"d3b70a09-f60e-4593-a820-a091c96e93e2","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//contacts/import/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"allowed\": false\n}"}],"_postman_id":"2d48bf81-34b4-4045-b69c-ab8d96ab9770"}],"id":"4eb32978-4074-40d5-8fda-a74457fcb3ce","_postman_id":"4eb32978-4074-40d5-8fda-a74457fcb3ce","description":""},{"name":"Conversions","item":[{"name":"Get list conversions","id":"e7233107-894b-46be-aed6-9afb514e7352","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversions?sortOrder=desc&sortBy=laborum&page=-46945205&length=-46945205&search=laborum","description":"<p>Get list conversions</p>\n","urlObject":{"path":["conversions"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Sorting order</p>\n","type":"text/plain"},"key":"sortOrder","value":"desc"},{"description":{"content":"<p>Sort by field...</p>\n","type":"text/plain"},"key":"sortBy","value":"laborum"},{"description":{"content":"<p>Page</p>\n","type":"text/plain"},"key":"page","value":"-46945205"},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"length","value":"-46945205"},{"description":{"content":"<p>Filter by...</p>\n","type":"text/plain"},"key":"search","value":"laborum"}],"variable":[]}},"response":[{"id":"031a661d-64cb-4f97-a3c3-2b178a4e6827","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversions?sortOrder=desc&sortBy=laborum&page=-46945205&length=-46945205&search=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversions"],"query":[{"key":"sortOrder","value":"desc"},{"key":"sortBy","value":"laborum"},{"key":"page","value":"-46945205"},{"key":"length","value":"-46945205"},{"key":"search","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 74341813,\n    \"name\": \"non velit sunt adipisicing consectetur\",\n    \"currency\": \"esse\",\n    \"verified_at\": \"exercitation proident\",\n    \"default_value\": \"Ut deserunt sed offic\",\n    \"conversion_url\": \"non\",\n    \"conversion_attribution\": \"officia ea aute non\",\n    \"analytics\": {}\n  },\n  {\n    \"id\": 58744064,\n    \"name\": \"eiusmod do enim\",\n    \"currency\": \"enim reprehenderit amet proident\",\n    \"verified_at\": \"consectetur consequat qui voluptate anim\",\n    \"default_value\": \"enim ex ipsum\",\n    \"conversion_url\": \"la\",\n    \"conversion_attribution\": \"incididunt in tempor\",\n    \"analytics\": {}\n  }\n]"}],"_postman_id":"e7233107-894b-46be-aed6-9afb514e7352"},{"name":"Create conversion","id":"c314e6fa-c930-4bc6-8dda-3013461a5e5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversions?name=laborum&conversion_url=laborum&currency=laborum&conversion_attribution=-46945205&default_value=-46945205","description":"<p>Create conversion</p>\n","urlObject":{"path":["conversions"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Conversion name</p>\n","type":"text/plain"},"key":"name","value":"laborum"},{"description":{"content":"<p>(Required) Conversion url</p>\n","type":"text/plain"},"key":"conversion_url","value":"laborum"},{"description":{"content":"<p>(Required) Currency</p>\n","type":"text/plain"},"key":"currency","value":"laborum"},{"description":{"content":"<p>(Required) Conversion attribution</p>\n","type":"text/plain"},"key":"conversion_attribution","value":"-46945205"},{"description":{"content":"<p>Conversion default value</p>\n","type":"text/plain"},"key":"default_value","value":"-46945205"}],"variable":[]}},"response":[{"id":"26430608-7376-4fa6-9856-893ae4165f33","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversions?name=laborum&conversion_url=laborum&currency=laborum&conversion_attribution=-46945205&default_value=-46945205","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversions"],"query":[{"key":"name","value":"laborum"},{"key":"conversion_url","value":"laborum"},{"key":"currency","value":"laborum"},{"key":"conversion_attribution","value":"-46945205"},{"key":"default_value","value":"-46945205"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -97308147,\n  \"name\": \"ea consectetur\",\n  \"currency\": \"q\",\n  \"verified_at\": \"cupidatat deserunt\",\n  \"default_value\": \"minim officia proident dolor do\",\n  \"conversion_url\": \"eiusmod veniam minim\",\n  \"conversion_attribution\": \"non ullamco\",\n  \"analytics\": {}\n}"}],"_postman_id":"c314e6fa-c930-4bc6-8dda-3013461a5e5f"},{"name":"Get conversion","id":"56b29010-f178-48b2-83b8-c76f969995df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversions/:id","description":"<p>Get conversion</p>\n","urlObject":{"path":["conversions",":id"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"26d41abe-83f0-4b05-ae2b-108f5dbf6cd3","description":{"content":"<p>(Required) The ID of the Conversion</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"e1b8875b-af04-4e6a-a3d9-1d74986a520e","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversions/:id","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversions",":id"],"variable":[{"key":"id","value":"","description":"(Required) The ID of the Conversion"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -97308147,\n  \"name\": \"ea consectetur\",\n  \"currency\": \"q\",\n  \"verified_at\": \"cupidatat deserunt\",\n  \"default_value\": \"minim officia proident dolor do\",\n  \"conversion_url\": \"eiusmod veniam minim\",\n  \"conversion_attribution\": \"non ullamco\",\n  \"analytics\": {}\n}"}],"_postman_id":"56b29010-f178-48b2-83b8-c76f969995df"},{"name":"Update conversion","id":"13690a74-22bc-4672-95a1-0f790fbe20d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//conversions/:id?name=laborum&conversion_url=laborum&currency=laborum&conversion_attribution=-46945205&default_value=-46945205","description":"<p>Update conversion</p>\n","urlObject":{"path":["conversions",":id"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Conversion name</p>\n","type":"text/plain"},"key":"name","value":"laborum"},{"description":{"content":"<p>(Required) Conversion url</p>\n","type":"text/plain"},"key":"conversion_url","value":"laborum"},{"description":{"content":"<p>(Required) Currency</p>\n","type":"text/plain"},"key":"currency","value":"laborum"},{"description":{"content":"<p>(Required) Conversion attribution</p>\n","type":"text/plain"},"key":"conversion_attribution","value":"-46945205"},{"description":{"content":"<p>Conversion default value</p>\n","type":"text/plain"},"key":"default_value","value":"-46945205"}],"variable":[{"id":"ad16bd3b-ec4b-4823-b196-1203d0d9ab45","description":{"content":"<p>(Required) The ID of the Conversion</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"1aef553b-e602-4165-b00c-e02b48210f3c","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversions/:id?name=laborum&conversion_url=laborum&currency=laborum&conversion_attribution=-46945205&default_value=-46945205","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversions",":id"],"query":[{"key":"name","value":"laborum"},{"key":"conversion_url","value":"laborum"},{"key":"currency","value":"laborum"},{"key":"conversion_attribution","value":"-46945205"},{"key":"default_value","value":"-46945205"}],"variable":[{"key":"id","value":"","description":"(Required) The ID of the Conversion"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -35877755\n}"}],"_postman_id":"13690a74-22bc-4672-95a1-0f790fbe20d4"},{"name":"Remove conversion","id":"556d04da-2cce-4894-9ee0-2ad4f49d893e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.1//conversions/:id","description":"<p>Remove conversion</p>\n","urlObject":{"path":["conversions",":id"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"de6924f4-298c-4f36-83af-8e364b6c5941","description":{"content":"<p>(Required) The ID of the Conversion</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"12bb2c4b-badb-42ff-9776-e0b1728deaae","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//conversions/:id","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["conversions",":id"],"variable":[{"key":"id","value":"","description":"(Required) The ID of the Conversion"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"556d04da-2cce-4894-9ee0-2ad4f49d893e"}],"id":"59e54fc4-c32c-4fdb-92e6-c860a5c46d0a","_postman_id":"59e54fc4-c32c-4fdb-92e6-c860a5c46d0a","description":""},{"name":"Groups","item":[{"name":"Remove client team mapping","id":"6d1e9838-9242-4376-a979-fb5bc705c158","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.1//groups/client-mapping/:organization","description":"<p>Remove client team mapping</p>\n","urlObject":{"path":["groups","client-mapping",":organization"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"f4d5aded-ec1f-4bb1-b296-0f3dbde02bab","description":{"content":"<p>(Required) The ID of the Organization</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"organization"}]}},"response":[{"id":"9ecf512b-47cd-4db0-9b89-123b8b226996","name":"Response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//groups/client-mapping/:organization","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["groups","client-mapping",":organization"],"variable":[{"key":"organization","value":"-46945205","description":"(Required) The ID of the Organization"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6d1e9838-9242-4376-a979-fb5bc705c158"},{"name":"Get groups integrations teams","id":"ebd597e7-7687-425e-8450-b14b440e82b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//groups/integration-teams?organization=-46945205","description":"<p>Get groups integrations teams</p>\n","urlObject":{"path":["groups","integration-teams"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) The ID of the Organization</p>\n","type":"text/plain"},"key":"organization","value":"-46945205"}],"variable":[]}},"response":[{"id":"a13efa2b-92ce-4a24-9388-b54be6114a30","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//groups/integration-teams?organization=-46945205","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["groups","integration-teams"],"query":[{"key":"organization","value":"-46945205"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": -64436825,\n    \"name\": \"deserunt\"\n  },\n  {\n    \"id\": 10825267,\n    \"name\": \"ut reprehenderit\"\n  }\n]"}],"_postman_id":"ebd597e7-7687-425e-8450-b14b440e82b4"},{"name":"Map client to teams","id":"f10f13a6-0e33-4338-b55d-b28cd42ecc63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//groups/map-client/:organization?integration_team_ids[]=-46945205","description":"<p>Map client to teams</p>\n","urlObject":{"path":["groups","map-client",":organization"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) The IDs of the Teams</p>\n","type":"text/plain"},"key":"integration_team_ids[]","value":"-46945205"}],"variable":[{"id":"cc5dcf22-14c1-46bd-932a-7797ff5a213a","description":{"content":"<p>(Required) The ID of the Organization</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"organization"}]}},"response":[{"id":"d24c32ae-7cfd-44a2-92e2-8fac3b5b8650","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//groups/map-client/:organization?integration_team_ids[]=-46945205","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["groups","map-client",":organization"],"query":[{"key":"integration_team_ids[]","value":"-46945205"}],"variable":[{"key":"organization","value":"-46945205","description":"(Required) The ID of the Organization"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"ut dolor\",\n  \"info\": \"sint\"\n}"}],"_postman_id":"f10f13a6-0e33-4338-b55d-b28cd42ecc63"},{"name":"Refresh teams contacts","id":"f969a8b9-f654-4ee9-9848-644ef40f1997","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//groups/refresh-integration-teams-contacts/:organizationId","description":"<p>Refresh teams contacts</p>\n","urlObject":{"path":["groups","refresh-integration-teams-contacts",":organizationId"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"296e4415-9f34-4cbb-91ea-5e7e0c759a39","description":{"content":"<p>(Required) The ID of the organization</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"organizationId"}]}},"response":[{"id":"b58b0830-084c-49a8-b816-4137738e925b","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//groups/refresh-integration-teams-contacts/:organizationId","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["groups","refresh-integration-teams-contacts",":organizationId"],"variable":[{"key":"organizationId","value":"65893348","description":"(Required) The ID of the organization"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"512298ea-6edb-4f23-859a-d0baaebcb147","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//groups/refresh-integration-teams-contacts/:organizationId","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["groups","refresh-integration-teams-contacts",":organizationId"],"variable":[{"key":"organizationId","value":"65893348","description":"(Required) The ID of the organization"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"},{"id":"30caf19a-e741-4032-a454-c890053b4520","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//groups/refresh-integration-teams-contacts/:organizationId","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["groups","refresh-integration-teams-contacts",":organizationId"],"variable":[{"key":"organizationId","value":"65893348","description":"(Required) The ID of the organization"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f969a8b9-f654-4ee9-9848-644ef40f1997"},{"name":"Refresh integration teams","id":"3efc52b0-15a6-4d1d-807a-d469be81c731","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//groups/refresh-integration-teams","description":"<p>Refresh integration teams</p>\n","urlObject":{"path":["groups","refresh-integration-teams"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"2a846051-a2ec-4cdc-80ef-cec860c12aaf","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//groups/refresh-integration-teams"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"462a2ab1-dc69-48e1-a8df-8e00ac6af67c","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//groups/refresh-integration-teams"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"},{"id":"8eda0ab0-b0d8-436d-b076-625877944ead","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//groups/refresh-integration-teams"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3efc52b0-15a6-4d1d-807a-d469be81c731"}],"id":"02c39e3b-63aa-47f1-96c4-ec5e968c6e37","_postman_id":"02c39e3b-63aa-47f1-96c4-ec5e968c6e37","description":""},{"name":"Keywords","item":[{"name":"Search keywords","id":"99da7ab1-e278-4e19-803a-50d3bd860dfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//keywords?limit=10","description":"<p>Search keywords</p>\n","urlObject":{"path":["keywords"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[]}},"response":[{"id":"4a343a31-f9ac-4ef9-a12e-42cc792e64d1","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//keywords?limit=10","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["keywords"],"query":[{"key":"limit","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 34596760,\n    \"owner_id\": -13676104,\n    \"organization_id\": -4852999,\n    \"is_active\": true,\n    \"name\": \"exercitation id\",\n    \"message\": \"et eiusmod quis incididunt\",\n    \"created_at\": \"ad occaecat magna cupidat\",\n    \"updated_at\": \"nostrud occaecat ea dolore\",\n    \"disabled_at\": \"Duis sunt\"\n  },\n  {\n    \"id\": 69735713,\n    \"owner_id\": -2564596,\n    \"organization_id\": -1009312,\n    \"is_active\": false,\n    \"name\": \"quis v\",\n    \"message\": \"fugiat consectetur\",\n    \"created_at\": \"minim ad aute qui adipisicing\",\n    \"updated_at\": \"est\",\n    \"disabled_at\": \"enim officia tempor in\"\n  }\n]"}],"_postman_id":"99da7ab1-e278-4e19-803a-50d3bd860dfa"},{"name":"Create keyword","id":"39b87c4c-3745-4e5a-bf5e-823b9e2066db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"mollit eu\",\n  \"is_active\": false,\n  \"message\": \"dolore esse\",\n  \"numbers\": [\n    -45128874,\n    75702816\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//keywords","description":"<p>Create keyword</p>\n","urlObject":{"path":["keywords"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"779413c2-9435-4cb2-8950-7219d3b92e54","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Duis et\",\n  \"is_active\": false,\n  \"message\": \"aliqua nulla aute occa\",\n  \"numbers\": [\n    -73100810,\n    66568726\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//keywords"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 67459798,\n  \"owner_id\": -93764136,\n  \"organization_id\": 72467194,\n  \"is_active\": true,\n  \"name\": \"id dolore eu officia\",\n  \"message\": \"irure in\",\n  \"created_at\": \"nostrud dese\",\n  \"updated_at\": \"nostrud ea ex\",\n  \"disabled_at\": \"nulla voluptate ullamco\"\n}"},{"id":"cc1df2f5-608b-424d-96a2-dbc92824ede2","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Duis et\",\n  \"is_active\": false,\n  \"message\": \"aliqua nulla aute occa\",\n  \"numbers\": [\n    -73100810,\n    66568726\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//keywords"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"},{"id":"7542a41b-4b75-467b-9c82-902f98c77053","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Duis et\",\n  \"is_active\": false,\n  \"message\": \"aliqua nulla aute occa\",\n  \"numbers\": [\n    -73100810,\n    66568726\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//keywords"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"velit ex id Excepteur\",\n  \"error\": \"consequat cillum ut veniam\"\n}"}],"_postman_id":"39b87c4c-3745-4e5a-bf5e-823b9e2066db"},{"name":"Delete bulk keywords","id":"46157fb0-2fab-4088-a0f3-fc692386cb73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    -4968865,\n    62396234\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//keywords","description":"<p>Delete bulk keywords</p>\n","urlObject":{"path":["keywords"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"5a539262-b8d3-41a6-a227-54433c5f95a4","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    32825422,\n    -37766514\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//keywords"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"action\": \"aliqua dolor anim\",\n  \"ids\": [\n    -75678195,\n    81645682\n  ]\n}"},{"id":"b2359b71-9be9-48e4-8727-af41e16865d4","name":"Unprocessable Entity","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    32825422,\n    -37766514\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//keywords"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"ids\": \"mollit consectetur\"\n}"}],"_postman_id":"46157fb0-2fab-4088-a0f3-fc692386cb73"},{"name":"Get keyword","id":"ff122d15-c902-4e54-9d75-02bfcc70fc8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword","description":"<p>Get keyword by ID</p>\n","urlObject":{"path":["keywords",":keyword"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"c16e07a0-ab46-4f66-8956-33a45002cf11","description":{"content":"<p>(Required) The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"00488e1e-90f4-4de6-a004-bb37f9705087","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["keywords",":keyword"],"variable":[{"key":"keyword","value":"","description":"(Required) The ID of the keyword"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 67459798,\n  \"owner_id\": -93764136,\n  \"organization_id\": 72467194,\n  \"is_active\": true,\n  \"name\": \"id dolore eu officia\",\n  \"message\": \"irure in\",\n  \"created_at\": \"nostrud dese\",\n  \"updated_at\": \"nostrud ea ex\",\n  \"disabled_at\": \"nulla voluptate ullamco\"\n}"}],"_postman_id":"ff122d15-c902-4e54-9d75-02bfcc70fc8b"},{"name":"Update keyword","id":"8e09b69b-8590-406a-9f05-d76cf38cc1d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"mollit eu\",\n  \"is_active\": false,\n  \"message\": \"dolore esse\",\n  \"numbers\": [\n    -45128874,\n    75702816\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword","description":"<p>Update keyword</p>\n","urlObject":{"path":["keywords",":keyword"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"3ab21fc4-223f-4b66-a9a6-c9dd0ba56a3f","description":{"content":"<p>(Required) The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"22786700-cbae-4dda-a9eb-9de55b09f6b2","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Duis et\",\n  \"is_active\": false,\n  \"message\": \"aliqua nulla aute occa\",\n  \"numbers\": [\n    -73100810,\n    66568726\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["keywords",":keyword"],"variable":[{"key":"keyword","value":"","description":"(Required) The ID of the keyword"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 67459798,\n  \"owner_id\": -93764136,\n  \"organization_id\": 72467194,\n  \"is_active\": true,\n  \"name\": \"id dolore eu officia\",\n  \"message\": \"irure in\",\n  \"created_at\": \"nostrud dese\",\n  \"updated_at\": \"nostrud ea ex\",\n  \"disabled_at\": \"nulla voluptate ullamco\"\n}"},{"id":"b0b4aa91-e952-4dce-8376-af7eb8108864","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Duis et\",\n  \"is_active\": false,\n  \"message\": \"aliqua nulla aute occa\",\n  \"numbers\": [\n    -73100810,\n    66568726\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["keywords",":keyword"],"variable":[{"key":"keyword","value":"","description":"(Required) The ID of the keyword"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"},{"id":"fa9952cb-c26e-4eef-86b5-d735ca42f8f5","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Duis et\",\n  \"is_active\": false,\n  \"message\": \"aliqua nulla aute occa\",\n  \"numbers\": [\n    -73100810,\n    66568726\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["keywords",":keyword"],"variable":[{"key":"keyword","value":"","description":"(Required) The ID of the keyword"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"velit ex id Excepteur\",\n  \"error\": \"consequat cillum ut veniam\"\n}"}],"_postman_id":"8e09b69b-8590-406a-9f05-d76cf38cc1d0"},{"name":"Delete keyword","id":"1cae4232-c150-44ec-9439-3dafadae8534","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword","description":"<p>Delete keyword</p>\n","urlObject":{"path":["keywords",":keyword"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"627ca064-493a-48a6-86db-e2b461a28ffa","description":{"content":"<p>(Required) The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"436c932a-b205-49a0-9408-851e2d28b164","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["keywords",":keyword"],"variable":[{"key":"keyword","value":"","description":"(Required) The ID of the keyword"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"incididunt laboris ea elit\",\n  \"nisi\"\n]"}],"_postman_id":"1cae4232-c150-44ec-9439-3dafadae8534"},{"name":"Get mandated keywords","id":"c0d21913-f674-4c3b-8983-f1d069cbc6d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//keywords/mandated","description":"<p>Get mandated keywords</p>\n","urlObject":{"path":["keywords","mandated"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"ebc456d2-82e5-4a27-be75-b2fad9f5f498","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//keywords/mandated"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"incididunt laboris ea elit\",\n  \"nisi\"\n]"}],"_postman_id":"c0d21913-f674-4c3b-8983-f1d069cbc6d0"},{"name":"Get keyword stats","id":"6539040a-a161-4db3-9cf9-209d4563cd64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword/stats","description":"<p>Get keyword stats</p>\n","urlObject":{"path":["keywords",":keyword","stats"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"2a8ffba8-33b4-419d-b968-080be68fdcbe","description":{"content":"<p>(Required) The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"2525e193-0abd-4282-98ab-08a5ae2644df","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword/stats","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["keywords",":keyword","stats"],"variable":[{"key":"keyword","value":"","description":"(Required) The ID of the keyword"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"6539040a-a161-4db3-9cf9-209d4563cd64"},{"name":"Get keyword contacts","id":"a34b064f-a154-4677-b3da-e9f7b1bc9db1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword/contacts?page=1&limit=10","description":"<p>Get keyword contacts</p>\n","urlObject":{"path":["keywords",":keyword","contacts"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The page of a collection to return.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[{"id":"82680f59-506f-4066-bb99-671db35c80f4","description":{"content":"<p>(Required) The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"9717fe1e-7cb1-4683-8aa2-ac9f0f9b187c","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//keywords/:keyword/contacts?page=1&limit=10","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["keywords",":keyword","contacts"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"10"}],"variable":[{"key":"keyword","value":"","description":"(Required) The ID of the keyword"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 52905619,\n    \"owner_id\": 64116281,\n    \"color\": \"velit sunt nostrud\",\n    \"first_name\": \"exercitation cillum ut\",\n    \"last_name\": \"eu eiusmod proident esse\",\n    \"full_name\": \"eiusmod\",\n    \"email\": \"veniam\",\n    \"photo_url\": \"Ut reprehenderit in quis nisi\",\n    \"number\": \"dolore mollit ut\",\n    \"country\": \"sit reprehenderit adipisicing dolor\",\n    \"country_calling_code\": \"officia et nisi\",\n    \"national_number\": \"esse id irure incididunt\",\n    \"typeted_number\": \"tempor officia voluptate laboris in\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"reprehenderit nostrud\",\n    \"opt_in_request_at\": \"sint fugiat in aute\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": -17853323\n      },\n      {\n        \"number_id\": -94467971\n      }\n    ],\n    \"opt_in_at\": \"occaecat non velit dolor ipsum\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 2176055,\n        \"number_id\": -98531989,\n        \"name\": \"mollit sit\",\n        \"disabled\": true,\n        \"timestamp\": \"magna aliqua elit eu d\",\n        \"value\": false\n      },\n      {\n        \"id\": -39019147,\n        \"number_id\": 54767250,\n        \"name\": \"dolore sint minim\",\n        \"disabled\": true,\n        \"timestamp\": \"consequat deserunt reprehenderi\",\n        \"value\": false\n      }\n    ],\n    \"created_at\": \"sunt reprehenderit velit\",\n    \"updated_at\": \"cupidatat magna ex\",\n    \"integration_vendor_id\": 51134118,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": -82113929,\n        \"key\": \"laborum\",\n        \"name\": \"esse\",\n        \"photo_url\": \"elit\"\n      },\n      {\n        \"id\": -48574796,\n        \"key\": \"i\",\n        \"name\": \"esse enim\",\n        \"photo_url\": \"nostrud sunt Lorem quis\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 96816398,\n        \"custom_field_id\": 1033466,\n        \"contact_id\": 96986164,\n        \"field_key\": \"nisi officia velit in\",\n        \"organization_id\": -82852209,\n        \"text\": \"deserunt voluptate laborum dolor\",\n        \"number\": -10878265,\n        \"date\": \"ut est\",\n        \"created_at\": \"m\",\n        \"updated_at\": \"ex Duis\",\n        \"value\": [\n          {\n            \"type\": \"dolor laborum\",\n            \"value\": \"eiusmod Lorem exercitation enim deserunt\"\n          },\n          {\n            \"type\": \"in dolore\",\n            \"value\": \"Ut irure ea\"\n          }\n        ]\n      },\n      {\n        \"id\": -99096519,\n        \"custom_field_id\": 48948674,\n        \"contact_id\": -10512439,\n        \"field_key\": \"tempor\",\n        \"organization_id\": 94344648,\n        \"text\": \"eiusmod eu id labore\",\n        \"number\": -50904371,\n        \"date\": \"ut cillum\",\n        \"created_at\": \"ullamco ea\",\n        \"updated_at\": \"ut proident ullamco\",\n        \"value\": [\n          {\n            \"type\": \"ut nulla\",\n            \"value\": \"in elit sunt\"\n          },\n          {\n            \"type\": \"dolore non nulla\",\n            \"value\": \"occ\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": -54723404,\n        \"name\": \"commodo dolor fugiat\",\n        \"label\": \"ea sunt qui aliquip\",\n        \"created_at\": \"culpa ex sunt et pariatur\"\n      },\n      {\n        \"id\": 20521680,\n        \"name\": \"ex nostrud\",\n        \"label\": \"sit consequ\",\n        \"created_at\": \"mollit reprehenderit aliquip\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -47381287,\n        \"text\": \"eu elit Lorem\",\n        \"created_at\": \"do\",\n        \"updated_at\": \"qui\"\n      },\n      {\n        \"id\": -60704853,\n        \"text\": \"minim amet \",\n        \"created_at\": \"do occaecat reprehenderit non\",\n        \"updated_at\": \"nisi do Duis qui pariatur\"\n      }\n    ]\n  },\n  {\n    \"id\": 46758187,\n    \"owner_id\": 20435165,\n    \"color\": \"Duis enim\",\n    \"first_name\": \"ea ipsum tempor\",\n    \"last_name\": \"ex dolor voluptate mollit et\",\n    \"full_name\": \"consequat ea par\",\n    \"email\": \"ut qui est enim magna\",\n    \"photo_url\": \"tempor anim aliquip nulla\",\n    \"number\": \"nisi\",\n    \"country\": \"elit consequat\",\n    \"country_calling_code\": \"elit\",\n    \"national_number\": \"mollit\",\n    \"typeted_number\": \"proident\",\n    \"is_blocked\": true,\n    \"opt_out\": false,\n    \"opt_out_at\": \"tempor ut sint\",\n    \"opt_in_request_at\": \"ea labore reprehenderit\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1647182\n      },\n      {\n        \"number_id\": -13711920\n      }\n    ],\n    \"opt_in_at\": \"sint\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": -52023001,\n        \"number_id\": -14692461,\n        \"name\": \"consequat ut Excepteur sunt\",\n        \"disabled\": true,\n        \"timestamp\": \"ex amet\",\n        \"value\": false\n      },\n      {\n        \"id\": -76282945,\n        \"number_id\": -2598584,\n        \"name\": \"do\",\n        \"disabled\": false,\n        \"timestamp\": \"pariatur labore\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"sunt velit\",\n    \"updated_at\": \"minim sunt est amet\",\n    \"integration_vendor_id\": -10231326,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 43372668,\n        \"key\": \"veniam\",\n        \"name\": \"Ut enim\",\n        \"photo_url\": \"Excepteur minim pariatur consectetur in\"\n      },\n      {\n        \"id\": 96661652,\n        \"key\": \"consequat deserunt non esse anim\",\n        \"name\": \"veniam\",\n        \"photo_url\": \"dolore\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 57635661,\n        \"custom_field_id\": 82407230,\n        \"contact_id\": 93033787,\n        \"field_key\": \"elit proident qui ut\",\n        \"organization_id\": 21021533,\n        \"text\": \"sint dolore in Exce\",\n        \"number\": 9764723,\n        \"date\": \"ad incididunt aliquip\",\n        \"created_at\": \"in dolor\",\n        \"updated_at\": \"laborum dolor id\",\n        \"value\": [\n          {\n            \"type\": \"officia nulla laborum ad\",\n            \"value\": \"amet\"\n          },\n          {\n            \"type\": \"exercitation aute\",\n            \"value\": \"esse mi\"\n          }\n        ]\n      },\n      {\n        \"id\": -1522312,\n        \"custom_field_id\": -22221973,\n        \"contact_id\": 54997750,\n        \"field_key\": \"Lorem ea cillum\",\n        \"organization_id\": -73095697,\n        \"text\": \"tempor comm\",\n        \"number\": 6713949,\n        \"date\": \"ve\",\n        \"created_at\": \"est tempor minim dolor\",\n        \"updated_at\": \"quis et cupidatat\",\n        \"value\": [\n          {\n            \"type\": \"nisi ut anim\",\n            \"value\": \"veli\"\n          },\n          {\n            \"type\": \"in velit ipsum ut\",\n            \"value\": \"aliquip\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": -58872352,\n        \"name\": \"est ex\",\n        \"label\": \"aut\",\n        \"created_at\": \"mol\"\n      },\n      {\n        \"id\": -97163538,\n        \"name\": \"dolor in proident\",\n        \"label\": \"co\",\n        \"created_at\": \"adipisicing\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": -32205704,\n        \"text\": \"esse consectetur\",\n        \"created_at\": \"occaecat exercitation nisi\",\n        \"updated_at\": \"ea irure\"\n      },\n      {\n        \"id\": -49262926,\n        \"text\": \"eiusmod ut anim ipsum do\",\n        \"created_at\": \"nulla\",\n        \"updated_at\": \"ex aliqua cupidatat\"\n      }\n    ]\n  }\n]"}],"_postman_id":"a34b064f-a154-4677-b3da-e9f7b1bc9db1"},{"name":"Delete bulk keywords","id":"d21149e1-a9d8-4f2c-9e27-547049413751","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//keywords/subscribe/toggle/:keyword/:contact","description":"<p>Delete bulk keywords</p>\n","urlObject":{"path":["keywords","subscribe","toggle",":keyword",":contact"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"4d9a4cb0-6921-46a8-9dfe-f72063c48ec7","description":{"content":"<p>(Required) The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"},{"id":"d27d11c2-97ff-4248-82aa-18213628c69b","description":{"content":"<p>(Required) The ID of the contact</p>\n","type":"text/plain"},"type":"any","value":"","key":"contact"}]}},"response":[{"id":"caae00b4-1775-491e-ae67-11fa50c4f684","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//keywords/subscribe/toggle/:keyword/:contact","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["keywords","subscribe","toggle",":keyword",":contact"],"variable":[{"key":"keyword","value":"","description":"(Required) The ID of the keyword"},{"key":"contact","value":"","description":"(Required) The ID of the contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"d21149e1-a9d8-4f2c-9e27-547049413751"},{"name":"Toggle keyword","id":"0f22e0b8-5bcd-4353-b1c4-433a1924f4cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//keywords/toggle/:keyword","description":"<p>Toggle keyword</p>\n","urlObject":{"path":["keywords","toggle",":keyword"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"1813d689-4fd1-4c5e-a71c-3ae45a786294","description":{"content":"<p>(Required) The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"558c5ad4-5bbe-4994-9393-6e1ebc6bca94","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//keywords/toggle/:keyword","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["keywords","toggle",":keyword"],"variable":[{"key":"keyword","value":"","description":"(Required) The ID of the keyword"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 67459798,\n  \"owner_id\": -93764136,\n  \"organization_id\": 72467194,\n  \"is_active\": true,\n  \"name\": \"id dolore eu officia\",\n  \"message\": \"irure in\",\n  \"created_at\": \"nostrud dese\",\n  \"updated_at\": \"nostrud ea ex\",\n  \"disabled_at\": \"nulla voluptate ullamco\"\n}"}],"_postman_id":"0f22e0b8-5bcd-4353-b1c4-433a1924f4cc"}],"id":"1466a494-6101-4aa5-8d99-f0bf37199e2e","_postman_id":"1466a494-6101-4aa5-8d99-f0bf37199e2e","description":""},{"name":"Numbers","item":[{"name":"Assign the number to the inbox","id":"48679f5f-82a3-4e86-8ba3-1292381a4722","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/:number/assign-inbox/:team","description":"<p>Assign the number to the inbox</p>\n","urlObject":{"path":["numbers",":number","assign-inbox",":team"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"3dbff476-8227-4daf-9467-232a99f36da2","description":{"content":"<p>(Required) The ID of the Number</p>\n","type":"text/plain"},"type":"any","value":"","key":"number"},{"id":"0600e935-bc75-45a2-9de0-9b9afb3b2c2f","description":{"content":"<p>(Required) The ID of the Team</p>\n","type":"text/plain"},"type":"any","value":"","key":"team"}]}},"response":[{"id":"12b2b2c6-bc7c-4f90-a66e-1b01685251d6","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/:number/assign-inbox/:team","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers",":number","assign-inbox",":team"],"variable":[{"key":"number","value":"","description":"(Required) The ID of the Number"},{"key":"team","value":"","description":"(Required) The ID of the Team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -7764601,\n  \"organization_id\": -91500037,\n  \"country\": \"voluptate elit\",\n  \"state\": \"eiusmod aliquip\",\n  \"city\": \"culpa commodo esse\",\n  \"number\": \"ut anim reprehenderit nulla consequat\",\n  \"number_vendor_id\": 65350051,\n  \"country_calling_code\": \"quis labore ipsum occaecat irure\",\n  \"national_number\": \"consequat Duis aute sit\",\n  \"formattedNumber\": \"sit commodo cupidatat deserunt tempor\",\n  \"formatted_number\": \"Duis l\",\n  \"short_code\": -47399126,\n  \"is_landline\": 56504764,\n  \"is_toll_free\": false,\n  \"is_aircall\": false,\n  \"voice\": true,\n  \"use_organization_call_settings\": true,\n  \"voice_outbound\": true,\n  \"mms\": false,\n  \"disabled\": false,\n  \"has_profile\": true,\n  \"verified_status\": \"est\",\n  \"area_code\": {\n    \"id\": 20157685,\n    \"area_code\": \"ea amet\",\n    \"state_code\": \"exercitation amet\",\n    \"state_name\": \"reprehenderit sunt eu\",\n    \"country_code\": \"proident ad\",\n    \"time_zone\": \"aliqua qui\",\n    \"group_id\": 99715610\n  },\n  \"landline\": {\n    \"id\": -74771783,\n    \"number_id\": -84578743,\n    \"address_sid\": \"consequat ullamco cupidatat anim nulla\",\n    \"sid\": \"aliqua consequat mollit\",\n    \"document_sid\": \"aliqua\",\n    \"status\": \"amet deserunt\",\n    \"verification_attempts\": 41291243,\n    \"last_verify_attempt_at\": \"quis ut anim\",\n    \"landline_name\": \"exercitation sed amet incididunt\",\n    \"street_address\": \"ut incididunt et sit\",\n    \"city\": \"nulla eu non ut veniam\",\n    \"state\": \"Ut laborum\",\n    \"zip_code\": \"nostrud dolore sit consequat enim\",\n    \"completed\": 13868835,\n    \"created_at\": \"proident labore\",\n    \"updated_at\": \"consequat et tempor\"\n  },\n  \"number_vendor\": {\n    \"id\": -32793919,\n    \"is_active\": false,\n    \"key\": \"sint\",\n    \"name\": \"laborum et\",\n    \"credentials_prefix\": \"ipsum et magna amet\",\n    \"twilio_sid\": \"ut velit deserunt\",\n    \"twilio_auth_token\": \"minim culpa\",\n    \"is_billable\": 81885199,\n    \"created_at\": \"commodo do aliqua\",\n    \"updated_at\": \"tempor Duis sunt occaecat\"\n  },\n  \"call_forwarding\": {\n    \"id\": -54883530,\n    \"number_id\": 51704197,\n    \"is_active\": true,\n    \"is_screening\": true,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"sunt nisi culpa dolor\",\n    \"country\": \"anim fugiat\",\n    \"number\": \"adipisicing pariatur non fugiat culpa\",\n    \"country_calling_code\": \"in magna commodo\",\n    \"national_number\": \"irure\",\n    \"formatted_number\": \"eu exercitation enim dolore anim\",\n    \"extension\": \"ullamco sunt\",\n    \"created_at\": \"eiusmod\",\n    \"updated_at\": \"id consectetur\"\n  },\n  \"numberable_id\": 4939105,\n  \"numberable_type\": \"dolore\",\n  \"numberable\": {\n    \"id\": 65909697,\n    \"organization_id\": 88770002,\n    \"owner_id\": 94370343,\n    \"team_id\": -22450023,\n    \"name\": \"Lorem culpa sunt aute laborum\",\n    \"created_at\": \"pariatur do\",\n    \"updated_at\": \"reprehenderit irure minim quis laborum\"\n  }\n}"},{"id":"18260fd3-a9f6-4dbe-92e2-88aff60c2fb1","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/:number/assign-inbox/:team","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers",":number","assign-inbox",":team"],"variable":[{"key":"number","value":"","description":"(Required) The ID of the Number"},{"key":"team","value":"","description":"(Required) The ID of the Team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"number\": \"exercitation occaecat culpa\",\n  \"inbox\": \"velit anim U\"\n}"}],"_postman_id":"48679f5f-82a3-4e86-8ba3-1292381a4722"},{"name":"Assign numbers to the inbox","id":"80a85ab0-95f3-4d9f-8732-2227994f5945","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"numberIds\": [\n    1,\n    1\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/assign-inbox/:team","description":"<p>Assign numbers to the inbox</p>\n","urlObject":{"path":["numbers","assign-inbox",":team"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"bb7ae771-e617-41d3-83bf-03145b39e463","description":{"content":"<p>(Required) The ID of the Team</p>\n","type":"text/plain"},"type":"any","value":"","key":"team"}]}},"response":[{"id":"c4dd1440-5ef7-454c-9b61-0f51b8546852","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"numberIds\": [\n    1,\n    1\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/assign-inbox/:team","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers","assign-inbox",":team"],"variable":[{"key":"team","value":"","description":"(Required) The ID of the Team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": -62376020,\n    \"organization_id\": -46576491,\n    \"country\": \"quis ad veniam id in\",\n    \"state\": \"Ut sunt cillum sed\",\n    \"city\": \"sed pariatur officia cupidatat est\",\n    \"number\": \"ipsum ut\",\n    \"number_vendor_id\": 48164845,\n    \"country_calling_code\": \"commodo ullamco mollit deserunt dolor\",\n    \"national_number\": \"incididunt\",\n    \"formattedNumber\": \"quis consequat consectetur\",\n    \"formatted_number\": \"adipisicing proident\",\n    \"short_code\": 567254,\n    \"is_landline\": 17945185,\n    \"is_toll_free\": true,\n    \"is_aircall\": false,\n    \"voice\": false,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": true,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"eiusmod exercitation Duis ad\",\n    \"area_code\": {\n      \"id\": -38275750,\n      \"area_code\": \"ipsum reprehenderit incididunt\",\n      \"state_code\": \"elit in occaecat\",\n      \"state_name\": \"dolore sit amet\",\n      \"country_code\": \"labore\",\n      \"time_zone\": \"labore dolore incidi\",\n      \"group_id\": -68418787\n    },\n    \"landline\": {\n      \"id\": 93527860,\n      \"number_id\": 83850355,\n      \"address_sid\": \"deserunt Excepteur in Duis\",\n      \"sid\": \"pariatur dolore\",\n      \"document_sid\": \"mollit ullamco aliquip su\",\n      \"status\": \"labore qui et\",\n      \"verification_attempts\": -18411699,\n      \"last_verify_attempt_at\": \"aliqua consequat\",\n      \"landline_name\": \"pariatur et officia laborum\",\n      \"street_address\": \"elit ut Lorem E\",\n      \"city\": \"Lorem adipisicing aliqua\",\n      \"state\": \"dolore esse\",\n      \"zip_code\": \"officia in\",\n      \"completed\": 45047262,\n      \"created_at\": \"laboris\",\n      \"updated_at\": \"id consequat\"\n    },\n    \"number_vendor\": {\n      \"id\": 58406822,\n      \"is_active\": false,\n      \"key\": \"dolore cillum id commodo\",\n      \"name\": \"veniam minim\",\n      \"credentials_prefix\": \"an\",\n      \"twilio_sid\": \"eiusmod\",\n      \"twilio_auth_token\": \"officia qui tempor aute fugiat\",\n      \"is_billable\": 50614959,\n      \"created_at\": \"enim tempor commodo\",\n      \"updated_at\": \"veniam quis dol\"\n    },\n    \"call_forwarding\": {\n      \"id\": -51458660,\n      \"number_id\": -25792335,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": false,\n      \"call_whisper\": \"minim ut aute\",\n      \"country\": \"tempor\",\n      \"number\": \"Ut dolore aliqua Excepteur adipisicing\",\n      \"country_calling_code\": \"cillum do dolore\",\n      \"national_number\": \"aute est sit aliquip\",\n      \"formatted_number\": \"aliqua et mollit non\",\n      \"extension\": \"adipisicing officia\",\n      \"created_at\": \"ea sint ut ex\",\n      \"updated_at\": \"deserunt amet Lorem\"\n    },\n    \"numberable_id\": -8445478,\n    \"numberable_type\": \"sit ipsum occaecat\",\n    \"numberable\": {\n      \"id\": 71285489,\n      \"organization_id\": 12223970,\n      \"owner_id\": 57047909,\n      \"team_id\": 17678033,\n      \"name\": \"minim ut\",\n      \"created_at\": \"reprehenderit\",\n      \"updated_at\": \"id sed et\"\n    }\n  },\n  {\n    \"id\": 99323533,\n    \"organization_id\": -47757582,\n    \"country\": \"laboris in culpa Lorem\",\n    \"state\": \"culpa sint qui\",\n    \"city\": \"est laboris irure\",\n    \"number\": \"fugiat commodo proident quis\",\n    \"number_vendor_id\": 28971204,\n    \"country_calling_code\": \"voluptate culpa elit veniam\",\n    \"national_number\": \"Duis\",\n    \"formattedNumber\": \"laborum deserunt occaecat\",\n    \"formatted_number\": \"voluptate nisi\",\n    \"short_code\": -86795061,\n    \"is_landline\": 14992067,\n    \"is_toll_free\": false,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": true,\n    \"verified_status\": \"labore nisi fug\",\n    \"area_code\": {\n      \"id\": 91916228,\n      \"area_code\": \"elit Excepteur reprehenderit\",\n      \"state_code\": \"in cupidatat Ut\",\n      \"state_name\": \"Duis qui in\",\n      \"country_code\": \"aliqua qui\",\n      \"time_zone\": \"est veniam commodo culpa\",\n      \"group_id\": 34947619\n    },\n    \"landline\": {\n      \"id\": -54053530,\n      \"number_id\": 95904453,\n      \"address_sid\": \"laborum\",\n      \"sid\": \"nisi in aute\",\n      \"document_sid\": \"occaecat consequat do veniam\",\n      \"status\": \"occaecat ullamco id\",\n      \"verification_attempts\": -43119395,\n      \"last_verify_attempt_at\": \"enim laborum proident\",\n      \"landline_name\": \"Lorem exercitation el\",\n      \"street_address\": \"eu\",\n      \"city\": \"veniam amet fugiat occaecat\",\n      \"state\": \"laboris ullamco\",\n      \"zip_code\": \"labore anim\",\n      \"completed\": -92710245,\n      \"created_at\": \"minim mollit veniam irure\",\n      \"updated_at\": \"proident\"\n    },\n    \"number_vendor\": {\n      \"id\": -48226456,\n      \"is_active\": true,\n      \"key\": \"cupidatat nisi adipisicing amet Duis\",\n      \"name\": \"commodo quis aliqua\",\n      \"credentials_prefix\": \"exercitation eiusmod deserunt\",\n      \"twilio_sid\": \"velit dolor aute\",\n      \"twilio_auth_token\": \"labore Lorem laborum\",\n      \"is_billable\": 49379731,\n      \"created_at\": \"officia labore Excepteur\",\n      \"updated_at\": \"sit dolor nulla officia\"\n    },\n    \"call_forwarding\": {\n      \"id\": -13806336,\n      \"number_id\": -41847400,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"ea ad\",\n      \"country\": \"proident minim amet nisi\",\n      \"number\": \"velit commodo esse culpa\",\n      \"country_calling_code\": \"ipsum magna\",\n      \"national_number\": \"ad sint\",\n      \"formatted_number\": \"magna sunt ut\",\n      \"extension\": \"Duis do laborum\",\n      \"created_at\": \"id non proident\",\n      \"updated_at\": \"sint quis\"\n    },\n    \"numberable_id\": -74100524,\n    \"numberable_type\": \"velit non cupidata\",\n    \"numberable\": {\n      \"id\": -49367313,\n      \"organization_id\": -12465051,\n      \"owner_id\": 36957166,\n      \"team_id\": -70814375,\n      \"name\": \"ullamco nulla elit\",\n      \"created_at\": \"esse cupidatat amet\",\n      \"updated_at\": \"\"\n    }\n  }\n]"},{"id":"84f44e99-659c-4fb4-b059-425f270fa0c5","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"numberIds\": [\n    1,\n    1\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/assign-inbox/:team","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers","assign-inbox",":team"],"variable":[{"key":"team","value":"","description":"(Required) The ID of the Team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"number\": \"exercitation occaecat culpa\",\n  \"inbox\": \"velit anim U\"\n}"}],"_postman_id":"80a85ab0-95f3-4d9f-8732-2227994f5945"},{"name":"Set call forwarding","id":"e54d1fe7-9fc3-4c9d-bca8-c799fc78db68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": true,\n  \"number\": \"\",\n  \"extension\": null,\n  \"is_call_whisper\": false,\n  \"call_whisper\": null,\n  \"is_screening\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/:number/call_forwarding","description":"<p>Set call forwarding</p>\n","urlObject":{"path":["numbers",":number","call_forwarding"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"a0c43a0c-a23b-45ef-ba9b-36a5078dea39","description":{"content":"<p>(Required) The ID of the Number</p>\n","type":"text/plain"},"type":"any","value":"","key":"number"}]}},"response":[{"id":"a35cb595-0f52-4464-8227-15225ab59564","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": true,\n  \"number\": \"\",\n  \"extension\": null,\n  \"is_call_whisper\": false,\n  \"call_whisper\": null,\n  \"is_screening\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/:number/call_forwarding","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers",":number","call_forwarding"],"variable":[{"key":"number","value":"","description":"(Required) The ID of the Number"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -7764601,\n  \"organization_id\": -91500037,\n  \"country\": \"voluptate elit\",\n  \"state\": \"eiusmod aliquip\",\n  \"city\": \"culpa commodo esse\",\n  \"number\": \"ut anim reprehenderit nulla consequat\",\n  \"number_vendor_id\": 65350051,\n  \"country_calling_code\": \"quis labore ipsum occaecat irure\",\n  \"national_number\": \"consequat Duis aute sit\",\n  \"formattedNumber\": \"sit commodo cupidatat deserunt tempor\",\n  \"formatted_number\": \"Duis l\",\n  \"short_code\": -47399126,\n  \"is_landline\": 56504764,\n  \"is_toll_free\": false,\n  \"is_aircall\": false,\n  \"voice\": true,\n  \"use_organization_call_settings\": true,\n  \"voice_outbound\": true,\n  \"mms\": false,\n  \"disabled\": false,\n  \"has_profile\": true,\n  \"verified_status\": \"est\",\n  \"area_code\": {\n    \"id\": 20157685,\n    \"area_code\": \"ea amet\",\n    \"state_code\": \"exercitation amet\",\n    \"state_name\": \"reprehenderit sunt eu\",\n    \"country_code\": \"proident ad\",\n    \"time_zone\": \"aliqua qui\",\n    \"group_id\": 99715610\n  },\n  \"landline\": {\n    \"id\": -74771783,\n    \"number_id\": -84578743,\n    \"address_sid\": \"consequat ullamco cupidatat anim nulla\",\n    \"sid\": \"aliqua consequat mollit\",\n    \"document_sid\": \"aliqua\",\n    \"status\": \"amet deserunt\",\n    \"verification_attempts\": 41291243,\n    \"last_verify_attempt_at\": \"quis ut anim\",\n    \"landline_name\": \"exercitation sed amet incididunt\",\n    \"street_address\": \"ut incididunt et sit\",\n    \"city\": \"nulla eu non ut veniam\",\n    \"state\": \"Ut laborum\",\n    \"zip_code\": \"nostrud dolore sit consequat enim\",\n    \"completed\": 13868835,\n    \"created_at\": \"proident labore\",\n    \"updated_at\": \"consequat et tempor\"\n  },\n  \"number_vendor\": {\n    \"id\": -32793919,\n    \"is_active\": false,\n    \"key\": \"sint\",\n    \"name\": \"laborum et\",\n    \"credentials_prefix\": \"ipsum et magna amet\",\n    \"twilio_sid\": \"ut velit deserunt\",\n    \"twilio_auth_token\": \"minim culpa\",\n    \"is_billable\": 81885199,\n    \"created_at\": \"commodo do aliqua\",\n    \"updated_at\": \"tempor Duis sunt occaecat\"\n  },\n  \"call_forwarding\": {\n    \"id\": -54883530,\n    \"number_id\": 51704197,\n    \"is_active\": true,\n    \"is_screening\": true,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"sunt nisi culpa dolor\",\n    \"country\": \"anim fugiat\",\n    \"number\": \"adipisicing pariatur non fugiat culpa\",\n    \"country_calling_code\": \"in magna commodo\",\n    \"national_number\": \"irure\",\n    \"formatted_number\": \"eu exercitation enim dolore anim\",\n    \"extension\": \"ullamco sunt\",\n    \"created_at\": \"eiusmod\",\n    \"updated_at\": \"id consectetur\"\n  },\n  \"numberable_id\": 4939105,\n  \"numberable_type\": \"dolore\",\n  \"numberable\": {\n    \"id\": 65909697,\n    \"organization_id\": 88770002,\n    \"owner_id\": 94370343,\n    \"team_id\": -22450023,\n    \"name\": \"Lorem culpa sunt aute laborum\",\n    \"created_at\": \"pariatur do\",\n    \"updated_at\": \"reprehenderit irure minim quis laborum\"\n  }\n}"}],"_postman_id":"e54d1fe7-9fc3-4c9d-bca8-c799fc78db68"},{"name":"Get numbers","id":"ccc36f74-3ac8-4030-8337-2fc3ba2c2e04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.1//numbers","description":"<p>Get numbers</p>\n","urlObject":{"path":["numbers"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"d1698795-6c3e-49ae-ad53-cc538687aa4c","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ccc36f74-3ac8-4030-8337-2fc3ba2c2e04"},{"name":"Create number","id":"66b34f42-b709-4c1b-8ab1-474e3bf3a217","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers?number=laborum","description":"<p>Create number</p>\n","urlObject":{"path":["numbers"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Number</p>\n","type":"text/plain"},"key":"number","value":"laborum"}],"variable":[]}},"response":[{"id":"bb4e9b5b-9c5e-4b4c-8ce6-5e2c6066f804","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers?number=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers"],"query":[{"key":"number","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -7764601,\n  \"organization_id\": -91500037,\n  \"country\": \"voluptate elit\",\n  \"state\": \"eiusmod aliquip\",\n  \"city\": \"culpa commodo esse\",\n  \"number\": \"ut anim reprehenderit nulla consequat\",\n  \"number_vendor_id\": 65350051,\n  \"country_calling_code\": \"quis labore ipsum occaecat irure\",\n  \"national_number\": \"consequat Duis aute sit\",\n  \"formattedNumber\": \"sit commodo cupidatat deserunt tempor\",\n  \"formatted_number\": \"Duis l\",\n  \"short_code\": -47399126,\n  \"is_landline\": 56504764,\n  \"is_toll_free\": false,\n  \"is_aircall\": false,\n  \"voice\": true,\n  \"use_organization_call_settings\": true,\n  \"voice_outbound\": true,\n  \"mms\": false,\n  \"disabled\": false,\n  \"has_profile\": true,\n  \"verified_status\": \"est\",\n  \"area_code\": {\n    \"id\": 20157685,\n    \"area_code\": \"ea amet\",\n    \"state_code\": \"exercitation amet\",\n    \"state_name\": \"reprehenderit sunt eu\",\n    \"country_code\": \"proident ad\",\n    \"time_zone\": \"aliqua qui\",\n    \"group_id\": 99715610\n  },\n  \"landline\": {\n    \"id\": -74771783,\n    \"number_id\": -84578743,\n    \"address_sid\": \"consequat ullamco cupidatat anim nulla\",\n    \"sid\": \"aliqua consequat mollit\",\n    \"document_sid\": \"aliqua\",\n    \"status\": \"amet deserunt\",\n    \"verification_attempts\": 41291243,\n    \"last_verify_attempt_at\": \"quis ut anim\",\n    \"landline_name\": \"exercitation sed amet incididunt\",\n    \"street_address\": \"ut incididunt et sit\",\n    \"city\": \"nulla eu non ut veniam\",\n    \"state\": \"Ut laborum\",\n    \"zip_code\": \"nostrud dolore sit consequat enim\",\n    \"completed\": 13868835,\n    \"created_at\": \"proident labore\",\n    \"updated_at\": \"consequat et tempor\"\n  },\n  \"number_vendor\": {\n    \"id\": -32793919,\n    \"is_active\": false,\n    \"key\": \"sint\",\n    \"name\": \"laborum et\",\n    \"credentials_prefix\": \"ipsum et magna amet\",\n    \"twilio_sid\": \"ut velit deserunt\",\n    \"twilio_auth_token\": \"minim culpa\",\n    \"is_billable\": 81885199,\n    \"created_at\": \"commodo do aliqua\",\n    \"updated_at\": \"tempor Duis sunt occaecat\"\n  },\n  \"call_forwarding\": {\n    \"id\": -54883530,\n    \"number_id\": 51704197,\n    \"is_active\": true,\n    \"is_screening\": true,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"sunt nisi culpa dolor\",\n    \"country\": \"anim fugiat\",\n    \"number\": \"adipisicing pariatur non fugiat culpa\",\n    \"country_calling_code\": \"in magna commodo\",\n    \"national_number\": \"irure\",\n    \"formatted_number\": \"eu exercitation enim dolore anim\",\n    \"extension\": \"ullamco sunt\",\n    \"created_at\": \"eiusmod\",\n    \"updated_at\": \"id consectetur\"\n  },\n  \"numberable_id\": 4939105,\n  \"numberable_type\": \"dolore\",\n  \"numberable\": {\n    \"id\": 65909697,\n    \"organization_id\": 88770002,\n    \"owner_id\": 94370343,\n    \"team_id\": -22450023,\n    \"name\": \"Lorem culpa sunt aute laborum\",\n    \"created_at\": \"pariatur do\",\n    \"updated_at\": \"reprehenderit irure minim quis laborum\"\n  }\n}"},{"id":"45e956f1-26a8-4ed2-8346-5a8feb5bb0a0","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers?number=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers"],"query":[{"key":"number","value":"laborum"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"},{"id":"68efb26b-ec63-43f0-b4ee-3ea8188c7732","name":"Invalid Number","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers?number=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers"],"query":[{"key":"number","value":"laborum"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"}],"_postman_id":"66b34f42-b709-4c1b-8ab1-474e3bf3a217"},{"name":"Lookup a phone number","id":"4c96ae85-cee4-44c0-bc9f-85e321024e7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/lookup?number=laborum","description":"<p>Lookup a phone number using the lookup tool</p>\n","urlObject":{"path":["numbers","lookup"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Number</p>\n","type":"text/plain"},"key":"number","value":"laborum"}],"variable":[]}},"response":[{"id":"6faf1d46-fe44-4d52-be03-cb3faef19c81","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/lookup?number=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers","lookup"],"query":[{"key":"number","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"number\": \"minim commodo ut\",\n  \"formatted_number\": \"Ut\",\n  \"country\": \"in dolor deserunt\",\n  \"carrier\": \"Ut Duis in\",\n  \"type\": \"non enim\"\n}"},{"id":"e7308e93-86f6-4980-9ea1-c6ce1e345881","name":"Incorrect Number","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/lookup?number=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers","lookup"],"query":[{"key":"number","value":"laborum"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"}],"_postman_id":"4c96ae85-cee4-44c0-bc9f-85e321024e7a"},{"name":"Release the number","id":"56b9d146-e29e-4078-9ebb-a35fdbbb8942","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/:number/release","description":"<p>Release the number</p>\n","urlObject":{"path":["numbers",":number","release"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"0505b6bb-7ba5-473c-90a8-1ea34b2970a6","description":{"content":"<p>(Required) The ID of the Number</p>\n","type":"text/plain"},"type":"any","value":"","key":"number"}]}},"response":[{"id":"9cf28960-4655-4e34-8444-9eacbb4afada","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/:number/release","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers",":number","release"],"variable":[{"key":"number","value":"","description":"(Required) The ID of the Number"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"in velit est dolor\",\n  \"message\": \"consectetur quis ut sint\"\n}"},{"id":"2d7ff4da-c9dd-4763-b34b-a2ed4e9a083c","name":"Invalid Number","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/:number/release","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers",":number","release"],"variable":[{"key":"number","value":"","description":"(Required) The ID of the Number"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"}],"_postman_id":"56b9d146-e29e-4078-9ebb-a35fdbbb8942"},{"name":"Search numbers","id":"072c3e07-bc8f-449a-9d10-6c65418d2679","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/search?country=US&search=laborum&toll_free=true","description":"<p>Search numbers</p>\n","urlObject":{"path":["numbers","search"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Country code (Alpha-2 code)</p>\n","type":"text/plain"},"key":"country","value":"US"},{"description":{"content":"<p>(Required) The string to search for..</p>\n","type":"text/plain"},"key":"search","value":"laborum"},{"description":{"content":"<p>Toll free.</p>\n","type":"text/plain"},"key":"toll_free","value":"true"}],"variable":[]}},"response":[{"id":"22c6edce-8cc6-4653-af56-35897607c0f9","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/search?country=US&search=laborum&toll_free=true","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers","search"],"query":[{"key":"country","value":"US"},{"key":"search","value":"laborum"},{"key":"toll_free","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": -62376020,\n    \"organization_id\": -46576491,\n    \"country\": \"quis ad veniam id in\",\n    \"state\": \"Ut sunt cillum sed\",\n    \"city\": \"sed pariatur officia cupidatat est\",\n    \"number\": \"ipsum ut\",\n    \"number_vendor_id\": 48164845,\n    \"country_calling_code\": \"commodo ullamco mollit deserunt dolor\",\n    \"national_number\": \"incididunt\",\n    \"formattedNumber\": \"quis consequat consectetur\",\n    \"formatted_number\": \"adipisicing proident\",\n    \"short_code\": 567254,\n    \"is_landline\": 17945185,\n    \"is_toll_free\": true,\n    \"is_aircall\": false,\n    \"voice\": false,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": true,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"eiusmod exercitation Duis ad\",\n    \"area_code\": {\n      \"id\": -38275750,\n      \"area_code\": \"ipsum reprehenderit incididunt\",\n      \"state_code\": \"elit in occaecat\",\n      \"state_name\": \"dolore sit amet\",\n      \"country_code\": \"labore\",\n      \"time_zone\": \"labore dolore incidi\",\n      \"group_id\": -68418787\n    },\n    \"landline\": {\n      \"id\": 93527860,\n      \"number_id\": 83850355,\n      \"address_sid\": \"deserunt Excepteur in Duis\",\n      \"sid\": \"pariatur dolore\",\n      \"document_sid\": \"mollit ullamco aliquip su\",\n      \"status\": \"labore qui et\",\n      \"verification_attempts\": -18411699,\n      \"last_verify_attempt_at\": \"aliqua consequat\",\n      \"landline_name\": \"pariatur et officia laborum\",\n      \"street_address\": \"elit ut Lorem E\",\n      \"city\": \"Lorem adipisicing aliqua\",\n      \"state\": \"dolore esse\",\n      \"zip_code\": \"officia in\",\n      \"completed\": 45047262,\n      \"created_at\": \"laboris\",\n      \"updated_at\": \"id consequat\"\n    },\n    \"number_vendor\": {\n      \"id\": 58406822,\n      \"is_active\": false,\n      \"key\": \"dolore cillum id commodo\",\n      \"name\": \"veniam minim\",\n      \"credentials_prefix\": \"an\",\n      \"twilio_sid\": \"eiusmod\",\n      \"twilio_auth_token\": \"officia qui tempor aute fugiat\",\n      \"is_billable\": 50614959,\n      \"created_at\": \"enim tempor commodo\",\n      \"updated_at\": \"veniam quis dol\"\n    },\n    \"call_forwarding\": {\n      \"id\": -51458660,\n      \"number_id\": -25792335,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": false,\n      \"call_whisper\": \"minim ut aute\",\n      \"country\": \"tempor\",\n      \"number\": \"Ut dolore aliqua Excepteur adipisicing\",\n      \"country_calling_code\": \"cillum do dolore\",\n      \"national_number\": \"aute est sit aliquip\",\n      \"formatted_number\": \"aliqua et mollit non\",\n      \"extension\": \"adipisicing officia\",\n      \"created_at\": \"ea sint ut ex\",\n      \"updated_at\": \"deserunt amet Lorem\"\n    },\n    \"numberable_id\": -8445478,\n    \"numberable_type\": \"sit ipsum occaecat\",\n    \"numberable\": {\n      \"id\": 71285489,\n      \"organization_id\": 12223970,\n      \"owner_id\": 57047909,\n      \"team_id\": 17678033,\n      \"name\": \"minim ut\",\n      \"created_at\": \"reprehenderit\",\n      \"updated_at\": \"id sed et\"\n    }\n  },\n  {\n    \"id\": 99323533,\n    \"organization_id\": -47757582,\n    \"country\": \"laboris in culpa Lorem\",\n    \"state\": \"culpa sint qui\",\n    \"city\": \"est laboris irure\",\n    \"number\": \"fugiat commodo proident quis\",\n    \"number_vendor_id\": 28971204,\n    \"country_calling_code\": \"voluptate culpa elit veniam\",\n    \"national_number\": \"Duis\",\n    \"formattedNumber\": \"laborum deserunt occaecat\",\n    \"formatted_number\": \"voluptate nisi\",\n    \"short_code\": -86795061,\n    \"is_landline\": 14992067,\n    \"is_toll_free\": false,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": true,\n    \"verified_status\": \"labore nisi fug\",\n    \"area_code\": {\n      \"id\": 91916228,\n      \"area_code\": \"elit Excepteur reprehenderit\",\n      \"state_code\": \"in cupidatat Ut\",\n      \"state_name\": \"Duis qui in\",\n      \"country_code\": \"aliqua qui\",\n      \"time_zone\": \"est veniam commodo culpa\",\n      \"group_id\": 34947619\n    },\n    \"landline\": {\n      \"id\": -54053530,\n      \"number_id\": 95904453,\n      \"address_sid\": \"laborum\",\n      \"sid\": \"nisi in aute\",\n      \"document_sid\": \"occaecat consequat do veniam\",\n      \"status\": \"occaecat ullamco id\",\n      \"verification_attempts\": -43119395,\n      \"last_verify_attempt_at\": \"enim laborum proident\",\n      \"landline_name\": \"Lorem exercitation el\",\n      \"street_address\": \"eu\",\n      \"city\": \"veniam amet fugiat occaecat\",\n      \"state\": \"laboris ullamco\",\n      \"zip_code\": \"labore anim\",\n      \"completed\": -92710245,\n      \"created_at\": \"minim mollit veniam irure\",\n      \"updated_at\": \"proident\"\n    },\n    \"number_vendor\": {\n      \"id\": -48226456,\n      \"is_active\": true,\n      \"key\": \"cupidatat nisi adipisicing amet Duis\",\n      \"name\": \"commodo quis aliqua\",\n      \"credentials_prefix\": \"exercitation eiusmod deserunt\",\n      \"twilio_sid\": \"velit dolor aute\",\n      \"twilio_auth_token\": \"labore Lorem laborum\",\n      \"is_billable\": 49379731,\n      \"created_at\": \"officia labore Excepteur\",\n      \"updated_at\": \"sit dolor nulla officia\"\n    },\n    \"call_forwarding\": {\n      \"id\": -13806336,\n      \"number_id\": -41847400,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"ea ad\",\n      \"country\": \"proident minim amet nisi\",\n      \"number\": \"velit commodo esse culpa\",\n      \"country_calling_code\": \"ipsum magna\",\n      \"national_number\": \"ad sint\",\n      \"formatted_number\": \"magna sunt ut\",\n      \"extension\": \"Duis do laborum\",\n      \"created_at\": \"id non proident\",\n      \"updated_at\": \"sint quis\"\n    },\n    \"numberable_id\": -74100524,\n    \"numberable_type\": \"velit non cupidata\",\n    \"numberable\": {\n      \"id\": -49367313,\n      \"organization_id\": -12465051,\n      \"owner_id\": 36957166,\n      \"team_id\": -70814375,\n      \"name\": \"ullamco nulla elit\",\n      \"created_at\": \"esse cupidatat amet\",\n      \"updated_at\": \"\"\n    }\n  }\n]"}],"_postman_id":"072c3e07-bc8f-449a-9d10-6c65418d2679"},{"name":"Get shortcodes","id":"7e3cd12d-b5bf-4705-ae8a-e9601b1390fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/shortcodes","description":"<p>Get shortcodes</p>\n","urlObject":{"path":["numbers","shortcodes"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"9e7daa99-376a-41b8-9cbf-e07553aac137","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/shortcodes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -7764601,\n  \"organization_id\": -91500037,\n  \"country\": \"voluptate elit\",\n  \"state\": \"eiusmod aliquip\",\n  \"city\": \"culpa commodo esse\",\n  \"number\": \"ut anim reprehenderit nulla consequat\",\n  \"number_vendor_id\": 65350051,\n  \"country_calling_code\": \"quis labore ipsum occaecat irure\",\n  \"national_number\": \"consequat Duis aute sit\",\n  \"formattedNumber\": \"sit commodo cupidatat deserunt tempor\",\n  \"formatted_number\": \"Duis l\",\n  \"short_code\": -47399126,\n  \"is_landline\": 56504764,\n  \"is_toll_free\": false,\n  \"is_aircall\": false,\n  \"voice\": true,\n  \"use_organization_call_settings\": true,\n  \"voice_outbound\": true,\n  \"mms\": false,\n  \"disabled\": false,\n  \"has_profile\": true,\n  \"verified_status\": \"est\",\n  \"area_code\": {\n    \"id\": 20157685,\n    \"area_code\": \"ea amet\",\n    \"state_code\": \"exercitation amet\",\n    \"state_name\": \"reprehenderit sunt eu\",\n    \"country_code\": \"proident ad\",\n    \"time_zone\": \"aliqua qui\",\n    \"group_id\": 99715610\n  },\n  \"landline\": {\n    \"id\": -74771783,\n    \"number_id\": -84578743,\n    \"address_sid\": \"consequat ullamco cupidatat anim nulla\",\n    \"sid\": \"aliqua consequat mollit\",\n    \"document_sid\": \"aliqua\",\n    \"status\": \"amet deserunt\",\n    \"verification_attempts\": 41291243,\n    \"last_verify_attempt_at\": \"quis ut anim\",\n    \"landline_name\": \"exercitation sed amet incididunt\",\n    \"street_address\": \"ut incididunt et sit\",\n    \"city\": \"nulla eu non ut veniam\",\n    \"state\": \"Ut laborum\",\n    \"zip_code\": \"nostrud dolore sit consequat enim\",\n    \"completed\": 13868835,\n    \"created_at\": \"proident labore\",\n    \"updated_at\": \"consequat et tempor\"\n  },\n  \"number_vendor\": {\n    \"id\": -32793919,\n    \"is_active\": false,\n    \"key\": \"sint\",\n    \"name\": \"laborum et\",\n    \"credentials_prefix\": \"ipsum et magna amet\",\n    \"twilio_sid\": \"ut velit deserunt\",\n    \"twilio_auth_token\": \"minim culpa\",\n    \"is_billable\": 81885199,\n    \"created_at\": \"commodo do aliqua\",\n    \"updated_at\": \"tempor Duis sunt occaecat\"\n  },\n  \"call_forwarding\": {\n    \"id\": -54883530,\n    \"number_id\": 51704197,\n    \"is_active\": true,\n    \"is_screening\": true,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"sunt nisi culpa dolor\",\n    \"country\": \"anim fugiat\",\n    \"number\": \"adipisicing pariatur non fugiat culpa\",\n    \"country_calling_code\": \"in magna commodo\",\n    \"national_number\": \"irure\",\n    \"formatted_number\": \"eu exercitation enim dolore anim\",\n    \"extension\": \"ullamco sunt\",\n    \"created_at\": \"eiusmod\",\n    \"updated_at\": \"id consectetur\"\n  },\n  \"numberable_id\": 4939105,\n  \"numberable_type\": \"dolore\",\n  \"numberable\": {\n    \"id\": 65909697,\n    \"organization_id\": 88770002,\n    \"owner_id\": 94370343,\n    \"team_id\": -22450023,\n    \"name\": \"Lorem culpa sunt aute laborum\",\n    \"created_at\": \"pariatur do\",\n    \"updated_at\": \"reprehenderit irure minim quis laborum\"\n  }\n}"}],"_postman_id":"7e3cd12d-b5bf-4705-ae8a-e9601b1390fd"},{"name":"Unassign the number from the inbox","id":"fd2ffa3f-3a90-42c3-a0cf-acf53aaf2f29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"reassign_number_id\": 31301815,\n  \"reassign\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/:number/unassign-from-inbox","description":"<p>Unassign the number from the inbox</p>\n","urlObject":{"path":["numbers",":number","unassign-from-inbox"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"4b97a56e-0043-48f0-9aa5-969a42333e3d","description":{"content":"<p>(Required) The ID of the Number</p>\n","type":"text/plain"},"type":"any","value":"","key":"number"}]}},"response":[{"id":"cc2a9109-63eb-4083-b6e6-6e0040edecfb","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"reassign_number_id\": 31301815,\n  \"reassign\": null\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/:number/unassign-from-inbox","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers",":number","unassign-from-inbox"],"variable":[{"key":"number","value":"","description":"(Required) The ID of the Number"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -7764601,\n  \"organization_id\": -91500037,\n  \"country\": \"voluptate elit\",\n  \"state\": \"eiusmod aliquip\",\n  \"city\": \"culpa commodo esse\",\n  \"number\": \"ut anim reprehenderit nulla consequat\",\n  \"number_vendor_id\": 65350051,\n  \"country_calling_code\": \"quis labore ipsum occaecat irure\",\n  \"national_number\": \"consequat Duis aute sit\",\n  \"formattedNumber\": \"sit commodo cupidatat deserunt tempor\",\n  \"formatted_number\": \"Duis l\",\n  \"short_code\": -47399126,\n  \"is_landline\": 56504764,\n  \"is_toll_free\": false,\n  \"is_aircall\": false,\n  \"voice\": true,\n  \"use_organization_call_settings\": true,\n  \"voice_outbound\": true,\n  \"mms\": false,\n  \"disabled\": false,\n  \"has_profile\": true,\n  \"verified_status\": \"est\",\n  \"area_code\": {\n    \"id\": 20157685,\n    \"area_code\": \"ea amet\",\n    \"state_code\": \"exercitation amet\",\n    \"state_name\": \"reprehenderit sunt eu\",\n    \"country_code\": \"proident ad\",\n    \"time_zone\": \"aliqua qui\",\n    \"group_id\": 99715610\n  },\n  \"landline\": {\n    \"id\": -74771783,\n    \"number_id\": -84578743,\n    \"address_sid\": \"consequat ullamco cupidatat anim nulla\",\n    \"sid\": \"aliqua consequat mollit\",\n    \"document_sid\": \"aliqua\",\n    \"status\": \"amet deserunt\",\n    \"verification_attempts\": 41291243,\n    \"last_verify_attempt_at\": \"quis ut anim\",\n    \"landline_name\": \"exercitation sed amet incididunt\",\n    \"street_address\": \"ut incididunt et sit\",\n    \"city\": \"nulla eu non ut veniam\",\n    \"state\": \"Ut laborum\",\n    \"zip_code\": \"nostrud dolore sit consequat enim\",\n    \"completed\": 13868835,\n    \"created_at\": \"proident labore\",\n    \"updated_at\": \"consequat et tempor\"\n  },\n  \"number_vendor\": {\n    \"id\": -32793919,\n    \"is_active\": false,\n    \"key\": \"sint\",\n    \"name\": \"laborum et\",\n    \"credentials_prefix\": \"ipsum et magna amet\",\n    \"twilio_sid\": \"ut velit deserunt\",\n    \"twilio_auth_token\": \"minim culpa\",\n    \"is_billable\": 81885199,\n    \"created_at\": \"commodo do aliqua\",\n    \"updated_at\": \"tempor Duis sunt occaecat\"\n  },\n  \"call_forwarding\": {\n    \"id\": -54883530,\n    \"number_id\": 51704197,\n    \"is_active\": true,\n    \"is_screening\": true,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"sunt nisi culpa dolor\",\n    \"country\": \"anim fugiat\",\n    \"number\": \"adipisicing pariatur non fugiat culpa\",\n    \"country_calling_code\": \"in magna commodo\",\n    \"national_number\": \"irure\",\n    \"formatted_number\": \"eu exercitation enim dolore anim\",\n    \"extension\": \"ullamco sunt\",\n    \"created_at\": \"eiusmod\",\n    \"updated_at\": \"id consectetur\"\n  },\n  \"numberable_id\": 4939105,\n  \"numberable_type\": \"dolore\",\n  \"numberable\": {\n    \"id\": 65909697,\n    \"organization_id\": 88770002,\n    \"owner_id\": 94370343,\n    \"team_id\": -22450023,\n    \"name\": \"Lorem culpa sunt aute laborum\",\n    \"created_at\": \"pariatur do\",\n    \"updated_at\": \"reprehenderit irure minim quis laborum\"\n  }\n}"},{"id":"3a0731e6-d3e7-4138-bc47-9e2efd9b9db3","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"reassign_number_id\": 31301815,\n  \"reassign\": null\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/:number/unassign-from-inbox","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers",":number","unassign-from-inbox"],"variable":[{"key":"number","value":"","description":"(Required) The ID of the Number"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"reassign_number_id\": \"proident aute pariatur tempor\",\n  \"number\": \"dolor laborum est\"\n}"},{"id":"4fecb14c-e874-40ac-885f-599aef787026","name":"Invalid Number","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"reassign_number_id\": 31301815,\n  \"reassign\": null\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/:number/unassign-from-inbox","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers",":number","unassign-from-inbox"],"variable":[{"key":"number","value":"","description":"(Required) The ID of the Number"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"}],"_postman_id":"fd2ffa3f-3a90-42c3-a0cf-acf53aaf2f29"},{"name":"Create unassigned number","id":"619c5380-afa6-4ef3-a2ec-662f11b7638b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"+20255555555\",\n  \"number_vendor_id\": -67215811,\n  \"vendor_id\": \"mollit non exercitation Excepteur\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/unassigned/create","description":"<p>Create unassigned numbers</p>\n","urlObject":{"path":["numbers","unassigned","create"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"63508532-847b-46de-94b2-98ff7f06eafe","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"+20255555555\",\n  \"number_vendor_id\": -67215811,\n  \"vendor_id\": \"mollit non exercitation Excepteur\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/unassigned/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -7764601,\n  \"organization_id\": -91500037,\n  \"country\": \"voluptate elit\",\n  \"state\": \"eiusmod aliquip\",\n  \"city\": \"culpa commodo esse\",\n  \"number\": \"ut anim reprehenderit nulla consequat\",\n  \"number_vendor_id\": 65350051,\n  \"country_calling_code\": \"quis labore ipsum occaecat irure\",\n  \"national_number\": \"consequat Duis aute sit\",\n  \"formattedNumber\": \"sit commodo cupidatat deserunt tempor\",\n  \"formatted_number\": \"Duis l\",\n  \"short_code\": -47399126,\n  \"is_landline\": 56504764,\n  \"is_toll_free\": false,\n  \"is_aircall\": false,\n  \"voice\": true,\n  \"use_organization_call_settings\": true,\n  \"voice_outbound\": true,\n  \"mms\": false,\n  \"disabled\": false,\n  \"has_profile\": true,\n  \"verified_status\": \"est\",\n  \"area_code\": {\n    \"id\": 20157685,\n    \"area_code\": \"ea amet\",\n    \"state_code\": \"exercitation amet\",\n    \"state_name\": \"reprehenderit sunt eu\",\n    \"country_code\": \"proident ad\",\n    \"time_zone\": \"aliqua qui\",\n    \"group_id\": 99715610\n  },\n  \"landline\": {\n    \"id\": -74771783,\n    \"number_id\": -84578743,\n    \"address_sid\": \"consequat ullamco cupidatat anim nulla\",\n    \"sid\": \"aliqua consequat mollit\",\n    \"document_sid\": \"aliqua\",\n    \"status\": \"amet deserunt\",\n    \"verification_attempts\": 41291243,\n    \"last_verify_attempt_at\": \"quis ut anim\",\n    \"landline_name\": \"exercitation sed amet incididunt\",\n    \"street_address\": \"ut incididunt et sit\",\n    \"city\": \"nulla eu non ut veniam\",\n    \"state\": \"Ut laborum\",\n    \"zip_code\": \"nostrud dolore sit consequat enim\",\n    \"completed\": 13868835,\n    \"created_at\": \"proident labore\",\n    \"updated_at\": \"consequat et tempor\"\n  },\n  \"number_vendor\": {\n    \"id\": -32793919,\n    \"is_active\": false,\n    \"key\": \"sint\",\n    \"name\": \"laborum et\",\n    \"credentials_prefix\": \"ipsum et magna amet\",\n    \"twilio_sid\": \"ut velit deserunt\",\n    \"twilio_auth_token\": \"minim culpa\",\n    \"is_billable\": 81885199,\n    \"created_at\": \"commodo do aliqua\",\n    \"updated_at\": \"tempor Duis sunt occaecat\"\n  },\n  \"call_forwarding\": {\n    \"id\": -54883530,\n    \"number_id\": 51704197,\n    \"is_active\": true,\n    \"is_screening\": true,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"sunt nisi culpa dolor\",\n    \"country\": \"anim fugiat\",\n    \"number\": \"adipisicing pariatur non fugiat culpa\",\n    \"country_calling_code\": \"in magna commodo\",\n    \"national_number\": \"irure\",\n    \"formatted_number\": \"eu exercitation enim dolore anim\",\n    \"extension\": \"ullamco sunt\",\n    \"created_at\": \"eiusmod\",\n    \"updated_at\": \"id consectetur\"\n  },\n  \"numberable_id\": 4939105,\n  \"numberable_type\": \"dolore\",\n  \"numberable\": {\n    \"id\": 65909697,\n    \"organization_id\": 88770002,\n    \"owner_id\": 94370343,\n    \"team_id\": -22450023,\n    \"name\": \"Lorem culpa sunt aute laborum\",\n    \"created_at\": \"pariatur do\",\n    \"updated_at\": \"reprehenderit irure minim quis laborum\"\n  }\n}"},{"id":"59f185b0-74dc-4f0d-80a3-fab8b5fbc965","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"+20255555555\",\n  \"number_vendor_id\": -67215811,\n  \"vendor_id\": \"mollit non exercitation Excepteur\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/unassigned/create"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"stripe\": \"magna\",\n  \"number\": \"consequat dolor veniam ut\"\n}"}],"_postman_id":"619c5380-afa6-4ef3-a2ec-662f11b7638b"},{"name":"Get unassigned numbers","id":"f0eb8804-1dee-4224-8076-12b34addffff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.1//numbers/unassigned","description":"<p>Get unassigned numbers</p>\n","urlObject":{"path":["numbers","unassigned"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"ff68bba0-0959-494c-bb0d-88bfeb0d3e2d","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/unassigned"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f0eb8804-1dee-4224-8076-12b34addffff"},{"name":"Get numbers vendors","id":"fa1afb12-1462-4669-bb4b-12f2303cecc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/vendors","description":"<p>Get numbers vendors</p>\n","urlObject":{"path":["numbers","vendors"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"3b7b2a13-fdc8-4c49-860f-33f5c8ea2ad5","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/vendors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 8026333.086736411,\n    \"name\": \"laborum laboris officia\",\n    \"text\": \"in incididunt voluptate\",\n    \"Key\": \"in labore consequat et mollit\"\n  },\n  {\n    \"id\": -60837434.46201781,\n    \"name\": \"cillum est\",\n    \"text\": \"consectetur sed sunt nisi es\",\n    \"Key\": \"nisi proident deserunt\"\n  }\n]"}],"_postman_id":"fa1afb12-1462-4669-bb4b-12f2303cecc5"}],"id":"08aaa4a7-c1d9-4a1d-968b-952db7ac09c6","_postman_id":"08aaa4a7-c1d9-4a1d-968b-952db7ac09c6","description":""},{"name":"Numbers Landline","item":[{"name":"Create landline number","id":"6539d6dc-24d9-41c9-bbdf-1567934ecf24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"ma\",\n  \"friendly_name\": \"aliqua sed\",\n  \"street\": \"id\",\n  \"city\": \"nostrud dolor officia\",\n  \"state\": \"et dolor\",\n  \"zip\": \"cillum exercitati\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/landline/create","description":"<p>Create landline number</p>\n","urlObject":{"path":["numbers","landline","create"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"09d412af-3b20-4b49-aa1a-58c3f42f4f51","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"ma\",\n  \"friendly_name\": \"aliqua sed\",\n  \"street\": \"id\",\n  \"city\": \"nostrud dolor officia\",\n  \"state\": \"et dolor\",\n  \"zip\": \"cillum exercitati\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/landline/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -7764601,\n  \"organization_id\": -91500037,\n  \"country\": \"voluptate elit\",\n  \"state\": \"eiusmod aliquip\",\n  \"city\": \"culpa commodo esse\",\n  \"number\": \"ut anim reprehenderit nulla consequat\",\n  \"number_vendor_id\": 65350051,\n  \"country_calling_code\": \"quis labore ipsum occaecat irure\",\n  \"national_number\": \"consequat Duis aute sit\",\n  \"formattedNumber\": \"sit commodo cupidatat deserunt tempor\",\n  \"formatted_number\": \"Duis l\",\n  \"short_code\": -47399126,\n  \"is_landline\": 56504764,\n  \"is_toll_free\": false,\n  \"is_aircall\": false,\n  \"voice\": true,\n  \"use_organization_call_settings\": true,\n  \"voice_outbound\": true,\n  \"mms\": false,\n  \"disabled\": false,\n  \"has_profile\": true,\n  \"verified_status\": \"est\",\n  \"area_code\": {\n    \"id\": 20157685,\n    \"area_code\": \"ea amet\",\n    \"state_code\": \"exercitation amet\",\n    \"state_name\": \"reprehenderit sunt eu\",\n    \"country_code\": \"proident ad\",\n    \"time_zone\": \"aliqua qui\",\n    \"group_id\": 99715610\n  },\n  \"landline\": {\n    \"id\": -74771783,\n    \"number_id\": -84578743,\n    \"address_sid\": \"consequat ullamco cupidatat anim nulla\",\n    \"sid\": \"aliqua consequat mollit\",\n    \"document_sid\": \"aliqua\",\n    \"status\": \"amet deserunt\",\n    \"verification_attempts\": 41291243,\n    \"last_verify_attempt_at\": \"quis ut anim\",\n    \"landline_name\": \"exercitation sed amet incididunt\",\n    \"street_address\": \"ut incididunt et sit\",\n    \"city\": \"nulla eu non ut veniam\",\n    \"state\": \"Ut laborum\",\n    \"zip_code\": \"nostrud dolore sit consequat enim\",\n    \"completed\": 13868835,\n    \"created_at\": \"proident labore\",\n    \"updated_at\": \"consequat et tempor\"\n  },\n  \"number_vendor\": {\n    \"id\": -32793919,\n    \"is_active\": false,\n    \"key\": \"sint\",\n    \"name\": \"laborum et\",\n    \"credentials_prefix\": \"ipsum et magna amet\",\n    \"twilio_sid\": \"ut velit deserunt\",\n    \"twilio_auth_token\": \"minim culpa\",\n    \"is_billable\": 81885199,\n    \"created_at\": \"commodo do aliqua\",\n    \"updated_at\": \"tempor Duis sunt occaecat\"\n  },\n  \"call_forwarding\": {\n    \"id\": -54883530,\n    \"number_id\": 51704197,\n    \"is_active\": true,\n    \"is_screening\": true,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"sunt nisi culpa dolor\",\n    \"country\": \"anim fugiat\",\n    \"number\": \"adipisicing pariatur non fugiat culpa\",\n    \"country_calling_code\": \"in magna commodo\",\n    \"national_number\": \"irure\",\n    \"formatted_number\": \"eu exercitation enim dolore anim\",\n    \"extension\": \"ullamco sunt\",\n    \"created_at\": \"eiusmod\",\n    \"updated_at\": \"id consectetur\"\n  },\n  \"numberable_id\": 4939105,\n  \"numberable_type\": \"dolore\",\n  \"numberable\": {\n    \"id\": 65909697,\n    \"organization_id\": 88770002,\n    \"owner_id\": 94370343,\n    \"team_id\": -22450023,\n    \"name\": \"Lorem culpa sunt aute laborum\",\n    \"created_at\": \"pariatur do\",\n    \"updated_at\": \"reprehenderit irure minim quis laborum\"\n  }\n}"},{"id":"3a94c264-39b7-492f-8ceb-1d83e7106e1f","name":"Incorrect Number","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"ma\",\n  \"friendly_name\": \"aliqua sed\",\n  \"street\": \"id\",\n  \"city\": \"nostrud dolor officia\",\n  \"state\": \"et dolor\",\n  \"zip\": \"cillum exercitati\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/landline/create"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"sint fugiat Ut mollit\",\n  \"raw_error\": \"Duis id incididunt Excepteur sed\"\n}"}],"_postman_id":"6539d6dc-24d9-41c9-bbdf-1567934ecf24"},{"name":"Get landline numbers","id":"b06233b8-1cf3-405b-9f25-522d10a3a8d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/landline/fetch?phone=laborum","description":"<p>Get landline numbers</p>\n","urlObject":{"path":["numbers","landline","fetch"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Phone</p>\n","type":"text/plain"},"key":"phone","value":"laborum"}],"variable":[]}},"response":[{"id":"6776bebb-2509-41e7-83c3-639fabed5535","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/landline/fetch?phone=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers","landline","fetch"],"query":[{"key":"phone","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"veniam nostrud ex\",\n  \"message\": \"pariatur laborum ad Ut\"\n}"}],"_postman_id":"b06233b8-1cf3-405b-9f25-522d10a3a8d6"},{"name":"Delete landline","id":"ff274fa0-d7e7-4b6a-9475-f9737c908c38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//numbers/landline/delete?phone=laborum","description":"<p>Delete landline</p>\n","urlObject":{"path":["numbers","landline","delete"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Phone</p>\n","type":"text/plain"},"key":"phone","value":"laborum"}],"variable":[]}},"response":[{"id":"8801056d-1f57-4c37-a502-7a229027eba0","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//numbers/landline/delete?phone=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["numbers","landline","delete"],"query":[{"key":"phone","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -7764601,\n  \"organization_id\": -91500037,\n  \"country\": \"voluptate elit\",\n  \"state\": \"eiusmod aliquip\",\n  \"city\": \"culpa commodo esse\",\n  \"number\": \"ut anim reprehenderit nulla consequat\",\n  \"number_vendor_id\": 65350051,\n  \"country_calling_code\": \"quis labore ipsum occaecat irure\",\n  \"national_number\": \"consequat Duis aute sit\",\n  \"formattedNumber\": \"sit commodo cupidatat deserunt tempor\",\n  \"formatted_number\": \"Duis l\",\n  \"short_code\": -47399126,\n  \"is_landline\": 56504764,\n  \"is_toll_free\": false,\n  \"is_aircall\": false,\n  \"voice\": true,\n  \"use_organization_call_settings\": true,\n  \"voice_outbound\": true,\n  \"mms\": false,\n  \"disabled\": false,\n  \"has_profile\": true,\n  \"verified_status\": \"est\",\n  \"area_code\": {\n    \"id\": 20157685,\n    \"area_code\": \"ea amet\",\n    \"state_code\": \"exercitation amet\",\n    \"state_name\": \"reprehenderit sunt eu\",\n    \"country_code\": \"proident ad\",\n    \"time_zone\": \"aliqua qui\",\n    \"group_id\": 99715610\n  },\n  \"landline\": {\n    \"id\": -74771783,\n    \"number_id\": -84578743,\n    \"address_sid\": \"consequat ullamco cupidatat anim nulla\",\n    \"sid\": \"aliqua consequat mollit\",\n    \"document_sid\": \"aliqua\",\n    \"status\": \"amet deserunt\",\n    \"verification_attempts\": 41291243,\n    \"last_verify_attempt_at\": \"quis ut anim\",\n    \"landline_name\": \"exercitation sed amet incididunt\",\n    \"street_address\": \"ut incididunt et sit\",\n    \"city\": \"nulla eu non ut veniam\",\n    \"state\": \"Ut laborum\",\n    \"zip_code\": \"nostrud dolore sit consequat enim\",\n    \"completed\": 13868835,\n    \"created_at\": \"proident labore\",\n    \"updated_at\": \"consequat et tempor\"\n  },\n  \"number_vendor\": {\n    \"id\": -32793919,\n    \"is_active\": false,\n    \"key\": \"sint\",\n    \"name\": \"laborum et\",\n    \"credentials_prefix\": \"ipsum et magna amet\",\n    \"twilio_sid\": \"ut velit deserunt\",\n    \"twilio_auth_token\": \"minim culpa\",\n    \"is_billable\": 81885199,\n    \"created_at\": \"commodo do aliqua\",\n    \"updated_at\": \"tempor Duis sunt occaecat\"\n  },\n  \"call_forwarding\": {\n    \"id\": -54883530,\n    \"number_id\": 51704197,\n    \"is_active\": true,\n    \"is_screening\": true,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"sunt nisi culpa dolor\",\n    \"country\": \"anim fugiat\",\n    \"number\": \"adipisicing pariatur non fugiat culpa\",\n    \"country_calling_code\": \"in magna commodo\",\n    \"national_number\": \"irure\",\n    \"formatted_number\": \"eu exercitation enim dolore anim\",\n    \"extension\": \"ullamco sunt\",\n    \"created_at\": \"eiusmod\",\n    \"updated_at\": \"id consectetur\"\n  },\n  \"numberable_id\": 4939105,\n  \"numberable_type\": \"dolore\",\n  \"numberable\": {\n    \"id\": 65909697,\n    \"organization_id\": 88770002,\n    \"owner_id\": 94370343,\n    \"team_id\": -22450023,\n    \"name\": \"Lorem culpa sunt aute laborum\",\n    \"created_at\": \"pariatur do\",\n    \"updated_at\": \"reprehenderit irure minim quis laborum\"\n  }\n}"}],"_postman_id":"ff274fa0-d7e7-4b6a-9475-f9737c908c38"},{"name":"Update inbox","id":"7aa952bb-b61b-4dcf-a3e5-4c6aeb5f3b06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"landline_phone\": \"sint occaecat eu elit\",\n  \"phone_to_replace\": \"fugiat consequat voluptate esse\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/landline/inbox/update","description":"<p>Update inbox</p>\n","urlObject":{"path":["numbers","landline","inbox","update"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"f20f564c-0998-4127-b29c-81a5df84d83d","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"landline_phone\": \"sint occaecat eu elit\",\n  \"phone_to_replace\": \"fugiat consequat voluptate esse\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/landline/inbox/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -7764601,\n  \"organization_id\": -91500037,\n  \"country\": \"voluptate elit\",\n  \"state\": \"eiusmod aliquip\",\n  \"city\": \"culpa commodo esse\",\n  \"number\": \"ut anim reprehenderit nulla consequat\",\n  \"number_vendor_id\": 65350051,\n  \"country_calling_code\": \"quis labore ipsum occaecat irure\",\n  \"national_number\": \"consequat Duis aute sit\",\n  \"formattedNumber\": \"sit commodo cupidatat deserunt tempor\",\n  \"formatted_number\": \"Duis l\",\n  \"short_code\": -47399126,\n  \"is_landline\": 56504764,\n  \"is_toll_free\": false,\n  \"is_aircall\": false,\n  \"voice\": true,\n  \"use_organization_call_settings\": true,\n  \"voice_outbound\": true,\n  \"mms\": false,\n  \"disabled\": false,\n  \"has_profile\": true,\n  \"verified_status\": \"est\",\n  \"area_code\": {\n    \"id\": 20157685,\n    \"area_code\": \"ea amet\",\n    \"state_code\": \"exercitation amet\",\n    \"state_name\": \"reprehenderit sunt eu\",\n    \"country_code\": \"proident ad\",\n    \"time_zone\": \"aliqua qui\",\n    \"group_id\": 99715610\n  },\n  \"landline\": {\n    \"id\": -74771783,\n    \"number_id\": -84578743,\n    \"address_sid\": \"consequat ullamco cupidatat anim nulla\",\n    \"sid\": \"aliqua consequat mollit\",\n    \"document_sid\": \"aliqua\",\n    \"status\": \"amet deserunt\",\n    \"verification_attempts\": 41291243,\n    \"last_verify_attempt_at\": \"quis ut anim\",\n    \"landline_name\": \"exercitation sed amet incididunt\",\n    \"street_address\": \"ut incididunt et sit\",\n    \"city\": \"nulla eu non ut veniam\",\n    \"state\": \"Ut laborum\",\n    \"zip_code\": \"nostrud dolore sit consequat enim\",\n    \"completed\": 13868835,\n    \"created_at\": \"proident labore\",\n    \"updated_at\": \"consequat et tempor\"\n  },\n  \"number_vendor\": {\n    \"id\": -32793919,\n    \"is_active\": false,\n    \"key\": \"sint\",\n    \"name\": \"laborum et\",\n    \"credentials_prefix\": \"ipsum et magna amet\",\n    \"twilio_sid\": \"ut velit deserunt\",\n    \"twilio_auth_token\": \"minim culpa\",\n    \"is_billable\": 81885199,\n    \"created_at\": \"commodo do aliqua\",\n    \"updated_at\": \"tempor Duis sunt occaecat\"\n  },\n  \"call_forwarding\": {\n    \"id\": -54883530,\n    \"number_id\": 51704197,\n    \"is_active\": true,\n    \"is_screening\": true,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"sunt nisi culpa dolor\",\n    \"country\": \"anim fugiat\",\n    \"number\": \"adipisicing pariatur non fugiat culpa\",\n    \"country_calling_code\": \"in magna commodo\",\n    \"national_number\": \"irure\",\n    \"formatted_number\": \"eu exercitation enim dolore anim\",\n    \"extension\": \"ullamco sunt\",\n    \"created_at\": \"eiusmod\",\n    \"updated_at\": \"id consectetur\"\n  },\n  \"numberable_id\": 4939105,\n  \"numberable_type\": \"dolore\",\n  \"numberable\": {\n    \"id\": 65909697,\n    \"organization_id\": 88770002,\n    \"owner_id\": 94370343,\n    \"team_id\": -22450023,\n    \"name\": \"Lorem culpa sunt aute laborum\",\n    \"created_at\": \"pariatur do\",\n    \"updated_at\": \"reprehenderit irure minim quis laborum\"\n  }\n}"}],"_postman_id":"7aa952bb-b61b-4dcf-a3e5-4c6aeb5f3b06"},{"name":"Request landline verification","id":"1d8655d9-f76f-4c2a-a359-9e977ce94eba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"non officia\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/landline/verify/request","description":"<p>Request landline verification</p>\n","urlObject":{"path":["numbers","landline","verify","request"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"75488b0d-7e28-47b0-93a2-4b7bc4c5a641","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"non officia\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//numbers/landline/verify/request"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"number\": {\n    \"id\": -37354052,\n    \"organization_id\": -68538969,\n    \"country\": \"dolor sunt\",\n    \"state\": \"in minim sint officia aliquip\",\n    \"city\": \"id ut tempor velit\",\n    \"number\": \"nostrud non elit voluptate\",\n    \"number_vendor_id\": 80971127,\n    \"country_calling_code\": \"enim cupidatat officia consectetur laborum\",\n    \"national_number\": \"minim sed commodo do\",\n    \"formattedNumber\": \"eiusmod ea in\",\n    \"formatted_number\": \"dolor pariat\",\n    \"short_code\": 1521810,\n    \"is_landline\": 73479358,\n    \"is_toll_free\": false,\n    \"is_aircall\": false,\n    \"voice\": false,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": false,\n    \"mms\": true,\n    \"disabled\": true,\n    \"has_profile\": false,\n    \"verified_status\": \"incididunt laboris consectetur Lorem\",\n    \"area_code\": {\n      \"id\": -39790524,\n      \"area_code\": \"voluptate officia velit\",\n      \"state_code\": \"voluptate co\",\n      \"state_name\": \"culpa\",\n      \"country_code\": \"ea cupidatat\",\n      \"time_zone\": \"Excepteur quis veniam dolore\",\n      \"group_id\": 72010803\n    },\n    \"landline\": {\n      \"id\": 46527065,\n      \"number_id\": 47885847,\n      \"address_sid\": \"anim Duis proident deserunt\",\n      \"sid\": \"Lorem amet sint\",\n      \"document_sid\": \"ad do cupidatat\",\n      \"status\": \"nostrud\",\n      \"verification_attempts\": -1366484,\n      \"last_verify_attempt_at\": \"do\",\n      \"landline_name\": \"culpa ullamco ut\",\n      \"street_address\": \"deserunt laboris\",\n      \"city\": \"Excepteur elit aute\",\n      \"state\": \"qui\",\n      \"zip_code\": \"Duis dolore officia\",\n      \"completed\": 55279808,\n      \"created_at\": \"dolor minim\",\n      \"updated_at\": \"enim magna laboris aute\"\n    },\n    \"number_vendor\": {\n      \"id\": 16768553,\n      \"is_active\": true,\n      \"key\": \"tempor eiusmod id\",\n      \"name\": \"magna in cupidatat reprehenderit deserunt\",\n      \"credentials_prefix\": \"dolor et dolore eu\",\n      \"twilio_sid\": \"non veniam laborum eu\",\n      \"twilio_auth_token\": \"in est qui dolor\",\n      \"is_billable\": -67669223,\n      \"created_at\": \"dolore anim deserunt labore reprehenderit\",\n      \"updated_at\": \"la\"\n    },\n    \"call_forwarding\": {\n      \"id\": -35240143,\n      \"number_id\": -9045256,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": false,\n      \"call_whisper\": \"ea\",\n      \"country\": \"ut laboris commodo\",\n      \"number\": \"qui do ad incididunt\",\n      \"country_calling_code\": \"ex pariatur ullamco\",\n      \"national_number\": \"culpa ut est pariatur incididunt\",\n      \"formatted_number\": \"mollit sint\",\n      \"extension\": \"amet sit elit Excepteur voluptate\",\n      \"created_at\": \"cillum voluptate do est laboris\",\n      \"updated_at\": \"sint\"\n    },\n    \"numberable_id\": 26704571,\n    \"numberable_type\": \"ullamco dolore\",\n    \"numberable\": {\n      \"id\": -15541940,\n      \"organization_id\": -62307778,\n      \"owner_id\": 58108589,\n      \"team_id\": -50461225,\n      \"name\": \"e\",\n      \"created_at\": \"Ut cupidatat irure es\",\n      \"updated_at\": \"laboris culpa sed\"\n    }\n  },\n  \"verification_code\": \"amet in\"\n}"}],"_postman_id":"1d8655d9-f76f-4c2a-a359-9e977ce94eba"}],"id":"f424fba4-bd6d-4ec1-8836-f6efc16b01ce","_postman_id":"f424fba4-bd6d-4ec1-8836-f6efc16b01ce","description":""},{"name":"Off Hours","item":[{"name":"Update business hours","id":"f645d678-b6a9-4b8b-83cd-7f453fbce889","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"hourable_id\": \"exercitation\",\n  \"hourable_type\": \"App\\\\Teams\\\\Team\",\n  \"timezone\": \"proident\",\n  \"days\": [\n    \"in sed ut\",\n    \"ipsum in offi\"\n  ],\n  \"message\": \"cupidatat deserunt amet\",\n  \"is_active\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//business-hours","description":"<p>Update business hours</p>\n","urlObject":{"path":["business-hours"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"2a8d9d1a-4832-488c-a15e-d29ee8717d22","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"hourable_id\": \"ex\",\n  \"hourable_type\": \"App\\\\Teams\\\\Team\",\n  \"timezone\": \"eiusmod aliqua irure ipsum qui\",\n  \"days\": [\n    \"nostrud commodo\",\n    \"tempor\"\n  ],\n  \"message\": \"sed pariatur et labore fugiat\",\n  \"is_active\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//business-hours"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"744ec955-f49f-4506-8d84-36e1a9c63d9c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"hourable_id\": \"ex\",\n  \"hourable_type\": \"App\\\\Teams\\\\Team\",\n  \"timezone\": \"eiusmod aliqua irure ipsum qui\",\n  \"days\": [\n    \"nostrud commodo\",\n    \"tempor\"\n  ],\n  \"message\": \"sed pariatur et labore fugiat\",\n  \"is_active\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//business-hours"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"},{"id":"86fe4f3b-7e9c-4b49-9a83-fdbeef58d552","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"hourable_id\": \"ex\",\n  \"hourable_type\": \"App\\\\Teams\\\\Team\",\n  \"timezone\": \"eiusmod aliqua irure ipsum qui\",\n  \"days\": [\n    \"nostrud commodo\",\n    \"tempor\"\n  ],\n  \"message\": \"sed pariatur et labore fugiat\",\n  \"is_active\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//business-hours"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f645d678-b6a9-4b8b-83cd-7f453fbce889"}],"id":"19b84378-3094-4735-9843-8f30e5c9e6bf","_postman_id":"19b84378-3094-4735-9843-8f30e5c9e6bf","description":""},{"name":"Organizations Agency","item":[{"name":"Get agency`s invitations","id":"9879917b-1d49-4fe2-b437-5374d53064ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.1//agency/invites","description":"<p>Get agency`s invitations</p>\n","urlObject":{"path":["agency","invites"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"fcc878c1-84c5-4e73-a242-93205838fe1f","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//agency/invites"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9879917b-1d49-4fe2-b437-5374d53064ea"},{"name":"Create agency's invitation","id":"ca2492cc-05b8-46ce-bc4c-dcbf81f3a883","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"test@test.test\",\n  \"plan\": \"\",\n  \"trial\": true,\n  \"organization_clone\": null,\n  \"payment_method\": null,\n  \"pay_now\": null,\n  \"card_token\": null,\n  \"first_name\": null,\n  \"last_name\": null,\n  \"integration_teams\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//agency/invites","description":"<p>Create agency's invitation</p>\n","urlObject":{"path":["agency","invites"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"90463b5c-4c05-402f-87ce-d7b329488736","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"test@test.test\",\n  \"plan\": \"\",\n  \"trial\": true,\n  \"organization_clone\": null,\n  \"payment_method\": null,\n  \"pay_now\": null,\n  \"card_token\": null,\n  \"first_name\": null,\n  \"last_name\": null,\n  \"integration_teams\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//agency/invites"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d72c22aa-6924-4292-8a0d-b838836aeb56","name":"Create Customer Error","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"test@test.test\",\n  \"plan\": \"\",\n  \"trial\": true,\n  \"organization_clone\": null,\n  \"payment_method\": null,\n  \"pay_now\": null,\n  \"card_token\": null,\n  \"first_name\": null,\n  \"last_name\": null,\n  \"integration_teams\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//agency/invites"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"}],"_postman_id":"ca2492cc-05b8-46ce-bc4c-dcbf81f3a883"},{"name":"Resend the invitation","id":"b670ef7c-4266-4bec-8036-3b9e97a0763c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[],"url":"https://api.salesmessage.com/pub/v2.1//agency/invites/:clientInvitation/resend","description":"<p>Resend the invitation</p>\n","urlObject":{"path":["agency","invites",":clientInvitation","resend"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"708bc3bf-bb96-405c-be5d-4d32f825b8bc","description":{"content":"<p>(Required) The ID of the Client invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"clientInvitation"}]}},"response":[{"id":"9e325e4c-5b85-4119-a43f-03669f51e4d9","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//agency/invites/:clientInvitation/resend","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["agency","invites",":clientInvitation","resend"],"variable":[{"key":"clientInvitation","value":"","description":"(Required) The ID of the Client invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b670ef7c-4266-4bec-8036-3b9e97a0763c"},{"name":"Update the invitation","id":"b0c21715-2526-45c3-8202-f255070ae08e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"test@test.test\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//agency/invites/:clientInvitation","description":"<p>Update the invitation</p>\n","urlObject":{"path":["agency","invites",":clientInvitation"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"c9e53c8c-5bc5-44fb-ab65-28453fe1b108","description":{"content":"<p>(Required) The ID of the Client invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"clientInvitation"}]}},"response":[{"id":"7930d351-5b5b-429b-845b-1eec7b4c63a7","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"test@test.test\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//agency/invites/:clientInvitation","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["agency","invites",":clientInvitation"],"variable":[{"key":"clientInvitation","value":"","description":"(Required) The ID of the Client invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b0c21715-2526-45c3-8202-f255070ae08e"},{"name":"Delete the invitation","id":"9a244841-e910-4b91-b70f-d69f8eb2db24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.1//agency/invites/:clientInvitation","description":"<p>Delete the invitation</p>\n","urlObject":{"path":["agency","invites",":clientInvitation"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"8b4f0ec1-855f-47de-87d5-3fe518e57118","description":{"content":"<p>(Required) The ID of the Client invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"clientInvitation"}]}},"response":[{"id":"c29a0192-7369-4659-984d-4d3cace2a7bb","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//agency/invites/:clientInvitation","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["agency","invites",":clientInvitation"],"variable":[{"key":"clientInvitation","value":"","description":"(Required) The ID of the Client invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9a244841-e910-4b91-b70f-d69f8eb2db24"},{"name":"Validate email on invitation create","id":"f7ee1d2d-ada2-473e-b81d-71a67a55d2ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"test@test.test\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//agency/invites/validate","description":"<p>Validate email on invitation create</p>\n","urlObject":{"path":["agency","invites","validate"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"11b4e59a-185a-4e9a-b547-dba954d4b22b","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"test@test.test\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//agency/invites/validate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"valid\": true\n}"}],"_postman_id":"f7ee1d2d-ada2-473e-b81d-71a67a55d2ba"},{"name":"Deletes the client from an agency","id":"677e4d7d-8823-4f16-ac87-dd929a83fe30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.1//agency/clients/:client","description":"<p>Deletes the client from an agency</p>\n","urlObject":{"path":["agency","clients",":client"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"d0e66106-a674-4afa-b62b-8a0ed60205a6","description":{"content":"<p>(Required) The ID of the Client</p>\n","type":"text/plain"},"type":"any","value":"","key":"client"}]}},"response":[{"id":"145518e5-9171-4df4-91f8-8d417ea6629c","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//agency/clients/:client","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["agency","clients",":client"],"variable":[{"key":"client","value":"","description":"(Required) The ID of the Client"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"677e4d7d-8823-4f16-ac87-dd929a83fe30"},{"name":"Get clients","id":"d46797eb-dfb1-45d0-8ee0-a550de011e41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//agency/clients","description":"<p>Get clients</p>\n","urlObject":{"path":["agency","clients"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"c7f78d7e-0e47-465e-979b-72e68c353569","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//agency/clients"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": -63725462,\n    \"owner_id\": -41798885,\n    \"number_vendor_id\": 7925187,\n    \"name\": \"veniam sed exerci\",\n    \"claimed_credits\": -21334758,\n    \"photo_url\": \"nisi dolor\"\n  },\n  {\n    \"id\": -97711422,\n    \"owner_id\": 88686817,\n    \"number_vendor_id\": 77932325,\n    \"name\": \"dolor nu\",\n    \"claimed_credits\": -13545557,\n    \"photo_url\": \"proident dolor est\"\n  }\n]"}],"_postman_id":"d46797eb-dfb1-45d0-8ee0-a550de011e41"}],"id":"4cb45f9f-1555-4307-aa00-c920a72b2c40","_postman_id":"4cb45f9f-1555-4307-aa00-c920a72b2c40","description":""},{"name":"Organizations","item":[{"name":"Updates organization's calling status","id":"1d385151-8c7f-4ae6-bf6f-7e2c0ca9492e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": true,\n  \"is_active_inbound\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/call-status","description":"<p>Updates organization's calling status</p>\n","urlObject":{"path":["organization","call-status"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"b117bda8-9b25-40fe-b953-ee6a7588147b","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": true,\n  \"is_active_inbound\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/call-status"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"75b1e0a1-06fe-4260-a4b4-ce53435a617e","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": true,\n  \"is_active_inbound\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/call-status"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"09493003-a93f-4ecb-9d11-fe67b6726d42","name":"Unprocessable Content","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": true,\n  \"is_active_inbound\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/call-status"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"is_active_inbound\": \"The is active inbound field is required.\"\n}"}],"_postman_id":"1d385151-8c7f-4ae6-bf6f-7e2c0ca9492e"},{"name":"Updates an organization's double opt in setting","id":"d2dc3652-0c37-406b-a121-9e5e3c176d7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/double-opt-in","description":"<p>Updates an organization's double opt in setting</p>\n","urlObject":{"path":["organization","double-opt-in"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"52b49d12-1b5e-49f4-8aae-1d9dd7814d56","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/double-opt-in"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -84892319,\n  \"organization_id\": -8970661,\n  \"is_active\": true\n}"},{"id":"bff693b2-4ab6-4a1e-ae43-98151fcc9be3","name":"Not Found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/double-opt-in"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"4a17d51a-e88d-4394-89df-78f440fd8ee0","name":"Unprocessable Content","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/double-opt-in"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"is_active\": \"The is active field is required.\"\n}"}],"_postman_id":"d2dc3652-0c37-406b-a121-9e5e3c176d7a"},{"name":"Delete fallback inbox","id":"16de2d55-89e1-4849-8fdb-ab1657cf7e38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/fallback-inbox","description":"<p>Delete fallback inbox</p>\n","urlObject":{"path":["organization","fallback-inbox"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"c8d62836-7219-4a95-bc54-bcb4de52f392","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/fallback-inbox"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"organization_id\": -28260948,\n  \"fallback_team_id\": -34743565\n}"},{"id":"834d2f6c-f8ae-4e8d-b210-083c2f30f9a4","name":"Failed to reset fallback inbox","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/fallback-inbox"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"}],"_postman_id":"16de2d55-89e1-4849-8fdb-ab1657cf7e38"},{"name":"Update organization's fallback inbox","id":"ab41755d-d161-4a05-a158-6d4612c35a0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/set-fallback-inbox/:team","description":"<p>Update organization's fallback inbox</p>\n","urlObject":{"path":["organization","set-fallback-inbox",":team"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"19737263-5c91-48ea-a850-b3d3d4d918e0","description":{"content":"<p>(Required) The ID of the Team</p>\n","type":"text/plain"},"type":"any","value":"","key":"team"}]}},"response":[{"id":"122afac0-924b-4f39-a005-82084a1984fb","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/set-fallback-inbox/:team","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","set-fallback-inbox",":team"],"variable":[{"key":"team","value":"","description":"(Required) The ID of the Team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"organization_id\": -28260948,\n  \"fallback_team_id\": -34743565\n}"},{"id":"c8501352-bb45-46a0-8d6c-1a5e9200a826","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/set-fallback-inbox/:team","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","set-fallback-inbox",":team"],"variable":[{"key":"team","value":"","description":"(Required) The ID of the Team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"fallback_team_id\": \"in\"\n}"}],"_postman_id":"ab41755d-d161-4a05-a158-6d4612c35a0c"},{"name":"Create filter","id":"74f86a02-588d-4a99-8633-810b236cfb73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Segment\",\n  \"filters\": {\n    \"filtersList\": [\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      },\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/segments/create","description":"<p>Create filter</p>\n","urlObject":{"path":["organization","segments","create"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"89d500b5-84c4-458d-92f1-50a665fc7cab","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Segment\",\n  \"filters\": {\n    \"filtersList\": [\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      },\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/segments/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -36362166,\n  \"organization_id\": -25934843,\n  \"name\": \"in non nisi consequat\"\n}"},{"id":"dd34b0c6-daf5-4957-8c4a-be67c28bd853","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Segment\",\n  \"filters\": {\n    \"filtersList\": [\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      },\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/segments/create"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"74f86a02-588d-4a99-8633-810b236cfb73"},{"name":"Update the filter","id":"82b54b54-8995-4d12-9481-475b5a0fea20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Segment\",\n  \"filters\": {\n    \"filtersList\": [\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      },\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/segments/:organizationFilter/update","description":"<p>Update the filter</p>\n","urlObject":{"path":["organization","segments",":organizationFilter","update"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"591d115b-7f8c-41f8-80c0-ee5b3e2547dc","description":{"content":"<p>(Required) The ID of the Organization filter</p>\n","type":"text/plain"},"type":"any","value":"","key":"organizationFilter"}]}},"response":[{"id":"9f0f0493-6958-42da-a882-a466c79d8e4d","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Segment\",\n  \"filters\": {\n    \"filtersList\": [\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      },\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/segments/:organizationFilter/update","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","segments",":organizationFilter","update"],"variable":[{"key":"organizationFilter","value":"","description":"(Required) The ID of the Organization filter"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -36362166,\n  \"organization_id\": -25934843,\n  \"name\": \"in non nisi consequat\"\n}"},{"id":"8aea8053-6299-4ef8-aae4-310a26c43ad9","name":"Not Found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Segment\",\n  \"filters\": {\n    \"filtersList\": [\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      },\n      {\n        \"filters\": [\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          },\n          {\n            \"key\": \"first_name\",\n            \"operator\": \"equals\",\n            \"value\": \"test\"\n          }\n        ]\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/segments/:organizationFilter/update","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","segments",":organizationFilter","update"],"variable":[{"key":"organizationFilter","value":"","description":"(Required) The ID of the Organization filter"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"82b54b54-8995-4d12-9481-475b5a0fea20"},{"name":"Delete the filter","id":"e0eb61ff-ae32-4c78-88e8-9748a28b5a5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.1//organization/segments/:organizationFilter/delete","description":"<p>Delete the filter</p>\n","urlObject":{"path":["organization","segments",":organizationFilter","delete"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"d3b25afe-77d2-4084-9bdd-086e1db7112b","description":{"content":"<p>(Required) The ID of the Organization filter</p>\n","type":"text/plain"},"type":"any","value":"","key":"organizationFilter"}]}},"response":[{"id":"f10bbd7c-d32a-4079-ba50-e26474e0812b","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/segments/:organizationFilter/delete","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","segments",":organizationFilter","delete"],"variable":[{"key":"organizationFilter","value":"","description":"(Required) The ID of the Organization filter"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e0eb61ff-ae32-4c78-88e8-9748a28b5a5b"},{"name":"Search segments","id":"949f92c8-495c-4fe6-b11b-99c562ae43d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/segments/search?page=1&per_page=10","description":"<p>Search segments</p>\n","urlObject":{"path":["organization","segments","search"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"per_page","value":"10"}],"variable":[]}},"response":[{"id":"ae7a1fc8-151e-4e8c-bea7-a7a53440b772","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/segments/search?page=1&per_page=10","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","segments","search"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"total\": -49182157,\n  \"current_page\": 91019847,\n  \"last_page\": 16142766,\n  \"per_page\": -6957423\n}"}],"_postman_id":"949f92c8-495c-4fe6-b11b-99c562ae43d1"},{"name":"Update the member","id":"6ed7851a-98de-410c-b009-3d0fc9f89fe4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"member_id\": 0,\n  \"remove_seat\": 0,\n  \"role\": \"admin\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/members/:member","description":"<p>Update the member</p>\n","urlObject":{"path":["organization","members",":member"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"18a88c23-74e0-4dbf-9c1c-81bff4db2bdd","description":{"content":"<p>(Required) The ID of the member</p>\n","type":"text/plain"},"type":"any","value":"","key":"member"}]}},"response":[{"id":"141558f0-3ca2-4453-b147-fb8ae432523c","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"member_id\": 0,\n  \"remove_seat\": 0,\n  \"role\": \"admin\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/members/:member","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"(Required) The ID of the member"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -43198063,\n  \"email\": \"aliqua officia Excepteur\",\n  \"first_name\": \"eu\",\n  \"last_name\": \"enim et amet nisi sit\",\n  \"full_name\": \"qui\",\n  \"role\": \"laboris proident\",\n  \"inbox_id\": 50244067,\n  \"organization_id\": 41040193,\n  \"photo_url\": \"sed occaecat dolore in\",\n  \"unread\": 58061602,\n  \"number\": \"commodo aliqua\",\n  \"formatted_number\": \"quis non dolor laboris\",\n  \"organizationNumber\": [\n    {\n      \"id\": 64681276,\n      \"country\": \"et reprehenderit\",\n      \"number\": \"ea sunt quis\",\n      \"formatted_number\": \"est Duis\",\n      \"mms\": \"nostrud anim\"\n    },\n    {\n      \"id\": -92638706,\n      \"country\": \"ex\",\n      \"number\": \"aliquip laboris commodo ut anim\",\n      \"formatted_number\": \"amet non\",\n      \"mms\": \"dolore \"\n    }\n  ],\n  \"userPermissions\": [\n    \"sunt voluptate nulla\",\n    \"ut\"\n  ]\n}"},{"id":"8d5d54d4-701b-4e71-9efb-06687d554534","name":"Not Found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"member_id\": 0,\n  \"remove_seat\": 0,\n  \"role\": \"admin\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/members/:member","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"(Required) The ID of the member"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f6a5e43e-f0fe-4532-b81a-6d07edceb7f0","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"member_id\": 0,\n  \"remove_seat\": 0,\n  \"role\": \"admin\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/members/:member","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"(Required) The ID of the member"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"}],"_postman_id":"6ed7851a-98de-410c-b009-3d0fc9f89fe4"},{"name":"Delete the member","id":"8a747f6c-e44d-4cc7-a6c8-68626ba767d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"confirm\": true,\n  \"reassign_contacts_user_id\": 1,\n  \"reassign_teams_user_id\": 1\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/members/:member","description":"<p>Delete the member</p>\n","urlObject":{"path":["organization","members",":member"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"c4824f96-8b36-4c5c-9789-bafae8c0f2e6","description":{"content":"<p>(Required) The ID of the member</p>\n","type":"text/plain"},"type":"any","value":"","key":"member"}]}},"response":[{"id":"8cae10fb-49ac-4d7b-ad51-01ef264ef12e","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"confirm\": true,\n  \"reassign_contacts_user_id\": 1,\n  \"reassign_teams_user_id\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/members/:member","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"(Required) The ID of the member"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d47cbf76-c858-4a47-8bd6-2e620f0663a3","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"confirm\": true,\n  \"reassign_contacts_user_id\": 1,\n  \"reassign_teams_user_id\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/members/:member","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"(Required) The ID of the member"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c8522d9a-27b8-4ec9-89de-27587106a3d2","name":"Unprocessable Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"confirm\": true,\n  \"reassign_contacts_user_id\": 1,\n  \"reassign_teams_user_id\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/members/:member","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"(Required) The ID of the member"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"reassign_contacts_user_id\": \"The selected reassign contacts user id is invalid.\"\n}"}],"_postman_id":"8a747f6c-e44d-4cc7-a6c8-68626ba767d9"},{"name":"Get members","id":"44937bc3-c896-4d99-b140-cf2dfdd56360","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/members","description":"<p>Get members</p>\n","urlObject":{"path":["organization","members"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"34721fe3-80f2-4564-9367-7d6448656e74","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/members"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 66676258,\n    \"email\": \"ut adipisicing incididunt aliquip cupidatat\",\n    \"first_name\": \"sint pariatur\",\n    \"last_name\": \"do ipsum\",\n    \"full_name\": \"magna voluptate\",\n    \"role\": \"qui proident\",\n    \"inbox_id\": 30179371,\n    \"organization_id\": 22973591,\n    \"photo_url\": \"velit occaecat la\",\n    \"unread\": -72940675,\n    \"number\": \"reprehenderit proident dolore velit\",\n    \"formatted_number\": \"ad\",\n    \"organizationNumber\": [\n      {\n        \"id\": -25282161,\n        \"country\": \"in \",\n        \"number\": \"labore\",\n        \"formatted_number\": \"esse exercitation culpa\",\n        \"mms\": \"voluptate anim exercitation eu\"\n      },\n      {\n        \"id\": 80758208,\n        \"country\": \"Ut in\",\n        \"number\": \"aute\",\n        \"formatted_number\": \"et amet enim\",\n        \"mms\": \"laboris velit Lorem sed\"\n      }\n    ],\n    \"userPermissions\": [\n      \"sed cillum\",\n      \"aliqua amet dolor incididunt nulla\"\n    ]\n  },\n  {\n    \"id\": -34557383,\n    \"email\": \"magna sit do aute\",\n    \"first_name\": \"laborum aute ipsum\",\n    \"last_name\": \"commodo\",\n    \"full_name\": \"labore consequat\",\n    \"role\": \"nulla aliqua quis voluptate\",\n    \"inbox_id\": -42670344,\n    \"organization_id\": -48018160,\n    \"photo_url\": \"cillum do ut irure\",\n    \"unread\": 52708385,\n    \"number\": \"irure et min\",\n    \"formatted_number\": \"occaecat\",\n    \"organizationNumber\": [\n      {\n        \"id\": -26667117,\n        \"country\": \"aute Ex\",\n        \"number\": \"sunt ex et veniam\",\n        \"formatted_number\": \"Ut dolore\",\n        \"mms\": \"Duis tempor incididunt aute\"\n      },\n      {\n        \"id\": 20029485,\n        \"country\": \"cillum labore elit nisi\",\n        \"number\": \"reprehenderit eu consequat\",\n        \"formatted_number\": \"qui eu sed cupida\",\n        \"mms\": \"velit sunt deserunt\"\n      }\n    ],\n    \"userPermissions\": [\n      \"tempor ut sint\",\n      \"minim mollit dolore in velit\"\n    ]\n  }\n]"}],"_postman_id":"44937bc3-c896-4d99-b140-cf2dfdd56360"},{"name":"Enable phone checker","id":"787a2cdf-3a1a-40bf-b241-888cd9d33c2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/phone-checker/enable","description":"<p>Enable phone checker</p>\n","urlObject":{"path":["organization","phone-checker","enable"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"6421b1d6-90e1-4f1c-8902-100026185453","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/phone-checker/enable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"organization_id\": 76511378,\n  \"is_active\": false,\n  \"enabled_at\": \"incididunt dolor aute ipsum\"\n}"}],"_postman_id":"787a2cdf-3a1a-40bf-b241-888cd9d33c2f"},{"name":"Disable phone checker","id":"3ce4efcf-5788-459d-96a4-c01cb6e217d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/phone-checker/disable","description":"<p>Disable phone checker</p>\n","urlObject":{"path":["organization","phone-checker","disable"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"8c740065-14f7-4eeb-b8c8-d4f249bb5762","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/phone-checker/disable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"organization_id\": 76511378,\n  \"is_active\": false,\n  \"enabled_at\": \"incididunt dolor aute ipsum\"\n}"}],"_postman_id":"3ce4efcf-5788-459d-96a4-c01cb6e217d4"},{"name":"Update organization profile","id":"8c4e0bc2-2f0a-48ea-9e3e-440adad9a3e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/profile?name=laborum","description":"<p>Update organization profile</p>\n","urlObject":{"path":["organization","profile"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Name</p>\n","type":"text/plain"},"key":"name","value":"laborum"}],"variable":[]}},"response":[{"id":"63066d94-7aec-4ba1-a100-1e292e0f0966","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/profile?name=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","profile"],"query":[{"key":"name","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -81220221,\n  \"owner_id\": 19908416,\n  \"number_vendor_id\": -35138881,\n  \"name\": \"fugiat commodo esse\",\n  \"claimed_credits\": -70723478,\n  \"photo_url\": \"voluptate mollit consequat\"\n}"}],"_postman_id":"8c4e0bc2-2f0a-48ea-9e3e-440adad9a3e5"},{"name":"Update organization's settings","id":"9c85e2e7-ab0e-4b77-a3fd-115e3b8dcc8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PATCH","header":[],"url":"https://api.salesmessage.com/pub/v2.1//organization/settings?featureKey=laborum&settingsKey=laborum&value=laborum&user=-46945205","description":"<p>Update organization's settings</p>\n","urlObject":{"path":["organization","settings"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Featured Key</p>\n","type":"text/plain"},"key":"featureKey","value":"laborum"},{"description":{"content":"<p>(Required) Settings Key</p>\n","type":"text/plain"},"key":"settingsKey","value":"laborum"},{"description":{"content":"<p>(Required) Value</p>\n","type":"text/plain"},"key":"value","value":"laborum"},{"description":{"content":"<p>(Required) User ID</p>\n","type":"text/plain"},"key":"user","value":"-46945205"}],"variable":[]}},"response":[{"id":"ebcc80c2-83b5-421a-ab85-a906827ab30d","name":"OK","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/settings?featureKey=laborum&settingsKey=laborum&value=laborum&user=-46945205","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","settings"],"query":[{"key":"featureKey","value":"laborum"},{"key":"settingsKey","value":"laborum"},{"key":"value","value":"laborum"},{"key":"user","value":"-46945205"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9c85e2e7-ab0e-4b77-a3fd-115e3b8dcc8e"}],"id":"beea7c56-c02d-451e-a8be-0b5a760a1c57","_postman_id":"beea7c56-c02d-451e-a8be-0b5a760a1c57","description":""},{"name":"Organizations Invitations","item":[{"name":"Get organization's invites","id":"8b6ef3ec-d133-4342-b70e-3011345bc96a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/invites","description":"<p>Get organization's invites</p>\n","urlObject":{"path":["organization","invites"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"30f5c9c0-2723-4734-bede-08f96c8740f7","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/invites"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"invitations\": [\n    {\n      \"id\": \"quis\",\n      \"organization_id\": -33019078,\n      \"owner_id\": -67169400,\n      \"user_id\": 97694399,\n      \"email\": \"reprehenderit\",\n      \"team_id\": 10929225,\n      \"number\": \"sed do\"\n    },\n    {\n      \"id\": \"sint minim fugiat\",\n      \"organization_id\": -72942299,\n      \"owner_id\": 32706568,\n      \"user_id\": 43322934,\n      \"email\": \"esse Ut\",\n      \"team_id\": 18193521,\n      \"number\": \"ea in\"\n    }\n  ],\n  \"invitation_requests\": [\n    {\n      \"id\": \"Ut ullamco in tempor\",\n      \"$integration\": \"eu sit sed\",\n      \"integration_user_id\": -28332177,\n      \"organization_id\": 53701694,\n      \"owner_id\": 71033389,\n      \"email\": \"esse dolor commodo\",\n      \"first_name\": \"incididunt Lorem\",\n      \"last_name\": \"Lorem velit\",\n      \"request_date\": \"sit \"\n    },\n    {\n      \"id\": \"Excepteur sint quis\",\n      \"$integration\": \"labore ut exercitation\",\n      \"integration_user_id\": -33940190,\n      \"organization_id\": 67850906,\n      \"owner_id\": -84900881,\n      \"email\": \"sunt ut\",\n      \"first_name\": \"Duis dolore\",\n      \"last_name\": \"consequat reprehenderit\",\n      \"request_date\": \"consectetur est sint minim\"\n    }\n  ]\n}"}],"_postman_id":"8b6ef3ec-d133-4342-b70e-3011345bc96a"},{"name":"Create organization's invite","id":"62fabd1f-4064-47f0-8367-df2f075a666c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/invites","description":"<p>Create organization's invite</p>\n","urlObject":{"path":["organization","invites"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"b1c73867-c7e7-4028-8404-97fd59997f69","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/invites"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"deserunt fugiat in\",\n    \"organization_id\": -84111640,\n    \"owner_id\": 14823844,\n    \"user_id\": -31422299,\n    \"email\": \"cillum esse elit\",\n    \"team_id\": -22212001,\n    \"number\": \"commodo sunt eiusmod\"\n  },\n  {\n    \"id\": \"dolore do veniam fugiat\",\n    \"organization_id\": 79342537,\n    \"owner_id\": -64536476,\n    \"user_id\": 52837476,\n    \"email\": \"occaecat\",\n    \"team_id\": -23628052,\n    \"number\": \"elit quis minim\"\n  }\n]"},{"id":"e95f29db-902c-465f-8ddc-acc8c44abc0e","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/invites"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"stripe\": \"veniam\"\n}"}],"_postman_id":"62fabd1f-4064-47f0-8367-df2f075a666c"},{"name":"Resend the invitation","id":"97e5cd6f-d58e-45d6-9d81-70de1e538af2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//organization/invites/:invitation/resend","description":"<p>Resend the invitation</p>\n","urlObject":{"path":["organization","invites",":invitation","resend"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"6654e65d-8ef4-47df-a12f-7425bd187b38","description":{"content":"<p>(Required) The ID of the invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"invitation"}]}},"response":[{"id":"db9f85eb-6f91-42fd-943e-4ff09069786a","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/invites/:invitation/resend","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","invites",":invitation","resend"],"variable":[{"key":"invitation","value":"","description":"(Required) The ID of the invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"labore\",\n  \"organization_id\": 30697712,\n  \"owner_id\": 26497388,\n  \"user_id\": -48464266,\n  \"email\": \"qui Ut Duis\",\n  \"team_id\": -65975379,\n  \"number\": \"Ut dolor nostrud\"\n}"}],"_postman_id":"97e5cd6f-d58e-45d6-9d81-70de1e538af2"},{"name":"Update the invitation","id":"f3ce0267-8d18-4e81-8a50-bbaad842bc3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"tempor labore cillum nulla nostrud\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//organization/invites/:invitation","description":"<p>Update the invitation</p>\n","urlObject":{"path":["organization","invites",":invitation"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"02b7416a-8bcf-497d-806e-386a1d85279b","description":{"content":"<p>(Required) The ID of the invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"invitation"}]}},"response":[{"id":"5da8c13b-2ffb-49b3-966c-deb555b2d347","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"tempor labore cillum nulla nostrud\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"","description":"(Required) The ID of the invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"labore\",\n  \"organization_id\": 30697712,\n  \"owner_id\": 26497388,\n  \"user_id\": -48464266,\n  \"email\": \"qui Ut Duis\",\n  \"team_id\": -65975379,\n  \"number\": \"Ut dolor nostrud\"\n}"},{"id":"25e39a6e-9a2a-4977-8d45-b56f435a3acd","name":"Not Found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"tempor labore cillum nulla nostrud\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"","description":"(Required) The ID of the invitation"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f3ce0267-8d18-4e81-8a50-bbaad842bc3f"},{"name":"Delete the invitation","id":"23ce10ad-3ff5-4186-b319-98b11fa36e2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.1//organization/invites/:invitation","description":"<p>Delete the invitation</p>\n","urlObject":{"path":["organization","invites",":invitation"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"a5051201-875a-4fe5-837c-d4cea10f49f3","description":{"content":"<p>(Required) The ID of the invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"invitation"}]}},"response":[{"id":"c68621f8-3a4d-46da-9f5e-78a64ca7c00b","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"","description":"(Required) The ID of the invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"4b3b4bb2-ff0b-459e-ad63-289d1f1cc863","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"","description":"(Required) The ID of the invitation"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"23ce10ad-3ff5-4186-b319-98b11fa36e2c"}],"id":"0f434a54-06bb-40b6-a240-d1d3deefeb11","_postman_id":"0f434a54-06bb-40b6-a240-d1d3deefeb11","description":""},{"name":"Triggers","item":[{"name":"Get all triggers","id":"308a8c00-3288-46a6-81a6-1bd7eb1b2ba0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//triggers","description":"<p>Get all triggers</p>\n","urlObject":{"path":["triggers"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"8ef47df3-deba-427a-964a-2c1742eb22ca","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//triggers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": -32568819,\n    \"organization_id\": -51841067,\n    \"owner_id\": \"laborum sunt tempor dolor\",\n    \"number_id\": \"sit est labore cupidatat\",\n    \"team_id\": \"mollit ad\",\n    \"is_active\": \"consectetur commodo laborum pariatur\",\n    \"integration\": [\n      {\n        \"id\": -23523912,\n        \"key\": \"aliqua laborum ul\",\n        \"name\": \"reprehenderit\",\n        \"photo_url\": \"no\"\n      },\n      {\n        \"id\": -83548988,\n        \"key\": \"volup\",\n        \"name\": \"magna id aliquip\",\n        \"photo_url\": \"Lorem velit consectetur in\"\n      }\n    ],\n    \"created_at\": \"deserunt voluptate nisi anim consequat\",\n    \"updated_at\": \"enim\",\n    \"contacts\": [\n      {\n        \"id\": -38478544,\n        \"owner_id\": -8026823,\n        \"color\": \"sunt in\",\n        \"first_name\": \"Ut sint nulla\",\n        \"last_name\": \"anim proident\",\n        \"full_name\": \"commodo laboris reprehenderit\",\n        \"email\": \"eu do\",\n        \"photo_url\": \"ipsum irure ut magna ad\",\n        \"number\": \"culpa pariatur dolore Lorem\",\n        \"country\": \"\",\n        \"country_calling_code\": \"Excepteur\",\n        \"national_number\": \"fugiat consectetur a\",\n        \"typeted_number\": \"labore exercit\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"qui exercitation\",\n        \"opt_in_request_at\": \"magna\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 36402237\n          },\n          {\n            \"number_id\": -87627938\n          }\n        ],\n        \"opt_in_at\": \"non elit\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -19987581,\n            \"number_id\": -1746008,\n            \"name\": \"irure\",\n            \"disabled\": true,\n            \"timestamp\": \"aliqua\",\n            \"value\": false\n          },\n          {\n            \"id\": -15154780,\n            \"number_id\": 20627689,\n            \"name\": \"sed ut minim Excepteur\",\n            \"disabled\": true,\n            \"timestamp\": \"irure dolore dolor\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"cillum aliquip est\",\n        \"updated_at\": \"ullamco aliqua mollit\",\n        \"integration_vendor_id\": -37917004,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": -42853069,\n            \"key\": \"mollit amet quis tempor dolor\",\n            \"name\": \"sint occaecat non\",\n            \"photo_url\": \"ut sint\"\n          },\n          {\n            \"id\": -43716693,\n            \"key\": \"Lorem ex culpa\",\n            \"name\": \"sunt dolore ut qui\",\n            \"photo_url\": \"voluptate nostrud\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 52137114,\n            \"custom_field_id\": -64261684,\n            \"contact_id\": 29751421,\n            \"field_key\": \"magna dolore\",\n            \"organization_id\": 24423464,\n            \"text\": \"Ut ullamco\",\n            \"number\": 31332554,\n            \"date\": \"cupidatat amet fugiat deserunt\",\n            \"created_at\": \"sunt esse eu consequat aliquip\",\n            \"updated_at\": \"minim sit\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": 29710780,\n            \"custom_field_id\": 88622629,\n            \"contact_id\": 26175303,\n            \"field_key\": \"amet sed\",\n            \"organization_id\": 83799627,\n            \"text\": \"eiusmod in qui aliqua laborum\",\n            \"number\": 71841733,\n            \"date\": \"mollit nisi consequat\",\n            \"created_at\": \"commodo enim pariatur\",\n            \"updated_at\": \"eu adipisicing cillum in\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": -13713584,\n            \"name\": \"labore u\",\n            \"label\": \"irure commodo ipsum\",\n            \"created_at\": \"id\"\n          },\n          {\n            \"id\": -11752712,\n            \"name\": \"qui quis ullamco tempor\",\n            \"label\": \"dolor nisi\",\n            \"created_at\": \"in dolor fugiat minim magna\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -36872317,\n            \"text\": \"Ut quis nisi\",\n            \"created_at\": \"dolore do fugiat\",\n            \"updated_at\": \"qui no\"\n          },\n          {\n            \"id\": -58703193,\n            \"text\": \"laboris tempor sit\",\n            \"created_at\": \"esse labore\",\n            \"updated_at\": \"ut magna\"\n          }\n        ]\n      },\n      {\n        \"id\": 43599783,\n        \"owner_id\": -8085728,\n        \"color\": \"incididunt non\",\n        \"first_name\": \"ut in esse\",\n        \"last_name\": \"exercitation Exce\",\n        \"full_name\": \"reprehenderit\",\n        \"email\": \"sint ex reprehenderit pariatur\",\n        \"photo_url\": \"sit deserunt\",\n        \"number\": \"eu sint\",\n        \"country\": \"cillum deserunt in\",\n        \"country_calling_code\": \"Duis deserunt\",\n        \"national_number\": \"elit ipsum Duis\",\n        \"typeted_number\": \"velit id sit\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"in ad incididunt anim\",\n        \"opt_in_request_at\": \"et officia\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": -65410827\n          },\n          {\n            \"number_id\": -48393995\n          }\n        ],\n        \"opt_in_at\": \"sunt\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -36182699,\n            \"number_id\": 10253004,\n            \"name\": \"id\",\n            \"disabled\": true,\n            \"timestamp\": \"non\",\n            \"value\": false\n          },\n          {\n            \"id\": 3122831,\n            \"number_id\": -15508273,\n            \"name\": \"pariatur est dolore\",\n            \"disabled\": false,\n            \"timestamp\": \"aute esse\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"aliqua culpa\",\n        \"updated_at\": \"veniam\",\n        \"integration_vendor_id\": 62606166,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 23482653,\n            \"key\": \"ex occaecat quis esse\",\n            \"name\": \"id\",\n            \"photo_url\": \"dolor magna\"\n          },\n          {\n            \"id\": -50587601,\n            \"key\": \"ipsum dolore\",\n            \"name\": \"mollit\",\n            \"photo_url\": \"incididunt adipisicing\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 55251169,\n            \"custom_field_id\": 5683571,\n            \"contact_id\": 44710400,\n            \"field_key\": \"eiusmod do in elit\",\n            \"organization_id\": -60487850,\n            \"text\": \"nisi mollit incididunt\",\n            \"number\": 22340981,\n            \"date\": \"qui voluptate\",\n            \"created_at\": \"voluptate\",\n            \"updated_at\": \"occaecat anim\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": 58346387,\n            \"custom_field_id\": -78622074,\n            \"contact_id\": -79618334,\n            \"field_key\": \"id qui\",\n            \"organization_id\": 90821875,\n            \"text\": \"L\",\n            \"number\": -62821550,\n            \"date\": \"non\",\n            \"created_at\": \"quis irure labore non aliquip\",\n            \"updated_at\": \"reprehenderit ut officia elit ad\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": -80230202,\n            \"name\": \"id magna reprehenderit culpa labore\",\n            \"label\": \"pariatur\",\n            \"created_at\": \"exercitation consectetur officia tempor\"\n          },\n          {\n            \"id\": 84388264,\n            \"name\": \"elit ullamco officia\",\n            \"label\": \"irure\",\n            \"created_at\": \"Ut quis consectetur qui\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -38603002,\n            \"text\": \"voluptate Ut\",\n            \"created_at\": \"nisi ut do incididu\",\n            \"updated_at\": \"dolor\"\n          },\n          {\n            \"id\": -41051376,\n            \"text\": \"consectetur sint deserunt reprehenderit dolore\",\n            \"created_at\": \"veniam aliqua fugiat ad\",\n            \"updated_at\": \"laborum dolore amet\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"id\": -40542922,\n    \"organization_id\": 13544375,\n    \"owner_id\": \"sint reprehenderit\",\n    \"number_id\": \"non sint sunt cillum laboris\",\n    \"team_id\": \"magna nulla consectetur\",\n    \"is_active\": \"fugiat laborum\",\n    \"integration\": [\n      {\n        \"id\": -67280673,\n        \"key\": \"sunt irure ipsum laboris\",\n        \"name\": \"dolore do\",\n        \"photo_url\": \"eu sit\"\n      },\n      {\n        \"id\": 80638346,\n        \"key\": \"officia qui ad ex\",\n        \"name\": \"quis ipsum\",\n        \"photo_url\": \"elit sunt commodo esse\"\n      }\n    ],\n    \"created_at\": \"anim id eiusmod dolore exercitation\",\n    \"updated_at\": \"anim ullamco\",\n    \"contacts\": [\n      {\n        \"id\": -3056450,\n        \"owner_id\": -91980586,\n        \"color\": \"est quis officia exercitation dolore\",\n        \"first_name\": \"Lorem Excepteur adi\",\n        \"last_name\": \"ut aute eu mollit cupidatat\",\n        \"full_name\": \"dolore tempor sed\",\n        \"email\": \"dolor culpa magna\",\n        \"photo_url\": \"nisi eu mollit sed\",\n        \"number\": \"velit nulla cillu\",\n        \"country\": \"dolor velit pariatur qui\",\n        \"country_calling_code\": \"id ex\",\n        \"national_number\": \"anim mol\",\n        \"typeted_number\": \"amet irure\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"dolore elit Ut aliquip mollit\",\n        \"opt_in_request_at\": \"esse non\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": -67106215\n          },\n          {\n            \"number_id\": 93374416\n          }\n        ],\n        \"opt_in_at\": \"officia non\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 53050084,\n            \"number_id\": -23732882,\n            \"name\": \"cupidatat dolor laborum offic\",\n            \"disabled\": true,\n            \"timestamp\": \"do\",\n            \"value\": false\n          },\n          {\n            \"id\": 48456079,\n            \"number_id\": 44384402,\n            \"name\": \"deserunt ea laboris\",\n            \"disabled\": false,\n            \"timestamp\": \"cupidatat commodo culpa\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"ut d\",\n        \"updated_at\": \"mollit consequat\",\n        \"integration_vendor_id\": -82099967,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 56725231,\n            \"key\": \"sed anim aute\",\n            \"name\": \"elit aute\",\n            \"photo_url\": \"minim magna eiusmod Duis\"\n          },\n          {\n            \"id\": -25633418,\n            \"key\": \"elit in enim\",\n            \"name\": \"Excepteur exercitation nisi\",\n            \"photo_url\": \"incididunt\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -42471421,\n            \"custom_field_id\": -69396096,\n            \"contact_id\": 99169295,\n            \"field_key\": \"in\",\n            \"organization_id\": -27506188,\n            \"text\": \"eu\",\n            \"number\": -89724009,\n            \"date\": \"in Excepteur\",\n            \"created_at\": \"fugiat consectetur anim\",\n            \"updated_at\": \"in ut id\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": 79569449,\n            \"custom_field_id\": 56848372,\n            \"contact_id\": 57605112,\n            \"field_key\": \"enim nostru\",\n            \"organization_id\": 88918101,\n            \"text\": \"cillum enim Lorem deserunt\",\n            \"number\": 51795448,\n            \"date\": \"et amet in adipisicing deserunt\",\n            \"created_at\": \"in non magna\",\n            \"updated_at\": \"ut mollit\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 94830279,\n            \"name\": \"laboris Lorem dolore laborum\",\n            \"label\": \"anim enim qui\",\n            \"created_at\": \"pariatur in anim\"\n          },\n          {\n            \"id\": -20509352,\n            \"name\": \"et Lorem ipsum\",\n            \"label\": \"sint laboris do\",\n            \"created_at\": \"aliqua tempor\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -89217728,\n            \"text\": \"labore reprehenderit\",\n            \"created_at\": \"commodo reprehenderit sint ipsum\",\n            \"updated_at\": \"nisi in Lorem magna\"\n          },\n          {\n            \"id\": 64622089,\n            \"text\": \"reprehenderit culpa dolore qui nostrud\",\n            \"created_at\": \"amet elit\",\n            \"updated_at\": \"exercitation ex culpa officia et\"\n          }\n        ]\n      },\n      {\n        \"id\": 45788594,\n        \"owner_id\": 94407242,\n        \"color\": \"culpa anim\",\n        \"first_name\": \"ips\",\n        \"last_name\": \"n\",\n        \"full_name\": \"cillum eiusmod irure tempor enim\",\n        \"email\": \"magna id deserunt consequat\",\n        \"photo_url\": \"ad Lorem labore\",\n        \"number\": \"\",\n        \"country\": \"Lorem adipisicing\",\n        \"country_calling_code\": \"labore non id\",\n        \"national_number\": \"in veniam Excepteur incididunt\",\n        \"typeted_number\": \"et dolor mollit cupidatat eiusmod\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"commodo nulla\",\n        \"opt_in_request_at\": \"ipsum tempor\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 63215760\n          },\n          {\n            \"number_id\": 65247588\n          }\n        ],\n        \"opt_in_at\": \"non\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -50401601,\n            \"number_id\": 93940893,\n            \"name\": \"exercitation nulla tempor\",\n            \"disabled\": true,\n            \"timestamp\": \"enim cillum\",\n            \"value\": false\n          },\n          {\n            \"id\": -25732651,\n            \"number_id\": -3263941,\n            \"name\": \"non Lorem\",\n            \"disabled\": true,\n            \"timestamp\": \"consec\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"voluptate in enim non mollit\",\n        \"updated_at\": \"id est fugiat\",\n        \"integration_vendor_id\": 57044003,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": -50905174,\n            \"key\": \"laboris tempor\",\n            \"name\": \"commodo\",\n            \"photo_url\": \"fugiat elit nisi\"\n          },\n          {\n            \"id\": 17077793,\n            \"key\": \"nostrud est voluptate officia\",\n            \"name\": \"id\",\n            \"photo_url\": \"exercitation\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -92394339,\n            \"custom_field_id\": 87735988,\n            \"contact_id\": 9458710,\n            \"field_key\": \"adipisicing Duis\",\n            \"organization_id\": -29250111,\n            \"text\": \"cillum exercitation\",\n            \"number\": 2368791,\n            \"date\": \"in velit ipsum\",\n            \"created_at\": \"esse Ut officia ex\",\n            \"updated_at\": \"fu\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": 77757255,\n            \"custom_field_id\": -19657318,\n            \"contact_id\": 65653263,\n            \"field_key\": \"dolor incididunt deserunt aliqua et\",\n            \"organization_id\": -25731842,\n            \"text\": \"aliqua laboris ut Lorem\",\n            \"number\": -44665383,\n            \"date\": \"irure Lorem reprehenderit velit\",\n            \"created_at\": \"eiusmod\",\n            \"updated_at\": \"dolore labore\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": -51093057,\n            \"name\": \"dolore est \",\n            \"label\": \"magna non\",\n            \"created_at\": \"ex\"\n          },\n          {\n            \"id\": -10117532,\n            \"name\": \"dolor\",\n            \"label\": \"laboris aliqua\",\n            \"created_at\": \"quis\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 34814010,\n            \"text\": \"sit id consectetur\",\n            \"created_at\": \"exercitation ipsum proident nisi\",\n            \"updated_at\": \"minim in velit\"\n          },\n          {\n            \"id\": 63326025,\n            \"text\": \"consequat\",\n            \"created_at\": \"Lore\",\n            \"updated_at\": \"cupidatat eu\"\n          }\n        ]\n      }\n    ]\n  }\n]"}],"_postman_id":"308a8c00-3288-46a6-81a6-1bd7eb1b2ba0"},{"name":"Create trigger","id":"742a2f7e-0dce-4bf0-8b97-6dfc5f9aabeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"in et aute\",\n  \"message\": \"aliquip\",\n  \"is_track_conversion\": \"false\",\n  \"conversion_id\": -52907703,\n  \"number_id\": -79341009\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//triggers","description":"<p>Create trigger</p>\n","urlObject":{"path":["triggers"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"b9a06435-dfe7-4057-902f-c1dafac9589c","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"in et aute\",\n  \"message\": \"aliquip\",\n  \"is_track_conversion\": \"false\",\n  \"conversion_id\": -52907703,\n  \"number_id\": -79341009\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//triggers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 93776635,\n  \"organization_id\": 69665853,\n  \"owner_id\": \"occaecat\",\n  \"number_id\": \"Dui\",\n  \"team_id\": \"qui Duis\",\n  \"is_active\": \"qui in\",\n  \"integration\": [\n    {\n      \"id\": -33951559,\n      \"key\": \"fugiat labo\",\n      \"name\": \"dolore\",\n      \"photo_url\": \"commodo do\"\n    },\n    {\n      \"id\": -90118185,\n      \"key\": \"esse\",\n      \"name\": \"ut nulla non in\",\n      \"photo_url\": \"amet quis labore commodo esse\"\n    }\n  ],\n  \"created_at\": \"labore elit commodo\",\n  \"updated_at\": \"nostrud laborum\",\n  \"contacts\": [\n    {\n      \"id\": -76283529,\n      \"owner_id\": -43765981,\n      \"color\": \"officia Lorem commodo\",\n      \"first_name\": \"ea dolore non reprehenderit\",\n      \"last_name\": \"elit nulla\",\n      \"full_name\": \"magna adipisicing do\",\n      \"email\": \"amet sed non ad\",\n      \"photo_url\": \"esse ad iru\",\n      \"number\": \"eu tempor minim sunt\",\n      \"country\": \"ea consequat esse culpa\",\n      \"country_calling_code\": \"ullamco ea magna id\",\n      \"national_number\": \"dolor consequat\",\n      \"typeted_number\": \"deserunt\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"sit tempor esse fugiat\",\n      \"opt_in_request_at\": \"do laboris eiusmod\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 65277775\n        },\n        {\n          \"number_id\": -6159519\n        }\n      ],\n      \"opt_in_at\": \"nisi id\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 12761034,\n          \"number_id\": 57525723,\n          \"name\": \"laborum ex\",\n          \"disabled\": true,\n          \"timestamp\": \"fugiat qui\",\n          \"value\": true\n        },\n        {\n          \"id\": 36932544,\n          \"number_id\": 86859496,\n          \"name\": \"occaecat culpa incididunt mollit\",\n          \"disabled\": false,\n          \"timestamp\": \"sed exe\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"in sunt sint dolor\",\n      \"updated_at\": \"amet reprehenderit nisi officia\",\n      \"integration_vendor_id\": -2395845,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 66444411,\n          \"key\": \"Excepteur voluptate sed mollit in\",\n          \"name\": \"incididunt mollit\",\n          \"photo_url\": \"ulla\"\n        },\n        {\n          \"id\": -96298524,\n          \"key\": \"culpa consequat fugiat\",\n          \"name\": \"elit ut esse in\",\n          \"photo_url\": \"consequ\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 55451718,\n          \"custom_field_id\": -47040165,\n          \"contact_id\": 57256828,\n          \"field_key\": \"proident culpa fugiat\",\n          \"organization_id\": -73313640,\n          \"text\": \"ea\",\n          \"number\": -75091823,\n          \"date\": \"Ut aute dolore commodo\",\n          \"created_at\": \"officia ea\",\n          \"updated_at\": \"eiusmod co\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 61155795,\n          \"custom_field_id\": -29663624,\n          \"contact_id\": 1642147,\n          \"field_key\": \"nulla esse\",\n          \"organization_id\": 24857011,\n          \"text\": \"cupidatat ut esse\",\n          \"number\": 59933622,\n          \"date\": \"quis Excepteur\",\n          \"created_at\": \"esse consectetur ut culpa\",\n          \"updated_at\": \"reprehenderit aliquip non\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 51591763,\n          \"name\": \"tempor esse voluptate consequat\",\n          \"label\": \"nulla Ut amet\",\n          \"created_at\": \"sed Lorem\"\n        },\n        {\n          \"id\": 85803737,\n          \"name\": \"a\",\n          \"label\": \"reprehenderit qui consectetur\",\n          \"created_at\": \"consectetur tempo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -45635085,\n          \"text\": \"ullamco el\",\n          \"created_at\": \"enim pariatur aute\",\n          \"updated_at\": \"in\"\n        },\n        {\n          \"id\": 6468725,\n          \"text\": \"velit ea\",\n          \"created_at\": \"dolore ad in veniam reprehenderit\",\n          \"updated_at\": \"exercitation laboris\"\n        }\n      ]\n    },\n    {\n      \"id\": -25220828,\n      \"owner_id\": 25262085,\n      \"color\": \"laboris nulla enim cupidatat sed\",\n      \"first_name\": \"culpa sunt tempo\",\n      \"last_name\": \"aliqua laboris deserunt Duis non\",\n      \"full_name\": \"ipsum\",\n      \"email\": \"incididunt ut qui\",\n      \"photo_url\": \"sunt eu\",\n      \"number\": \"Duis dolor reprehenderit dolor\",\n      \"country\": \"aliqua consectetur occ\",\n      \"country_calling_code\": \"eu labore dolor consectetur ut\",\n      \"national_number\": \"eu labore dolore in\",\n      \"typeted_number\": \"sed tempor ut\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"eiusmod ven\",\n      \"opt_in_request_at\": \"adipisicing exercitation enim sed dolore\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -16631608\n        },\n        {\n          \"number_id\": -42450497\n        }\n      ],\n      \"opt_in_at\": \"incididunt enim id non\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 4557764,\n          \"number_id\": -9030131,\n          \"name\": \"laboris culpa sint\",\n          \"disabled\": false,\n          \"timestamp\": \"nostrud dolore aliqua consectetu\",\n          \"value\": false\n        },\n        {\n          \"id\": -84373721,\n          \"number_id\": 65063679,\n          \"name\": \"sed cupidatat Excepteur officia nulla\",\n          \"disabled\": false,\n          \"timestamp\": \"esse in\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"ex mollit nisi cillum veniam\",\n      \"updated_at\": \"Ut dolore eu\",\n      \"integration_vendor_id\": -58292455,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": -84410984,\n          \"key\": \"exercitation laborum ame\",\n          \"name\": \"in laboris culpa elit\",\n          \"photo_url\": \"et qui\"\n        },\n        {\n          \"id\": 23577664,\n          \"key\": \"id dolore dolor\",\n          \"name\": \"do consectetur deserunt quis\",\n          \"photo_url\": \"consequat eiusmod ea dolore\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 9581730,\n          \"custom_field_id\": 71734692,\n          \"contact_id\": 66007305,\n          \"field_key\": \"dolor in\",\n          \"organization_id\": -99923880,\n          \"text\": \"veniam elit nulla officia\",\n          \"number\": 12711479,\n          \"date\": \"in exercit\",\n          \"created_at\": \"id reprehenderit occaecat dolore\",\n          \"updated_at\": \"e\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 87220510,\n          \"custom_field_id\": -91683160,\n          \"contact_id\": 34723709,\n          \"field_key\": \"a\",\n          \"organization_id\": 97818834,\n          \"text\": \"ex labore commodo\",\n          \"number\": -301536,\n          \"date\": \"enim\",\n          \"created_at\": \"laborum sed Duis consequat\",\n          \"updated_at\": \"veniam dolore deserunt\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -12890741,\n          \"name\": \"elit proident incididunt\",\n          \"label\": \"in do dol\",\n          \"created_at\": \"Ut Lorem dolore amet\"\n        },\n        {\n          \"id\": -48936935,\n          \"name\": \"voluptate Lorem\",\n          \"label\": \"cillum veniam sunt\",\n          \"created_at\": \"nostrud incididunt adipisicing dolor\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 66107591,\n          \"text\": \"aliquip tempor\",\n          \"created_at\": \"quis\",\n          \"updated_at\": \"in elit adipisicing\"\n        },\n        {\n          \"id\": 34429932,\n          \"text\": \"adipisicing do in\",\n          \"created_at\": \"laboris id\",\n          \"updated_at\": \"ut amet\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"d2632713-47fe-41d2-a248-b19013563d55","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"in et aute\",\n  \"message\": \"aliquip\",\n  \"is_track_conversion\": \"false\",\n  \"conversion_id\": -52907703,\n  \"number_id\": -79341009\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//triggers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"}],"_postman_id":"742a2f7e-0dce-4bf0-8b97-6dfc5f9aabeb"},{"name":"Bulk delete triggers","id":"adb583c6-36c0-4f54-a81d-677c427d515c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    -62675712,\n    49658193\n  ],\n  \"bulk_all\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//triggers","description":"<p>Bulk delete triggers</p>\n","urlObject":{"path":["triggers"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"fbeefef9-d676-476f-a3f2-ed074e02bb9b","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    -95822478,\n    14230589\n  ],\n  \"bulk_all\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//triggers"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"eed17e0a-175e-4c5f-93d6-87bd22bd7314","name":"Unprocessable Entity","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    -95822478,\n    14230589\n  ],\n  \"bulk_all\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//triggers"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"ids\": \"mollit consectetur\"\n}"}],"_postman_id":"adb583c6-36c0-4f54-a81d-677c427d515c"},{"name":"Get trigger contacts","id":"a6617789-4142-4a14-99f6-39b6c3029e58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//triggers/contacts/:trigger?filter=laborum&page=1&length=10","description":"<p>Get trigger contacts</p>\n","urlObject":{"path":["triggers","contacts",":trigger"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Filter</p>\n","type":"text/plain"},"key":"filter","value":"laborum"},{"description":{"content":"<p>The page of a collection to return.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"length","value":"10"}],"variable":[{"id":"ada9e4d5-5685-481e-99db-93832459aebb","description":{"content":"<p>(Required) The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"trigger"}]}},"response":[{"id":"3250ed21-47c0-474f-93a9-c5f0bc38e28a","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//triggers/contacts/:trigger?filter=laborum&page=1&length=10","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["triggers","contacts",":trigger"],"query":[{"key":"filter","value":"laborum"},{"key":"page","value":"1"},{"key":"length","value":"10"}],"variable":[{"key":"trigger","value":"65893348","description":"(Required) The ID of the Trigger"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -48316342,\n  \"owner_id\": -50011177,\n  \"color\": \"ut ea adipisicing amet\",\n  \"first_name\": \"anim voluptate ipsum\",\n  \"last_name\": \"velit nisi\",\n  \"full_name\": \"elit ipsum dolore incididunt cupidatat\",\n  \"email\": \"magna exercitation officia dolore\",\n  \"photo_url\": \"ea laboris sint\",\n  \"number\": \"incid\",\n  \"country\": \"Excepteur\",\n  \"country_calling_code\": \"aute Lorem proident\",\n  \"national_number\": \"qui aute\",\n  \"typeted_number\": \"non\",\n  \"is_blocked\": true,\n  \"opt_out\": true,\n  \"opt_out_at\": \"officia e\",\n  \"opt_in_request_at\": \"eiusmod ullamco dolore et\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 78537782\n    },\n    {\n      \"number_id\": 28159159\n    }\n  ],\n  \"opt_in_at\": \"amet eu do laborum\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": -85763768,\n      \"number_id\": -45788081,\n      \"name\": \"pariatur proident amet qui\",\n      \"disabled\": true,\n      \"timestamp\": \"deserunt laboris eu\",\n      \"value\": false\n    },\n    {\n      \"id\": 20243907,\n      \"number_id\": -52213105,\n      \"name\": \"id labo\",\n      \"disabled\": true,\n      \"timestamp\": \"culpa enim mollit\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"sit sint\",\n  \"updated_at\": \"nostrud do laboris\",\n  \"integration_vendor_id\": -85036390,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": -35222382,\n      \"key\": \"in ullamco velit anim\",\n      \"name\": \"velit enim in Duis\",\n      \"photo_url\": \"qui in\"\n    },\n    {\n      \"id\": -1148798,\n      \"key\": \"id sit amet\",\n      \"name\": \"deserunt aute Ut quis\",\n      \"photo_url\": \"dolor dolore\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 44985928,\n      \"custom_field_id\": 98514142,\n      \"contact_id\": -63927733,\n      \"field_key\": \"sunt enim incididunt ex\",\n      \"organization_id\": -55033624,\n      \"text\": \"dolor cillum\",\n      \"number\": -41653896,\n      \"date\": \"et incididunt do cillum in\",\n      \"created_at\": \"dolore labore consectetur\",\n      \"updated_at\": \"pariatur sint adipisicing\",\n      \"value\": [\n        {\n          \"type\": \"minim veniam sunt consectetur\",\n          \"value\": \"consectetur aute sit cupidatat\"\n        },\n        {\n          \"type\": \"proident exercitation sed Excepteur\",\n          \"value\": \"irure voluptate\"\n        }\n      ]\n    },\n    {\n      \"id\": -97968367,\n      \"custom_field_id\": -43707799,\n      \"contact_id\": -6152904,\n      \"field_key\": \"incididunt nisi\",\n      \"organization_id\": 19673440,\n      \"text\": \"ut in Lorem aliqua\",\n      \"number\": 4921249,\n      \"date\": \"proident deserunt occ\",\n      \"created_at\": \"officia sunt\",\n      \"updated_at\": \"Ut dolor laborum ex\",\n      \"value\": [\n        {\n          \"type\": \"aliqua dolore in fug\",\n          \"value\": \"exercitation nostrud deserunt\"\n        },\n        {\n          \"type\": \"eiusmod se\",\n          \"value\": \"magna in\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 32202558,\n      \"name\": \"magna\",\n      \"label\": \"proident cupidatat reprehenderit\",\n      \"created_at\": \"tempor dolor proident eiusmod\"\n    },\n    {\n      \"id\": -45670663,\n      \"name\": \"mollit labore\",\n      \"label\": \"cupidatat fugiat\",\n      \"created_at\": \"quis culpa\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": -19728607,\n      \"text\": \"Lorem\",\n      \"created_at\": \"eu inc\",\n      \"updated_at\": \"proident\"\n    },\n    {\n      \"id\": 27507230,\n      \"text\": \"ex sed voluptate\",\n      \"created_at\": \"nostrud magna\",\n      \"updated_at\": \"ut et in\"\n    }\n  ]\n}"}],"_postman_id":"a6617789-4142-4a14-99f6-39b6c3029e58"},{"name":"Export trigger contacts","id":"fbeed08b-217e-4ceb-9c34-e4328d9ca33d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//triggers/contacts/:trigger/export?filter=laborum","description":"<p>Export trigger contacts</p>\n","urlObject":{"path":["triggers","contacts",":trigger","export"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>Filter</p>\n","type":"text/plain"},"key":"filter","value":"laborum"}],"variable":[{"id":"97a33b5e-cf61-461a-be49-f10ab34277f7","description":{"content":"<p>(Required) The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"trigger"}]}},"response":[{"id":"264e97ed-b2cc-4c94-8614-cc4b791b8f05","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//triggers/contacts/:trigger/export?filter=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["triggers","contacts",":trigger","export"],"query":[{"key":"filter","value":"laborum"}],"variable":[{"key":"trigger","value":"65893348","description":"(Required) The ID of the Trigger"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"url\": \"https://app.salesmessage.com/export/contacts.csv\"\n}"}],"_postman_id":"fbeed08b-217e-4ceb-9c34-e4328d9ca33d"},{"name":"Get trigger","id":"27c266cd-c523-4f54-9d87-8aa32f59d9f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//triggers/:trigger","description":"<p>Get trigger</p>\n","urlObject":{"path":["triggers",":trigger"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"187be42c-8f1f-4d90-ac27-5c4ac2ae8091","description":{"content":"<p>(Required) The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"trigger"}]}},"response":[{"id":"0b9b32a0-bee4-4827-bde2-725e8d83be21","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//triggers/:trigger","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["triggers",":trigger"],"variable":[{"key":"trigger","value":"65893348","description":"(Required) The ID of the Trigger"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 93776635,\n  \"organization_id\": 69665853,\n  \"owner_id\": \"occaecat\",\n  \"number_id\": \"Dui\",\n  \"team_id\": \"qui Duis\",\n  \"is_active\": \"qui in\",\n  \"integration\": [\n    {\n      \"id\": -33951559,\n      \"key\": \"fugiat labo\",\n      \"name\": \"dolore\",\n      \"photo_url\": \"commodo do\"\n    },\n    {\n      \"id\": -90118185,\n      \"key\": \"esse\",\n      \"name\": \"ut nulla non in\",\n      \"photo_url\": \"amet quis labore commodo esse\"\n    }\n  ],\n  \"created_at\": \"labore elit commodo\",\n  \"updated_at\": \"nostrud laborum\",\n  \"contacts\": [\n    {\n      \"id\": -76283529,\n      \"owner_id\": -43765981,\n      \"color\": \"officia Lorem commodo\",\n      \"first_name\": \"ea dolore non reprehenderit\",\n      \"last_name\": \"elit nulla\",\n      \"full_name\": \"magna adipisicing do\",\n      \"email\": \"amet sed non ad\",\n      \"photo_url\": \"esse ad iru\",\n      \"number\": \"eu tempor minim sunt\",\n      \"country\": \"ea consequat esse culpa\",\n      \"country_calling_code\": \"ullamco ea magna id\",\n      \"national_number\": \"dolor consequat\",\n      \"typeted_number\": \"deserunt\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"sit tempor esse fugiat\",\n      \"opt_in_request_at\": \"do laboris eiusmod\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 65277775\n        },\n        {\n          \"number_id\": -6159519\n        }\n      ],\n      \"opt_in_at\": \"nisi id\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 12761034,\n          \"number_id\": 57525723,\n          \"name\": \"laborum ex\",\n          \"disabled\": true,\n          \"timestamp\": \"fugiat qui\",\n          \"value\": true\n        },\n        {\n          \"id\": 36932544,\n          \"number_id\": 86859496,\n          \"name\": \"occaecat culpa incididunt mollit\",\n          \"disabled\": false,\n          \"timestamp\": \"sed exe\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"in sunt sint dolor\",\n      \"updated_at\": \"amet reprehenderit nisi officia\",\n      \"integration_vendor_id\": -2395845,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 66444411,\n          \"key\": \"Excepteur voluptate sed mollit in\",\n          \"name\": \"incididunt mollit\",\n          \"photo_url\": \"ulla\"\n        },\n        {\n          \"id\": -96298524,\n          \"key\": \"culpa consequat fugiat\",\n          \"name\": \"elit ut esse in\",\n          \"photo_url\": \"consequ\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 55451718,\n          \"custom_field_id\": -47040165,\n          \"contact_id\": 57256828,\n          \"field_key\": \"proident culpa fugiat\",\n          \"organization_id\": -73313640,\n          \"text\": \"ea\",\n          \"number\": -75091823,\n          \"date\": \"Ut aute dolore commodo\",\n          \"created_at\": \"officia ea\",\n          \"updated_at\": \"eiusmod co\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 61155795,\n          \"custom_field_id\": -29663624,\n          \"contact_id\": 1642147,\n          \"field_key\": \"nulla esse\",\n          \"organization_id\": 24857011,\n          \"text\": \"cupidatat ut esse\",\n          \"number\": 59933622,\n          \"date\": \"quis Excepteur\",\n          \"created_at\": \"esse consectetur ut culpa\",\n          \"updated_at\": \"reprehenderit aliquip non\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 51591763,\n          \"name\": \"tempor esse voluptate consequat\",\n          \"label\": \"nulla Ut amet\",\n          \"created_at\": \"sed Lorem\"\n        },\n        {\n          \"id\": 85803737,\n          \"name\": \"a\",\n          \"label\": \"reprehenderit qui consectetur\",\n          \"created_at\": \"consectetur tempo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -45635085,\n          \"text\": \"ullamco el\",\n          \"created_at\": \"enim pariatur aute\",\n          \"updated_at\": \"in\"\n        },\n        {\n          \"id\": 6468725,\n          \"text\": \"velit ea\",\n          \"created_at\": \"dolore ad in veniam reprehenderit\",\n          \"updated_at\": \"exercitation laboris\"\n        }\n      ]\n    },\n    {\n      \"id\": -25220828,\n      \"owner_id\": 25262085,\n      \"color\": \"laboris nulla enim cupidatat sed\",\n      \"first_name\": \"culpa sunt tempo\",\n      \"last_name\": \"aliqua laboris deserunt Duis non\",\n      \"full_name\": \"ipsum\",\n      \"email\": \"incididunt ut qui\",\n      \"photo_url\": \"sunt eu\",\n      \"number\": \"Duis dolor reprehenderit dolor\",\n      \"country\": \"aliqua consectetur occ\",\n      \"country_calling_code\": \"eu labore dolor consectetur ut\",\n      \"national_number\": \"eu labore dolore in\",\n      \"typeted_number\": \"sed tempor ut\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"eiusmod ven\",\n      \"opt_in_request_at\": \"adipisicing exercitation enim sed dolore\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -16631608\n        },\n        {\n          \"number_id\": -42450497\n        }\n      ],\n      \"opt_in_at\": \"incididunt enim id non\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 4557764,\n          \"number_id\": -9030131,\n          \"name\": \"laboris culpa sint\",\n          \"disabled\": false,\n          \"timestamp\": \"nostrud dolore aliqua consectetu\",\n          \"value\": false\n        },\n        {\n          \"id\": -84373721,\n          \"number_id\": 65063679,\n          \"name\": \"sed cupidatat Excepteur officia nulla\",\n          \"disabled\": false,\n          \"timestamp\": \"esse in\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"ex mollit nisi cillum veniam\",\n      \"updated_at\": \"Ut dolore eu\",\n      \"integration_vendor_id\": -58292455,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": -84410984,\n          \"key\": \"exercitation laborum ame\",\n          \"name\": \"in laboris culpa elit\",\n          \"photo_url\": \"et qui\"\n        },\n        {\n          \"id\": 23577664,\n          \"key\": \"id dolore dolor\",\n          \"name\": \"do consectetur deserunt quis\",\n          \"photo_url\": \"consequat eiusmod ea dolore\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 9581730,\n          \"custom_field_id\": 71734692,\n          \"contact_id\": 66007305,\n          \"field_key\": \"dolor in\",\n          \"organization_id\": -99923880,\n          \"text\": \"veniam elit nulla officia\",\n          \"number\": 12711479,\n          \"date\": \"in exercit\",\n          \"created_at\": \"id reprehenderit occaecat dolore\",\n          \"updated_at\": \"e\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 87220510,\n          \"custom_field_id\": -91683160,\n          \"contact_id\": 34723709,\n          \"field_key\": \"a\",\n          \"organization_id\": 97818834,\n          \"text\": \"ex labore commodo\",\n          \"number\": -301536,\n          \"date\": \"enim\",\n          \"created_at\": \"laborum sed Duis consequat\",\n          \"updated_at\": \"veniam dolore deserunt\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -12890741,\n          \"name\": \"elit proident incididunt\",\n          \"label\": \"in do dol\",\n          \"created_at\": \"Ut Lorem dolore amet\"\n        },\n        {\n          \"id\": -48936935,\n          \"name\": \"voluptate Lorem\",\n          \"label\": \"cillum veniam sunt\",\n          \"created_at\": \"nostrud incididunt adipisicing dolor\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 66107591,\n          \"text\": \"aliquip tempor\",\n          \"created_at\": \"quis\",\n          \"updated_at\": \"in elit adipisicing\"\n        },\n        {\n          \"id\": 34429932,\n          \"text\": \"adipisicing do in\",\n          \"created_at\": \"laboris id\",\n          \"updated_at\": \"ut amet\"\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"27c266cd-c523-4f54-9d87-8aa32f59d9f7"},{"name":"Update trigger","id":"f5b108dd-b6cb-46d5-b911-13e9d7af5a1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Duis laborum cupidatat nisi\",\n  \"message\": \"fugiat aute\",\n  \"number_id\": -18018018\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//triggers/:trigger","description":"<p>Updatetrigger</p>\n","urlObject":{"path":["triggers",":trigger"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"871c54db-6c7d-4009-ae9a-990153bd8b34","description":{"content":"<p>(Required) The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"trigger"}]}},"response":[{"id":"6596e466-5a8a-4c7c-8187-1560bfe82b7a","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Duis laborum cupidatat nisi\",\n  \"message\": \"fugiat aute\",\n  \"number_id\": -18018018\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//triggers/:trigger","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["triggers",":trigger"],"variable":[{"key":"trigger","value":"65893348","description":"(Required) The ID of the Trigger"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 93776635,\n  \"organization_id\": 69665853,\n  \"owner_id\": \"occaecat\",\n  \"number_id\": \"Dui\",\n  \"team_id\": \"qui Duis\",\n  \"is_active\": \"qui in\",\n  \"integration\": [\n    {\n      \"id\": -33951559,\n      \"key\": \"fugiat labo\",\n      \"name\": \"dolore\",\n      \"photo_url\": \"commodo do\"\n    },\n    {\n      \"id\": -90118185,\n      \"key\": \"esse\",\n      \"name\": \"ut nulla non in\",\n      \"photo_url\": \"amet quis labore commodo esse\"\n    }\n  ],\n  \"created_at\": \"labore elit commodo\",\n  \"updated_at\": \"nostrud laborum\",\n  \"contacts\": [\n    {\n      \"id\": -76283529,\n      \"owner_id\": -43765981,\n      \"color\": \"officia Lorem commodo\",\n      \"first_name\": \"ea dolore non reprehenderit\",\n      \"last_name\": \"elit nulla\",\n      \"full_name\": \"magna adipisicing do\",\n      \"email\": \"amet sed non ad\",\n      \"photo_url\": \"esse ad iru\",\n      \"number\": \"eu tempor minim sunt\",\n      \"country\": \"ea consequat esse culpa\",\n      \"country_calling_code\": \"ullamco ea magna id\",\n      \"national_number\": \"dolor consequat\",\n      \"typeted_number\": \"deserunt\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"sit tempor esse fugiat\",\n      \"opt_in_request_at\": \"do laboris eiusmod\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 65277775\n        },\n        {\n          \"number_id\": -6159519\n        }\n      ],\n      \"opt_in_at\": \"nisi id\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 12761034,\n          \"number_id\": 57525723,\n          \"name\": \"laborum ex\",\n          \"disabled\": true,\n          \"timestamp\": \"fugiat qui\",\n          \"value\": true\n        },\n        {\n          \"id\": 36932544,\n          \"number_id\": 86859496,\n          \"name\": \"occaecat culpa incididunt mollit\",\n          \"disabled\": false,\n          \"timestamp\": \"sed exe\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"in sunt sint dolor\",\n      \"updated_at\": \"amet reprehenderit nisi officia\",\n      \"integration_vendor_id\": -2395845,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 66444411,\n          \"key\": \"Excepteur voluptate sed mollit in\",\n          \"name\": \"incididunt mollit\",\n          \"photo_url\": \"ulla\"\n        },\n        {\n          \"id\": -96298524,\n          \"key\": \"culpa consequat fugiat\",\n          \"name\": \"elit ut esse in\",\n          \"photo_url\": \"consequ\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 55451718,\n          \"custom_field_id\": -47040165,\n          \"contact_id\": 57256828,\n          \"field_key\": \"proident culpa fugiat\",\n          \"organization_id\": -73313640,\n          \"text\": \"ea\",\n          \"number\": -75091823,\n          \"date\": \"Ut aute dolore commodo\",\n          \"created_at\": \"officia ea\",\n          \"updated_at\": \"eiusmod co\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 61155795,\n          \"custom_field_id\": -29663624,\n          \"contact_id\": 1642147,\n          \"field_key\": \"nulla esse\",\n          \"organization_id\": 24857011,\n          \"text\": \"cupidatat ut esse\",\n          \"number\": 59933622,\n          \"date\": \"quis Excepteur\",\n          \"created_at\": \"esse consectetur ut culpa\",\n          \"updated_at\": \"reprehenderit aliquip non\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 51591763,\n          \"name\": \"tempor esse voluptate consequat\",\n          \"label\": \"nulla Ut amet\",\n          \"created_at\": \"sed Lorem\"\n        },\n        {\n          \"id\": 85803737,\n          \"name\": \"a\",\n          \"label\": \"reprehenderit qui consectetur\",\n          \"created_at\": \"consectetur tempo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -45635085,\n          \"text\": \"ullamco el\",\n          \"created_at\": \"enim pariatur aute\",\n          \"updated_at\": \"in\"\n        },\n        {\n          \"id\": 6468725,\n          \"text\": \"velit ea\",\n          \"created_at\": \"dolore ad in veniam reprehenderit\",\n          \"updated_at\": \"exercitation laboris\"\n        }\n      ]\n    },\n    {\n      \"id\": -25220828,\n      \"owner_id\": 25262085,\n      \"color\": \"laboris nulla enim cupidatat sed\",\n      \"first_name\": \"culpa sunt tempo\",\n      \"last_name\": \"aliqua laboris deserunt Duis non\",\n      \"full_name\": \"ipsum\",\n      \"email\": \"incididunt ut qui\",\n      \"photo_url\": \"sunt eu\",\n      \"number\": \"Duis dolor reprehenderit dolor\",\n      \"country\": \"aliqua consectetur occ\",\n      \"country_calling_code\": \"eu labore dolor consectetur ut\",\n      \"national_number\": \"eu labore dolore in\",\n      \"typeted_number\": \"sed tempor ut\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"eiusmod ven\",\n      \"opt_in_request_at\": \"adipisicing exercitation enim sed dolore\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -16631608\n        },\n        {\n          \"number_id\": -42450497\n        }\n      ],\n      \"opt_in_at\": \"incididunt enim id non\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 4557764,\n          \"number_id\": -9030131,\n          \"name\": \"laboris culpa sint\",\n          \"disabled\": false,\n          \"timestamp\": \"nostrud dolore aliqua consectetu\",\n          \"value\": false\n        },\n        {\n          \"id\": -84373721,\n          \"number_id\": 65063679,\n          \"name\": \"sed cupidatat Excepteur officia nulla\",\n          \"disabled\": false,\n          \"timestamp\": \"esse in\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"ex mollit nisi cillum veniam\",\n      \"updated_at\": \"Ut dolore eu\",\n      \"integration_vendor_id\": -58292455,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": -84410984,\n          \"key\": \"exercitation laborum ame\",\n          \"name\": \"in laboris culpa elit\",\n          \"photo_url\": \"et qui\"\n        },\n        {\n          \"id\": 23577664,\n          \"key\": \"id dolore dolor\",\n          \"name\": \"do consectetur deserunt quis\",\n          \"photo_url\": \"consequat eiusmod ea dolore\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 9581730,\n          \"custom_field_id\": 71734692,\n          \"contact_id\": 66007305,\n          \"field_key\": \"dolor in\",\n          \"organization_id\": -99923880,\n          \"text\": \"veniam elit nulla officia\",\n          \"number\": 12711479,\n          \"date\": \"in exercit\",\n          \"created_at\": \"id reprehenderit occaecat dolore\",\n          \"updated_at\": \"e\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 87220510,\n          \"custom_field_id\": -91683160,\n          \"contact_id\": 34723709,\n          \"field_key\": \"a\",\n          \"organization_id\": 97818834,\n          \"text\": \"ex labore commodo\",\n          \"number\": -301536,\n          \"date\": \"enim\",\n          \"created_at\": \"laborum sed Duis consequat\",\n          \"updated_at\": \"veniam dolore deserunt\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -12890741,\n          \"name\": \"elit proident incididunt\",\n          \"label\": \"in do dol\",\n          \"created_at\": \"Ut Lorem dolore amet\"\n        },\n        {\n          \"id\": -48936935,\n          \"name\": \"voluptate Lorem\",\n          \"label\": \"cillum veniam sunt\",\n          \"created_at\": \"nostrud incididunt adipisicing dolor\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 66107591,\n          \"text\": \"aliquip tempor\",\n          \"created_at\": \"quis\",\n          \"updated_at\": \"in elit adipisicing\"\n        },\n        {\n          \"id\": 34429932,\n          \"text\": \"adipisicing do in\",\n          \"created_at\": \"laboris id\",\n          \"updated_at\": \"ut amet\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"7022c74d-311a-4424-907b-00cc1d91c126","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Duis laborum cupidatat nisi\",\n  \"message\": \"fugiat aute\",\n  \"number_id\": -18018018\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//triggers/:trigger","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["triggers",":trigger"],"variable":[{"key":"trigger","value":"65893348","description":"(Required) The ID of the Trigger"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Duis sint esse\"\n}"}],"_postman_id":"f5b108dd-b6cb-46d5-b911-13e9d7af5a1f"},{"name":"Delete trigger","id":"901da506-dc2a-4a95-9ef6-f72a0dd4087e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.1//triggers/:trigger","description":"<p>Delete trigger</p>\n","urlObject":{"path":["triggers",":trigger"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"0c0a5027-14c4-478c-8873-617cf383eb8a","description":{"content":"<p>(Required) The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"trigger"}]}},"response":[{"id":"7e722bcb-7e92-4596-a319-d7d1a049d57c","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//triggers/:trigger","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["triggers",":trigger"],"variable":[{"key":"trigger","value":"65893348","description":"(Required) The ID of the Trigger"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"901da506-dc2a-4a95-9ef6-f72a0dd4087e"},{"name":"Get all triggers filters","id":"ccd9105c-a5b0-44af-984c-e56e6b1b802c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.1//triggers/filters?name=laborum","description":"<p>Get all triggers filters</p>\n","urlObject":{"path":["triggers","filters"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>(Required) Name</p>\n","type":"text/plain"},"key":"name","value":"laborum"}],"variable":[]}},"response":[{"id":"cd7ade35-3cce-4212-bafd-8e2d1f798808","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//triggers/filters?name=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["triggers","filters"],"query":[{"key":"name","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ccd9105c-a5b0-44af-984c-e56e6b1b802c"},{"name":"Search trigger","id":"54e04486-cfb3-4023-b66c-3e6aa1f95b57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//triggers/search?limit=10&term=laborum","description":"<p>Search trigger</p>\n","urlObject":{"path":["triggers","search"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[{"description":{"content":"<p>The maximum number of messages that you want returned from this call.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>(Required) The string to search for.</p>\n","type":"text/plain"},"key":"term","value":"laborum"}],"variable":[]}},"response":[{"id":"22319b99-f576-4d7b-a0d2-39a20a2d0f07","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//triggers/search?limit=10&term=laborum","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["triggers","search"],"query":[{"key":"limit","value":"10"},{"key":"term","value":"laborum"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": -14852038,\n    \"organization_id\": -89136494,\n    \"owner_id\": \"anim ex ad Duis\",\n    \"number_id\": \"dolor amet sed eu\",\n    \"team_id\": \"voluptate ipsum sed\",\n    \"is_active\": \"qui quis aliquip Duis\",\n    \"integration\": [\n      {\n        \"id\": -8806331,\n        \"key\": \"veniam ullamco fugiat id\",\n        \"name\": \"officia\",\n        \"photo_url\": \"adipisicing enim consectetur commodo\"\n      },\n      {\n        \"id\": 40060212,\n        \"key\": \"labore tempor aliquip nisi\",\n        \"name\": \"cillum dolore tempor irure\",\n        \"photo_url\": \"mollit laborum\"\n      }\n    ],\n    \"created_at\": \"sint eiusmod\",\n    \"updated_at\": \"sint proident cillum in elit\",\n    \"contacts\": [\n      {\n        \"id\": -46765611,\n        \"owner_id\": -66466654,\n        \"color\": \"elit eu fugiat cupidatat nisi\",\n        \"first_name\": \"ex\",\n        \"last_name\": \"in\",\n        \"full_name\": \"cupidatat Lorem\",\n        \"email\": \"amet\",\n        \"photo_url\": \"mollit laboris\",\n        \"number\": \"\",\n        \"country\": \"voluptate laborum amet\",\n        \"country_calling_code\": \"Lorem Ut\",\n        \"national_number\": \"adipisicing mollit velit\",\n        \"typeted_number\": \"elit incididunt\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"dolor Lorem\",\n        \"opt_in_request_at\": \"velit irure proident occaecat\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 50234532\n          },\n          {\n            \"number_id\": 1142461\n          }\n        ],\n        \"opt_in_at\": \"id tempor\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 35335160,\n            \"number_id\": -38510969,\n            \"name\": \"cillum aliqua proident nostrud\",\n            \"disabled\": true,\n            \"timestamp\": \"incididunt ut consectetur quis\",\n            \"value\": true\n          },\n          {\n            \"id\": -8856065,\n            \"number_id\": -13572533,\n            \"name\": \"commodo ullamco\",\n            \"disabled\": false,\n            \"timestamp\": \"amet velit esse ipsum\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"magna mollit nostrud\",\n        \"updated_at\": \"amet consequat\",\n        \"integration_vendor_id\": -19521718,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 98032327,\n            \"key\": \"in incididunt ul\",\n            \"name\": \"elit sunt\",\n            \"photo_url\": \"Excepteur nulla do e\"\n          },\n          {\n            \"id\": 81410710,\n            \"key\": \"esse laborum\",\n            \"name\": \"dolore nostrud\",\n            \"photo_url\": \"pariatur\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 23201254,\n            \"custom_field_id\": 30916454,\n            \"contact_id\": -23901256,\n            \"field_key\": \"mollit\",\n            \"organization_id\": -21378395,\n            \"text\": \"magna anim\",\n            \"number\": 36107120,\n            \"date\": \"sint amet dolore minim\",\n            \"created_at\": \"cupidatat\",\n            \"updated_at\": \"sint\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": 76291918,\n            \"custom_field_id\": 56747183,\n            \"contact_id\": -5443509,\n            \"field_key\": \"nostrud labore ad\",\n            \"organization_id\": 33585245,\n            \"text\": \"irure minim\",\n            \"number\": 59161070,\n            \"date\": \"ipsum id\",\n            \"created_at\": \"in do\",\n            \"updated_at\": \"anim eu ut aute\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 52435851,\n            \"name\": \"ex amet incididunt\",\n            \"label\": \"qui dolor\",\n            \"created_at\": \"in velit\"\n          },\n          {\n            \"id\": 77843618,\n            \"name\": \"ea dolor eiusmod velit Excepteur\",\n            \"label\": \"deserunt\",\n            \"created_at\": \"in esse eu\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 78891972,\n            \"text\": \"elit culpa\",\n            \"created_at\": \"minim sit tempor magna\",\n            \"updated_at\": \"nulla mollit fugia\"\n          },\n          {\n            \"id\": 86611888,\n            \"text\": \"culpa in dolor labore\",\n            \"created_at\": \"Excepteur irure\",\n            \"updated_at\": \"a\"\n          }\n        ]\n      },\n      {\n        \"id\": 49960118,\n        \"owner_id\": 10859890,\n        \"color\": \"eu sed\",\n        \"first_name\": \"exercitation eiusmod id\",\n        \"last_name\": \"fugiat dolore culpa consequat\",\n        \"full_name\": \"magna\",\n        \"email\": \"eu conse\",\n        \"photo_url\": \"commodo qui\",\n        \"number\": \"eiusmod amet\",\n        \"country\": \"anim mollit ad nulla\",\n        \"country_calling_code\": \"nostrud consequat do minim\",\n        \"national_number\": \"consequat qui esse eiusmod\",\n        \"typeted_number\": \"voluptate Lorem culpa\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"esse\",\n        \"opt_in_request_at\": \"pariatur occaecat\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": -83083607\n          },\n          {\n            \"number_id\": -47886268\n          }\n        ],\n        \"opt_in_at\": \"ullamco in in\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -92393578,\n            \"number_id\": 15527056,\n            \"name\": \"id laborum\",\n            \"disabled\": false,\n            \"timestamp\": \"consequat culpa nostrud eu\",\n            \"value\": true\n          },\n          {\n            \"id\": -49439892,\n            \"number_id\": -54389075,\n            \"name\": \"aliquip Ut irure sint\",\n            \"disabled\": true,\n            \"timestamp\": \"occaecat in\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"amet consectetur cupidatat\",\n        \"updated_at\": \"dolor id nostrud aliquip\",\n        \"integration_vendor_id\": 8280180,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": -95082686,\n            \"key\": \"dolore ad tempor qui\",\n            \"name\": \"adipisicing pariatur nisi eu\",\n            \"photo_url\": \"ut\"\n          },\n          {\n            \"id\": 25330052,\n            \"key\": \"in non\",\n            \"name\": \"ulla\",\n            \"photo_url\": \"dolor labore Ut cupidatat aliqua\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 12848766,\n            \"custom_field_id\": -90403473,\n            \"contact_id\": -91228805,\n            \"field_key\": \"aliqua fugiat\",\n            \"organization_id\": 81895064,\n            \"text\": \"id laboris \",\n            \"number\": -30388587,\n            \"date\": \"et dolore\",\n            \"created_at\": \"do laboris ut tempor cillum\",\n            \"updated_at\": \"qui\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": 11736240,\n            \"custom_field_id\": 53348798,\n            \"contact_id\": 86148058,\n            \"field_key\": \"dolore ex adipisicing o\",\n            \"organization_id\": -77492720,\n            \"text\": \"consectetur sunt\",\n            \"number\": 11158251,\n            \"date\": \"ut anim culpa\",\n            \"created_at\": \"consectetur reprehenderit Ut sunt\",\n            \"updated_at\": \"reprehenderit esse amet\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 58035243,\n            \"name\": \"in sint\",\n            \"label\": \"sint occaecat id labore aliqua\",\n            \"created_at\": \"amet et\"\n          },\n          {\n            \"id\": -82202070,\n            \"name\": \"irure voluptate in tempor ullamco\",\n            \"label\": \"\",\n            \"created_at\": \"labore\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -91942656,\n            \"text\": \"adipisicing ex qui fugiat\",\n            \"created_at\": \"est sit velit proident officia\",\n            \"updated_at\": \"laboris\"\n          },\n          {\n            \"id\": -65742109,\n            \"text\": \"Ut sed nostrud adipisicing\",\n            \"created_at\": \"ipsum qui\",\n            \"updated_at\": \"do aliquip dolore proident aute\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"id\": -70136942,\n    \"organization_id\": 58040401,\n    \"owner_id\": \"do culpa adipisicing ullamco\",\n    \"number_id\": \"Excepteur nostrud do in\",\n    \"team_id\": \"adipisicing Duis pariatur\",\n    \"is_active\": \"proident Ut\",\n    \"integration\": [\n      {\n        \"id\": 23861176,\n        \"key\": \"exercitation cillum proident\",\n        \"name\": \"ullamco consequat commodo in\",\n        \"photo_url\": \"eiusmod ad consectetur adipisicing\"\n      },\n      {\n        \"id\": 20803664,\n        \"key\": \"laborum in aliquip\",\n        \"name\": \"commodo Ut in\",\n        \"photo_url\": \"aute ex\"\n      }\n    ],\n    \"created_at\": \"veniam magna eu\",\n    \"updated_at\": \"in labore deserunt et\",\n    \"contacts\": [\n      {\n        \"id\": 86011943,\n        \"owner_id\": -55985077,\n        \"color\": \"lab\",\n        \"first_name\": \"laboris eu reprehenderit in\",\n        \"last_name\": \"cupidatat culpa\",\n        \"full_name\": \"laborum \",\n        \"email\": \"deserunt culpa esse est\",\n        \"photo_url\": \"cillum non velit\",\n        \"number\": \"cillum minim qui\",\n        \"country\": \"irure sint nisi\",\n        \"country_calling_code\": \"veniam Ut lab\",\n        \"national_number\": \"magna sint sed irure\",\n        \"typeted_number\": \"aliqua exercitation dolor ex\",\n        \"is_blocked\": true,\n        \"opt_out\": true,\n        \"opt_out_at\": \"laborum est aute do\",\n        \"opt_in_request_at\": \"elit esse aliqua ea\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": -84640840\n          },\n          {\n            \"number_id\": -36363859\n          }\n        ],\n        \"opt_in_at\": \"fugiat laborum\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": -9678287,\n            \"number_id\": -97198961,\n            \"name\": \"in tempor et\",\n            \"disabled\": true,\n            \"timestamp\": \"laboris in non incididunt\",\n            \"value\": false\n          },\n          {\n            \"id\": -95346152,\n            \"number_id\": 61073563,\n            \"name\": \"sint consequat\",\n            \"disabled\": false,\n            \"timestamp\": \"eu proident dolore\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"eu deserunt Ut\",\n        \"updated_at\": \"in tempor sunt esse\",\n        \"integration_vendor_id\": 21395779,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": -80141425,\n            \"key\": \"mollit deserunt ullamco occaecat\",\n            \"name\": \"reprehenderit nisi esse eiusmod exercitation\",\n            \"photo_url\": \"tempor Excepteur\"\n          },\n          {\n            \"id\": -71849760,\n            \"key\": \"minim pariatur in id\",\n            \"name\": \"et nostrud\",\n            \"photo_url\": \"aliquip aliqua deserunt\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 64428633,\n            \"custom_field_id\": 27335260,\n            \"contact_id\": -57666400,\n            \"field_key\": \"fugiat eu Lorem pariatur\",\n            \"organization_id\": 44063121,\n            \"text\": \"irure\",\n            \"number\": -17325551,\n            \"date\": \"ex in\",\n            \"created_at\": \"anim ipsum irure do\",\n            \"updated_at\": \"ut dolor\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": -64806908,\n            \"custom_field_id\": 18594044,\n            \"contact_id\": 4486385,\n            \"field_key\": \"qui cillum\",\n            \"organization_id\": 10044039,\n            \"text\": \"laborum reprehenderit deseru\",\n            \"number\": -51323564,\n            \"date\": \"in nulla \",\n            \"created_at\": \"dolor consequat cupidata\",\n            \"updated_at\": \"ipsum nisi\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 7312443,\n            \"name\": \"culpa\",\n            \"label\": \"quis in sed ad\",\n            \"created_at\": \"quis labore anim\"\n          },\n          {\n            \"id\": -89691500,\n            \"name\": \"in sunt sit\",\n            \"label\": \"pariatur cillum Excepteur fugiat\",\n            \"created_at\": \"dolor fugiat consectetur\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -22626329,\n            \"text\": \"sed sint mollit adipisicing\",\n            \"created_at\": \"minim\",\n            \"updated_at\": \"dolore\"\n          },\n          {\n            \"id\": 57287719,\n            \"text\": \"Lorem in\",\n            \"created_at\": \"ut pariatur enim aliquip tempor\",\n            \"updated_at\": \"dolor cons\"\n          }\n        ]\n      },\n      {\n        \"id\": 54622690,\n        \"owner_id\": -79025432,\n        \"color\": \"in do ex\",\n        \"first_name\": \"elit dolore\",\n        \"last_name\": \"dolor veniam\",\n        \"full_name\": \"eiusmod nostrud cillum in\",\n        \"email\": \"dolore minim Duis aute\",\n        \"photo_url\": \"dolore est\",\n        \"number\": \"id nisi Ut\",\n        \"country\": \"adipisicing ut dolore reprehenderit\",\n        \"country_calling_code\": \"elit ad proident\",\n        \"national_number\": \"commodo nostrud minim reprehenderit\",\n        \"typeted_number\": \"reprehenderit voluptate sunt\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"reprehenderit incididunt fugiat\",\n        \"opt_in_request_at\": \"elit aliquip\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": -37376572\n          },\n          {\n            \"number_id\": 62158640\n          }\n        ],\n        \"opt_in_at\": \"nisi do\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 78185616,\n            \"number_id\": -96159887,\n            \"name\": \"laborum commod\",\n            \"disabled\": true,\n            \"timestamp\": \"ullamco\",\n            \"value\": true\n          },\n          {\n            \"id\": -89247664,\n            \"number_id\": -5195561,\n            \"name\": \"anim consec\",\n            \"disabled\": false,\n            \"timestamp\": \"voluptate dolore non laborum dolore\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"fugiat\",\n        \"updated_at\": \"in sed reprehenderit\",\n        \"integration_vendor_id\": -47597477,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 14086288,\n            \"key\": \"ea eiusmod\",\n            \"name\": \"dolor minim D\",\n            \"photo_url\": \"ex amet\"\n          },\n          {\n            \"id\": 83677891,\n            \"key\": \"dolore eu\",\n            \"name\": \"ullamco enim cupidatat fugiat Duis\",\n            \"photo_url\": \"ulla\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": -74200717,\n            \"custom_field_id\": -55080785,\n            \"contact_id\": -46755723,\n            \"field_key\": \"voluptate ipsum\",\n            \"organization_id\": -38333501,\n            \"text\": \"eu enim qui irure cillum\",\n            \"number\": -51883718,\n            \"date\": \"pariatur deserunt qui Lorem\",\n            \"created_at\": \"fugiat anim\",\n            \"updated_at\": \"magna aliquip\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          },\n          {\n            \"id\": -5569093,\n            \"custom_field_id\": 74799199,\n            \"contact_id\": -53574760,\n            \"field_key\": \"sint\",\n            \"organization_id\": 80673439,\n            \"text\": \"esse laboris irure mollit\",\n            \"number\": 78315292,\n            \"date\": \"in exercitation id est ea\",\n            \"created_at\": \"adipisicing sit Ut minim\",\n            \"updated_at\": \"laborum ex\",\n            \"value\": [\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 37533516,\n            \"name\": \"cupidatat eu ipsum\",\n            \"label\": \"dolore nostrud\",\n            \"created_at\": \"incididunt in occaecat nisi\"\n          },\n          {\n            \"id\": 65187995,\n            \"name\": \"culpa dolor\",\n            \"label\": \"dolore quis sint Duis\",\n            \"created_at\": \"fugiat laborum\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": -17103514,\n            \"text\": \"ad\",\n            \"created_at\": \"Lorem\",\n            \"updated_at\": \"anim\"\n          },\n          {\n            \"id\": 4871898,\n            \"text\": \"quis Lorem Ut voluptate minim\",\n            \"created_at\": \"aliquip\",\n            \"updated_at\": \"velit dolor eu qui elit\"\n          }\n        ]\n      }\n    ]\n  }\n]"}],"_postman_id":"54e04486-cfb3-4023-b66c-3e6aa1f95b57"},{"name":"Toggle trigger","id":"307a17eb-006f-4d59-9a47-17aac9805e5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//triggers/toggle/:trigger","description":"<p>Toggle trigger</p>\n","urlObject":{"path":["triggers","toggle",":trigger"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"a0d1853e-8a39-46e4-a3bc-c7401347fce4","description":{"content":"<p>(Required) The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"65893348","key":"trigger"}]}},"response":[{"id":"2cdb2a57-d1fa-4166-9c1d-2cb16fdedeee","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//triggers/toggle/:trigger","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["triggers","toggle",":trigger"],"variable":[{"key":"trigger","value":"65893348","description":"(Required) The ID of the Trigger"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 93776635,\n  \"organization_id\": 69665853,\n  \"owner_id\": \"occaecat\",\n  \"number_id\": \"Dui\",\n  \"team_id\": \"qui Duis\",\n  \"is_active\": \"qui in\",\n  \"integration\": [\n    {\n      \"id\": -33951559,\n      \"key\": \"fugiat labo\",\n      \"name\": \"dolore\",\n      \"photo_url\": \"commodo do\"\n    },\n    {\n      \"id\": -90118185,\n      \"key\": \"esse\",\n      \"name\": \"ut nulla non in\",\n      \"photo_url\": \"amet quis labore commodo esse\"\n    }\n  ],\n  \"created_at\": \"labore elit commodo\",\n  \"updated_at\": \"nostrud laborum\",\n  \"contacts\": [\n    {\n      \"id\": -76283529,\n      \"owner_id\": -43765981,\n      \"color\": \"officia Lorem commodo\",\n      \"first_name\": \"ea dolore non reprehenderit\",\n      \"last_name\": \"elit nulla\",\n      \"full_name\": \"magna adipisicing do\",\n      \"email\": \"amet sed non ad\",\n      \"photo_url\": \"esse ad iru\",\n      \"number\": \"eu tempor minim sunt\",\n      \"country\": \"ea consequat esse culpa\",\n      \"country_calling_code\": \"ullamco ea magna id\",\n      \"national_number\": \"dolor consequat\",\n      \"typeted_number\": \"deserunt\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"sit tempor esse fugiat\",\n      \"opt_in_request_at\": \"do laboris eiusmod\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 65277775\n        },\n        {\n          \"number_id\": -6159519\n        }\n      ],\n      \"opt_in_at\": \"nisi id\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 12761034,\n          \"number_id\": 57525723,\n          \"name\": \"laborum ex\",\n          \"disabled\": true,\n          \"timestamp\": \"fugiat qui\",\n          \"value\": true\n        },\n        {\n          \"id\": 36932544,\n          \"number_id\": 86859496,\n          \"name\": \"occaecat culpa incididunt mollit\",\n          \"disabled\": false,\n          \"timestamp\": \"sed exe\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"in sunt sint dolor\",\n      \"updated_at\": \"amet reprehenderit nisi officia\",\n      \"integration_vendor_id\": -2395845,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 66444411,\n          \"key\": \"Excepteur voluptate sed mollit in\",\n          \"name\": \"incididunt mollit\",\n          \"photo_url\": \"ulla\"\n        },\n        {\n          \"id\": -96298524,\n          \"key\": \"culpa consequat fugiat\",\n          \"name\": \"elit ut esse in\",\n          \"photo_url\": \"consequ\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 55451718,\n          \"custom_field_id\": -47040165,\n          \"contact_id\": 57256828,\n          \"field_key\": \"proident culpa fugiat\",\n          \"organization_id\": -73313640,\n          \"text\": \"ea\",\n          \"number\": -75091823,\n          \"date\": \"Ut aute dolore commodo\",\n          \"created_at\": \"officia ea\",\n          \"updated_at\": \"eiusmod co\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 61155795,\n          \"custom_field_id\": -29663624,\n          \"contact_id\": 1642147,\n          \"field_key\": \"nulla esse\",\n          \"organization_id\": 24857011,\n          \"text\": \"cupidatat ut esse\",\n          \"number\": 59933622,\n          \"date\": \"quis Excepteur\",\n          \"created_at\": \"esse consectetur ut culpa\",\n          \"updated_at\": \"reprehenderit aliquip non\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 51591763,\n          \"name\": \"tempor esse voluptate consequat\",\n          \"label\": \"nulla Ut amet\",\n          \"created_at\": \"sed Lorem\"\n        },\n        {\n          \"id\": 85803737,\n          \"name\": \"a\",\n          \"label\": \"reprehenderit qui consectetur\",\n          \"created_at\": \"consectetur tempo\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": -45635085,\n          \"text\": \"ullamco el\",\n          \"created_at\": \"enim pariatur aute\",\n          \"updated_at\": \"in\"\n        },\n        {\n          \"id\": 6468725,\n          \"text\": \"velit ea\",\n          \"created_at\": \"dolore ad in veniam reprehenderit\",\n          \"updated_at\": \"exercitation laboris\"\n        }\n      ]\n    },\n    {\n      \"id\": -25220828,\n      \"owner_id\": 25262085,\n      \"color\": \"laboris nulla enim cupidatat sed\",\n      \"first_name\": \"culpa sunt tempo\",\n      \"last_name\": \"aliqua laboris deserunt Duis non\",\n      \"full_name\": \"ipsum\",\n      \"email\": \"incididunt ut qui\",\n      \"photo_url\": \"sunt eu\",\n      \"number\": \"Duis dolor reprehenderit dolor\",\n      \"country\": \"aliqua consectetur occ\",\n      \"country_calling_code\": \"eu labore dolor consectetur ut\",\n      \"national_number\": \"eu labore dolore in\",\n      \"typeted_number\": \"sed tempor ut\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"eiusmod ven\",\n      \"opt_in_request_at\": \"adipisicing exercitation enim sed dolore\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": -16631608\n        },\n        {\n          \"number_id\": -42450497\n        }\n      ],\n      \"opt_in_at\": \"incididunt enim id non\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 4557764,\n          \"number_id\": -9030131,\n          \"name\": \"laboris culpa sint\",\n          \"disabled\": false,\n          \"timestamp\": \"nostrud dolore aliqua consectetu\",\n          \"value\": false\n        },\n        {\n          \"id\": -84373721,\n          \"number_id\": 65063679,\n          \"name\": \"sed cupidatat Excepteur officia nulla\",\n          \"disabled\": false,\n          \"timestamp\": \"esse in\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"ex mollit nisi cillum veniam\",\n      \"updated_at\": \"Ut dolore eu\",\n      \"integration_vendor_id\": -58292455,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": -84410984,\n          \"key\": \"exercitation laborum ame\",\n          \"name\": \"in laboris culpa elit\",\n          \"photo_url\": \"et qui\"\n        },\n        {\n          \"id\": 23577664,\n          \"key\": \"id dolore dolor\",\n          \"name\": \"do consectetur deserunt quis\",\n          \"photo_url\": \"consequat eiusmod ea dolore\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 9581730,\n          \"custom_field_id\": 71734692,\n          \"contact_id\": 66007305,\n          \"field_key\": \"dolor in\",\n          \"organization_id\": -99923880,\n          \"text\": \"veniam elit nulla officia\",\n          \"number\": 12711479,\n          \"date\": \"in exercit\",\n          \"created_at\": \"id reprehenderit occaecat dolore\",\n          \"updated_at\": \"e\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        },\n        {\n          \"id\": 87220510,\n          \"custom_field_id\": -91683160,\n          \"contact_id\": 34723709,\n          \"field_key\": \"a\",\n          \"organization_id\": 97818834,\n          \"text\": \"ex labore commodo\",\n          \"number\": -301536,\n          \"date\": \"enim\",\n          \"created_at\": \"laborum sed Duis consequat\",\n          \"updated_at\": \"veniam dolore deserunt\",\n          \"value\": [\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            },\n            {\n              \"type\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              },\n              \"value\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n              }\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": -12890741,\n          \"name\": \"elit proident incididunt\",\n          \"label\": \"in do dol\",\n          \"created_at\": \"Ut Lorem dolore amet\"\n        },\n        {\n          \"id\": -48936935,\n          \"name\": \"voluptate Lorem\",\n          \"label\": \"cillum veniam sunt\",\n          \"created_at\": \"nostrud incididunt adipisicing dolor\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 66107591,\n          \"text\": \"aliquip tempor\",\n          \"created_at\": \"quis\",\n          \"updated_at\": \"in elit adipisicing\"\n        },\n        {\n          \"id\": 34429932,\n          \"text\": \"adipisicing do in\",\n          \"created_at\": \"laboris id\",\n          \"updated_at\": \"ut amet\"\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"307a17eb-006f-4d59-9a47-17aac9805e5b"}],"id":"2bf257c2-ed50-4ce4-a346-c903ca7f8c6d","_postman_id":"2bf257c2-ed50-4ce4-a346-c903ca7f8c6d","description":""},{"name":"Voice","item":[{"name":"Listen to the voice record new","id":"45e12cf4-dba2-4fbc-ac92-e63984ea8303","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"audio/wav"}],"url":"https://api.salesmessage.com/pub/v2.1//voice/record/:recordingId/token","description":"<p>Listen to the voice record new</p>\n","urlObject":{"path":["voice","record",":recordingId","token"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"3c69cef9-6bc5-46a9-ad99-d3b74704da5b","description":{"content":"<p>(Required) The ID of the Recording. This string starts with prefix 'RE'.</p>\n","type":"text/plain"},"type":"any","value":"laborum","key":"recordingId"}]}},"response":[{"id":"82f21545-15f5-4f64-91e9-06883ba9d854","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//voice/record/:recordingId/token","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["voice","record",":recordingId","token"],"variable":[{"key":"recordingId","value":"laborum","description":"(Required) The ID of the Recording. This string starts with prefix \\'RE\\'."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"audio/wav"}],"cookie":[],"responseTime":null,"body":"laborum"}],"_postman_id":"45e12cf4-dba2-4fbc-ac92-e63984ea8303"},{"name":"Listen to the voice record","id":"76304676-2f40-43d4-beaf-2ec5d0a07585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"audio/wav"}],"url":"https://api.salesmessage.com/pub/v2.1//voice/record/:recordingId","description":"<p>Listen to the voice record</p>\n","urlObject":{"path":["voice","record",":recordingId"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"e93f7da3-f40f-4772-9efa-79ff6b7952a0","description":{"content":"<p>(Required) The ID of the Recording. This string starts with prefix 'RE'.</p>\n","type":"text/plain"},"type":"any","value":"laborum","key":"recordingId"}]}},"response":[{"id":"a693aec2-b549-434e-96bb-4d49d43c26cf","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//voice/record/:recordingId","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["voice","record",":recordingId"],"variable":[{"key":"recordingId","value":"laborum","description":"(Required) The ID of the Recording. This string starts with prefix \\'RE\\'."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"audio/wav"}],"cookie":[],"responseTime":null,"body":"laborum"}],"_postman_id":"76304676-2f40-43d4-beaf-2ec5d0a07585"},{"name":"Listen to the voicemail record","id":"399c7140-a173-46e2-9b82-fcc5b3299d45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"audio/wav"}],"url":"https://api.salesmessage.com/pub/v2.1//voice/voicemail-record/:recordingId","description":"<p>Listen to the voicemail record</p>\n","urlObject":{"path":["voice","voicemail-record",":recordingId"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"8f10b478-fc95-4f9c-8e9d-024f1af29047","description":{"content":"<p>(Required) The ID of the Recording. This string starts with prefix 'RE'.</p>\n","type":"text/plain"},"type":"any","value":"laborum","key":"recordingId"}]}},"response":[{"id":"d24d5280-7906-4541-8939-215d88f22f6e","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//voice/voicemail-record/:recordingId","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["voice","voicemail-record",":recordingId"],"variable":[{"key":"recordingId","value":"laborum","description":"(Required) The ID of the Recording. This string starts with prefix \\'RE\\'."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"audio/wav"}],"cookie":[],"responseTime":null,"body":"laborum"}],"_postman_id":"399c7140-a173-46e2-9b82-fcc5b3299d45"},{"name":"Update voicemail settings","id":"7baab66b-f187-404b-a537-4050de12ec17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": true,\n  \"open_hours_greeting_id\": 0,\n  \"after_hours_greeting_id\": 0,\n  \"is_send_via_email\": false,\n  \"is_directly_voicemail\": false,\n  \"ring_duration\": 15\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//voice/voicemail/settings/:team","description":"<p>Listen to voice recording</p>\n","urlObject":{"path":["voice","voicemail","settings",":team"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"76c8378b-9366-4054-8f4b-f3ea8afa7421","description":{"content":"<p>(Required) The ID of the Team.</p>\n","type":"text/plain"},"type":"any","value":"-46945205","key":"team"}]}},"response":[{"id":"11608abe-e5d5-41e8-a685-c15a98306b9a","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": true,\n  \"open_hours_greeting_id\": 0,\n  \"after_hours_greeting_id\": 0,\n  \"is_send_via_email\": false,\n  \"is_directly_voicemail\": false,\n  \"ring_duration\": 15\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.1//voice/voicemail/settings/:team","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["voice","voicemail","settings",":team"],"variable":[{"key":"team","value":"-46945205","description":"(Required) The ID of the Team."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -11331703,\n  \"owner_id\": -82397612,\n  \"organization_id\": -47989112,\n  \"team_id\": \"veniam ut\",\n  \"is_active\": true,\n  \"is_send_via_email\": true,\n  \"open_hours_greeting_id\": 97050938,\n  \"after_hours_greeting_id\": 86382538\n}"}],"_postman_id":"7baab66b-f187-404b-a537-4050de12ec17"}],"id":"c49ffd34-3c67-4145-b871-15cefaab24b5","_postman_id":"c49ffd34-3c67-4145-b871-15cefaab24b5","description":""},{"name":"Website Chat","item":[{"name":"Get website chat","id":"5748b881-aaa3-4078-a4c3-2ec0c4260031","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//chats","description":"<p>Get website chat</p>\n","urlObject":{"path":["chats"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"f85f1121-9fca-44e5-bc3d-1e7d515c4db7","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.1//chats"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -34911148,\n  \"button\": \"nulla id magna et\",\n  \"color\": \"tempor\",\n  \"position\": \"ad adipisicing reprehenderit\",\n  \"header\": \"occaecat\",\n  \"organization_name\": \"nulla\",\n  \"status\": \"Duis occaecat\",\n  \"team_number\": \"ad ullamco consequat\",\n  \"uuid\": \"laboris qui in deserunt\",\n  \"domains\": [\n    {\n      \"website_chat_id\": 10556449,\n      \"domain\": \"qui\"\n    },\n    {\n      \"website_chat_id\": -89009276,\n      \"domain\": \"laboris rep\"\n    }\n  ],\n  \"created_at\": \"dolore ut\",\n  \"updated_at\": \"ex\"\n}"}],"_postman_id":"5748b881-aaa3-4078-a4c3-2ec0c4260031"},{"name":"Create or update website chat","id":"73a0794d-f12d-45b6-87db-5c02c95cff6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"header\": \"consequa\",\n  \"phone\": \"Duis\",\n  \"team_id\": \"do mollit\",\n  \"button\": \"et nulla sunt ullamco sit\",\n  \"color\": \"consectetur Duis dolor culpa et\",\n  \"message\": \"exercit\",\n  \"status\": true,\n  \"domains\": [\n    \"dolor dol\",\n    \"cillum aute non dolor\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//chats","description":"<p>Create or update website chat</p>\n","urlObject":{"path":["chats"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[]}},"response":[{"id":"41dbe910-31c0-49f2-ae63-6854a8fbaf20","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"header\": \"consectetu\",\n  \"phone\": \"nostrud eu et\",\n  \"team_id\": \"est et dolore\",\n  \"button\": \"culpa magna incididunt occaecat irure\",\n  \"color\": \"commodo Duis ex\",\n  \"message\": \"laboris enim Dui\",\n  \"status\": true,\n  \"domains\": [\n    \"id nulla amet et cillum\",\n    \"dolor quis consequat non qui\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//chats"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 53395066,\n  \"button\": \"esse\",\n  \"color\": \"consectetur labore anim velit ullamco\",\n  \"position\": \"esse\",\n  \"header\": \"aute proident in consectetur\",\n  \"organization_name\": \"velit sed dolor Lorem\",\n  \"status\": \"Lorem labore fugiat Ut\",\n  \"team_number\": \"exercitation\",\n  \"uuid\": \"officia velit Duis dolor\",\n  \"domains\": [\n    {\n      \"website_chat_id\": 41331267,\n      \"domain\": \"laboris commodo aliqua qui consectetur\"\n    },\n    {\n      \"website_chat_id\": 72932173,\n      \"domain\": \"fugiat culpa do\"\n    }\n  ],\n  \"created_at\": \"amet velit\",\n  \"updated_at\": \"nisi nulla\"\n}"},{"id":"8401f876-58b3-48ea-9cbe-dd25a1f24dbd","name":"Error","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"header\": \"consectetu\",\n  \"phone\": \"nostrud eu et\",\n  \"team_id\": \"est et dolore\",\n  \"button\": \"culpa magna incididunt occaecat irure\",\n  \"color\": \"commodo Duis ex\",\n  \"message\": \"laboris enim Dui\",\n  \"status\": true,\n  \"domains\": [\n    \"id nulla amet et cillum\",\n    \"dolor quis consequat non qui\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.1//chats"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"}],"_postman_id":"73a0794d-f12d-45b6-87db-5c02c95cff6d"},{"name":"Get website chat settings","id":"73d8afff-26e5-4849-bedf-0987ca2a9e8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{bearerToken}}"},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.1//chats/:token","description":"<p>Get website chat settings</p>\n","urlObject":{"path":["chats",":token"],"host":["https://api.salesmessage.com/pub/v2.1/"],"query":[],"variable":[{"id":"d01a3859-accb-4c0a-ad4b-0d4f813a4a88","description":{"content":"<p>(Required) Token</p>\n","type":"text/plain"},"type":"any","value":"laborum","key":"token"}]}},"response":[{"id":"89fec95a-4c5e-4072-a86f-03edb0a08246","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//chats/:token","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["chats",":token"],"variable":[{"key":"token","value":"laborum","description":"(Required) Token"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"cdn_url\": \"magna dolor ut est\",\n  \"button\": \"aute sunt dolore mini\",\n  \"color\": \"elit eu magna\",\n  \"position\": \"nisi\",\n  \"header\": \"laboris sunt\",\n  \"organization_name\": \"consectetur nulla cillum\",\n  \"status\": \"aliqua in occaecat tempor\",\n  \"team_number\": \"ad tempor\",\n  \"uuid\": \"magna dolor pariatur Excepteur\",\n  \"domains\": [\n    {\n      \"website_chat_id\": -24641072,\n      \"domain\": \"in nostrud exercitation\"\n    },\n    {\n      \"website_chat_id\": -13722635,\n      \"domain\": \"laboris deserunt\"\n    }\n  ]\n}"},{"id":"444b8e9e-8708-45a7-a9fa-c750a62edb60","name":"Error","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.1//chats/:token","host":["https://api.salesmessage.com/pub/v2.1/"],"path":["chats",":token"],"variable":[{"key":"token","value":"laborum","description":"(Required) Token"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"occaecat do\"\n}"}],"_postman_id":"73d8afff-26e5-4849-bedf-0987ca2a9e8b"}],"id":"a27d4bee-3cb2-41df-878a-65e546c9a164","_postman_id":"a27d4bee-3cb2-41df-878a-65e546c9a164","description":""}],"variable":[{"id":"dd4f4f52-3910-4e59-a3ba-41e2a358679b","key":"baseUrl","value":"https://api.salesmessage.com/pub/v2.1/","type":"string"}]}