{"info":{"_postman_id":"dadeaf6b-8159-4ec6-97c1-085b26bee24f","name":"SalesMessage Public API v2.3","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 <code>https://e33e4a6a-ff9d-419f-a378-ec53560c0bb7.mock.pstmn.io</code></p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Supported authorization methods include: <strong>Personal Access Token (PAT)</strong> and <strong>OAuth2</strong>.\nWhether to use PAT or regular OAuth2 tokens highly depends on your use case.</p>\n<ul>\n<li><p><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.</p>\n</li>\n<li><p><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.</p>\n</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><p>Authorization code grant flow</p>\n</li>\n<li><p>Implicit grant flow</p>\n</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.3/oauth/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, construct and open a URL like:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://app.salesmessage.com/auth/oauth\n?response_type=code\n&amp;client_id={client_id}\n&amp;redirect_uri={redirect_uri}\n&amp;scope={scope}\n&amp;state={state}\n</code></pre><h5 id=\"examples\">Examples:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Read/write users\nhttps://app.salesmessage.com/auth/oauth?response_type=code&amp;client_id=269&amp;redirect_uri=https://example.app/callback&amp;scope=users:read%20users:write&amp;state=xcoiv98y2kd22vusuye3kch\n\n# Read contacts\nhttps://app.salesmessage.com/auth/oauth?response_type=code&amp;client_id=269&amp;redirect_uri=https://example.app/callback&amp;scope=contacts:read&amp;state=xcoiv98y2kd22vusuye3kch\n</code></pre><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://app.salesmessage.com/app/auth/token\">https://app.salesmessage.com/app/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.3/oauth/token`\n\nContent-Type: application/x-www-form-urlencoded\n\n`grant_type`=authorization_code\n\n&amp;`code`=&lt;my-authorization-code&gt;\n\n&amp;`client_id`=&lt;client_id&gt;\n\n&amp;`client_secret`=&lt;client_secret&gt;\n\n&amp;`redirect_uri`=&lt;https://example.app/callback&gt;\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</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.3/oauth/token/refresh\nContent-Type: application/x-www-form-urlencoded\ngrant_type=refresh_token\n&amp;client_id=&lt;client_id&gt;\n&amp;client_secret=&lt;client_secret&gt;\n&amp;refresh_token=&lt;refresh_token&gt;\n&amp;scope=public-api\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.3/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.3/auth/oauth\n?response_type=token\n&amp;client_id=hof5gwx0su6owfnys0yan9c87zr6t\n&amp;redirect_uri=http://localhost:3000\n&amp;scope=channel%3Amanage%3Apolls+channel%3Aread%3Apolls\n&amp;state=c3ab8aa609ea11e793ae92361f002671\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%3Amanage%3Apolls+channel%3Aread%3Apolls\n&amp;state=c3ab8aa609ea11e793ae92361f002671\n&amp;token_type=bearer\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</code></pre><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.\nTo 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.\nYour 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":"13783878","collectionId":"dadeaf6b-8159-4ec6-97c1-085b26bee24f","publishedId":"2sBYApyDGF","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-08-14T06:52:50.000Z"},"item":[{"name":"contacts","item":[{"name":"opt-in","item":[{"name":"{contact}","item":[{"name":"Opt-in contact","id":"a1821904-908b-4232-b6a4-dd2cc8286884","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/opt-in/:contact","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[],"variable":[{"id":"cb810c9a-2ff4-4f4c-bc7a-0d80e24fc3cc","description":{"content":"<p>Contact id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"contact"}]}},"response":[{"id":"0eb4f763-2ec2-4afb-b523-8e8a72b35c50","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/opt-in/:contact","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","opt-in",":contact"],"variable":[{"key":"contact","value":"1","description":"Contact id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"},{"id":"a9907141-b3b1-4e2f-af24-66efa16157a7","name":"Contact is hard opt'd out","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/opt-in/:contact","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","opt-in",":contact"],"variable":[{"key":"contact","value":"1","description":"Contact id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\",\n  \"message\": \"string\"\n}"}],"_postman_id":"a1821904-908b-4232-b6a4-dd2cc8286884"}],"id":"2054165b-bae2-4c0f-9ca3-2108554ac26d","_postman_id":"2054165b-bae2-4c0f-9ca3-2108554ac26d","description":""},{"name":"request","item":[{"name":"{conversation}","item":[{"name":"Send opt-in request to conversation`s contact","id":"c9736298-5aa0-4776-a4b1-017f938f0aaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/opt-in/request/:conversation","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[],"variable":[{"id":"52c37870-c4aa-4e72-a0a7-6706a6d1c920","description":{"content":"<p>Conversation id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"conversation"}]}},"response":[{"id":"24bc3ab9-8061-4583-bd1b-f08b763b3b15","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/opt-in/request/:conversation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","opt-in","request",":conversation"],"variable":[{"key":"conversation","value":"1","description":"Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"contact\": {\n    \"id\": 8050,\n    \"owner_id\": 8111,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 4152\n      },\n      {\n        \"number_id\": 9756\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 8896,\n        \"number_id\": 7324,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 9941,\n        \"number_id\": 8898,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 1113,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 9834,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 679,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 5514,\n        \"custom_field_id\": 1041,\n        \"contact_id\": 2215,\n        \"field_key\": \"string\",\n        \"organization_id\": 6805,\n        \"text\": \"string\",\n        \"number\": 309,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 483,\n        \"custom_field_id\": 55,\n        \"contact_id\": 9451,\n        \"field_key\": \"string\",\n        \"organization_id\": 2516,\n        \"text\": \"string\",\n        \"number\": 819,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 938,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 6387,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5093,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 5557,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"message\": {\n    \"id\": 3296,\n    \"conversation_id\": 1755,\n    \"automated\": false,\n    \"status\": \"string\",\n    \"type\": \"string\",\n    \"mms_status\": \"string\",\n    \"body\": \"string\",\n    \"body_raw\": \"string\",\n    \"has_tagging\": false,\n    \"icon\": \"string\",\n    \"received_at\": \"string\",\n    \"send_at\": \"string\",\n    \"queued_at\": \"string\",\n    \"sent_at\": \"string\",\n    \"delivered_at\": \"string\",\n    \"failed_at\": \"string\",\n    \"failed_reason\": \"string\",\n    \"created_at\": \"string\",\n    \"stop_on_response\": true,\n    \"is_hipaa\": false,\n    \"record\": {\n      \"id\": 3663,\n      \"message_id\": 8986,\n      \"sid\": \"string\",\n      \"record_id\": \"string\",\n      \"duration\": 3521,\n      \"status\": \"string\",\n      \"url\": \"string\",\n      \"is_voicemail\": false,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"user_id\": 130,\n    \"source_id\": \"string\",\n    \"source\": \"string\",\n    \"contact\": {\n      \"id\": 6037,\n      \"owner_id\": 8392,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 7211\n        },\n        {\n          \"number_id\": 2518\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 6215,\n          \"number_id\": 3072,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 9960,\n          \"number_id\": 8661,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 4094,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 8895,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1890,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 4115,\n          \"custom_field_id\": 5941,\n          \"contact_id\": 7834,\n          \"field_key\": \"string\",\n          \"organization_id\": 8682,\n          \"text\": \"string\",\n          \"number\": 2961,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 6922,\n          \"custom_field_id\": 9169,\n          \"contact_id\": 3592,\n          \"field_key\": \"string\",\n          \"organization_id\": 9290,\n          \"text\": \"string\",\n          \"number\": 9205,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 9027,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 1698,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 5705,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 4603,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    \"user\": {\n      \"id\": 8882,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 6763,\n      \"organization_id\": 1946,\n      \"photo_url\": \"string\",\n      \"unread\": 2644,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": true,\n      \"organizationNumber\": [\n        {\n          \"id\": 7633,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 1206,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    \"pending_mentions\": [\n      {\n        \"id\": 7076,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 571,\n        \"organization_id\": 7882,\n        \"photo_url\": \"string\",\n        \"unread\": 393,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 1077,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 4027,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      {\n        \"id\": 1333,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 1107,\n        \"organization_id\": 8889,\n        \"photo_url\": \"string\",\n        \"unread\": 1239,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": false,\n        \"organizationNumber\": [\n          {\n            \"id\": 9798,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 3265,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    ],\n    \"media\": [\n      {\n        \"id\": 6021,\n        \"content_type\": \"string\",\n        \"source\": \"string\",\n        \"source_short\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 4209,\n        \"content_type\": \"string\",\n        \"source\": \"string\",\n        \"source_short\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ]\n  }\n}"}],"_postman_id":"c9736298-5aa0-4776-a4b1-017f938f0aaa"}],"id":"6f94c6b4-9676-4182-af8f-af876113dd77","_postman_id":"6f94c6b4-9676-4182-af8f-af876113dd77","description":""}],"id":"8bfb2533-ceeb-4e5d-8082-a6f48fc76a53","_postman_id":"8bfb2533-ceeb-4e5d-8082-a6f48fc76a53","description":""}],"id":"16a908dc-496c-421f-aee1-5499ee4f5532","_postman_id":"16a908dc-496c-421f-aee1-5499ee4f5532","description":""},{"name":"opt-out","item":[{"name":"{contact}","item":[{"name":"Opt-out contact","id":"69c67b65-816a-485e-8cef-e0013d4dc77b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/opt-out/:contact","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br />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.3"],"query":[],"variable":[{"id":"2d8f3cd8-4466-4eb4-acd4-f532b2eb33bc","description":{"content":"<p>Contact id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"contact"}]}},"response":[{"id":"731c31cd-066f-44b4-ae11-07fce75015dc","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/opt-out/:contact","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","opt-out",":contact"],"variable":[{"key":"contact","value":"1","description":"Contact id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"69c67b65-816a-485e-8cef-e0013d4dc77b"}],"id":"4d717493-9a37-4877-9eb0-d2d0aa3eb507","_postman_id":"4d717493-9a37-4877-9eb0-d2d0aa3eb507","description":""},{"name":"bulk","item":[{"name":"Bulk opt-out to contact","id":"9c62cccb-f2e1-4719-ae45-8f3962ba8069","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"contacts\": [\n    1,\n    1\n  ],\n  \"bulk_all\": false,\n  \"team_id\": 6881\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/opt-out/bulk","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> Bulk opt-out to contact</p>\n","urlObject":{"path":["contacts","opt-out","bulk"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"945f4d67-4f88-498f-a732-97cd660bf0d0","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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  \"bulk_all\": false,\n  \"team_id\": 6881\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/opt-out/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"826a5a5c-039d-4a32-9e4b-845588b3fb1c","name":"Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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  \"bulk_all\": false,\n  \"team_id\": 6881\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/opt-out/bulk"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9c62cccb-f2e1-4719-ae45-8f3962ba8069"}],"id":"013f8399-7828-45fd-a3d0-943b9b7d88d2","_postman_id":"013f8399-7828-45fd-a3d0-943b9b7d88d2","description":""},{"name":"Make contact opt-out","id":"c653aff2-80aa-47bf-9dee-d8e65c87313d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/opt-out","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> Make contact opt-out</p>\n","urlObject":{"path":["contacts","opt-out"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"6121e308-145d-4eeb-850a-65565d17cecc","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/opt-out"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"c653aff2-80aa-47bf-9dee-d8e65c87313d"}],"id":"137d7eb1-b47b-4684-95d6-d57036ead021","_postman_id":"137d7eb1-b47b-4684-95d6-d57036ead021","description":""},{"name":"{contact}","item":[{"name":"conversations","item":[{"name":"Get conversation by contact","id":"32e2ff3d-841b-432c-8dee-c5545941f394","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/conversations","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> Get conversation by contact</p>\n","urlObject":{"path":["contacts",":contact","conversations"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"74531c3a-e215-4bc8-a11c-c556d3c21261","description":{"content":"<p>The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"","key":"contact"}]}},"response":[{"id":"138433d5-778c-4964-ba02-705f22960849","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/conversations","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","conversations"],"variable":[{"key":"contact","value":"","description":"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\": 9437,\n  \"inbox_id\": 273,\n  \"contact_id\": 7582,\n  \"user_id\": 3404,\n  \"last_message_at\": \"string\",\n  \"last_manual_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"string\",\n  \"tagging_last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"owner\": {\n    \"id\": 4429,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 6496,\n    \"organization_id\": 302,\n    \"photo_url\": \"string\",\n    \"unread\": 5483,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 7228,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1752,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"number_id\": 5481,\n  \"number\": {\n    \"id\": 8893,\n    \"organization_id\": 5963,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 2353,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7516,\n    \"is_landline\": 7245,\n    \"is_toll_free\": false,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 8353,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 4563\n    },\n    \"landline\": {\n      \"id\": 8443,\n      \"number_id\": 1562,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2209,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 148,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 8960,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 318,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 5569,\n      \"number_id\": 966,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9658,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 6120,\n      \"organization_id\": 1238,\n      \"owner_id\": 3615,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"last_assigned_user_id\": 4713,\n      \"default_assigned_user_id\": 2080\n    }\n  },\n  \"allow_call\": false,\n  \"name\": \"string\",\n  \"group_name\": \"string\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 2837,\n      \"owner_id\": 3685,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9153\n        },\n        {\n          \"number_id\": 159\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2362,\n          \"number_id\": 3420,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 4895,\n          \"number_id\": 6254,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 2181,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 646,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8186,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6059,\n          \"custom_field_id\": 7308,\n          \"contact_id\": 4919,\n          \"field_key\": \"string\",\n          \"organization_id\": 9117,\n          \"text\": \"string\",\n          \"number\": 2185,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5732,\n          \"custom_field_id\": 7689,\n          \"contact_id\": 2502,\n          \"field_key\": \"string\",\n          \"organization_id\": 819,\n          \"text\": \"string\",\n          \"number\": 5702,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 5750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 958,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 706,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 8271,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 7628,\n      \"owner_id\": 4645,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 8265\n        },\n        {\n          \"number_id\": 5255\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5838,\n          \"number_id\": 5883,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 7877,\n          \"number_id\": 7240,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 5695,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4347,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1073,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 4134,\n          \"custom_field_id\": 2889,\n          \"contact_id\": 3268,\n          \"field_key\": \"string\",\n          \"organization_id\": 1578,\n          \"text\": \"string\",\n          \"number\": 6593,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9152,\n          \"custom_field_id\": 8265,\n          \"contact_id\": 527,\n          \"field_key\": \"string\",\n          \"organization_id\": 1622,\n          \"text\": \"string\",\n          \"number\": 20,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 376,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 3064,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3371,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3560,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 7083,\n      \"conversation_id\": 2091,\n      \"organization_id\": 1694,\n      \"changer_user\": [\n        {\n          \"user_id\": 3046,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 6426,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4621,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 3718,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 6776,\n      \"conversation_id\": 792,\n      \"organization_id\": 9091,\n      \"changer_user\": [\n        {\n          \"user_id\": 8037,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 2591,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4165,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 4025,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"32e2ff3d-841b-432c-8dee-c5545941f394"}],"id":"3fa25b5c-b11d-42ef-8fce-80b0f0d10c0f","_postman_id":"3fa25b5c-b11d-42ef-8fce-80b0f0d10c0f","description":""},{"name":"conversation-history","item":[{"name":"messages","item":[{"name":"Get conversation history messages for a contact","id":"c2366cfb-7ff1-4910-a516-b74e9f0ae67f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/conversation-history/messages?with_activity_logs=true&limit=2491&page=2491","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code></p>\n","urlObject":{"path":["contacts",":contact","conversation-history","messages"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"key":"with_activity_logs","value":"true"},{"key":"limit","value":"2491"},{"key":"page","value":"2491"}],"variable":[{"id":"dcc27945-f342-4c6c-89cf-31e78dc2ad10","description":{"content":"<p>ID of the contact</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contact"}]}},"response":[{"id":"2dddbd92-5c6a-44b9-b944-32d04edf36e3","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/conversation-history/messages?with_activity_logs=true&limit=2491&page=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","conversation-history","messages"],"query":[{"key":"with_activity_logs","value":"true"},{"key":"limit","value":"2491"},{"key":"page","value":"2491"}],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"meta\": {}\n}"},{"id":"5e7d68e3-21ab-4612-9a2c-4252e494e015","name":"Unauthenticated","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.3/contacts/:contact/conversation-history/messages?with_activity_logs=true&limit=2491&page=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","conversation-history","messages"],"query":[{"key":"with_activity_logs","value":"true"},{"key":"limit","value":"2491"},{"key":"page","value":"2491"}],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"23575f03-c0fd-4285-9670-3d777d19dd11","name":"Forbidden","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.3/contacts/:contact/conversation-history/messages?with_activity_logs=true&limit=2491&page=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","conversation-history","messages"],"query":[{"key":"with_activity_logs","value":"true"},{"key":"limit","value":"2491"},{"key":"page","value":"2491"}],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"c10df2d8-324a-48f1-8175-52533984d989","name":"Contact 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.3/contacts/:contact/conversation-history/messages?with_activity_logs=true&limit=2491&page=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","conversation-history","messages"],"query":[{"key":"with_activity_logs","value":"true"},{"key":"limit","value":"2491"},{"key":"page","value":"2491"}],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c2366cfb-7ff1-4910-a516-b74e9f0ae67f"}],"id":"a5dde4ed-335b-4000-92fd-aa1aca3e9e7d","_postman_id":"a5dde4ed-335b-4000-92fd-aa1aca3e9e7d","description":""}],"id":"d12d9c60-aa2a-4f7c-bd23-f4e8d94e9943","_postman_id":"d12d9c60-aa2a-4f7c-bd23-f4e8d94e9943","description":""},{"name":"custom-fields","item":[{"name":"Update contact`s custom field","id":"09694fe5-31ed-47ee-8388-435ce414d02a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/custom-fields?custom_field_key=custom.email&value=email@example.com","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[{"description":{"content":"<p>Custom Field Key</p>\n","type":"text/plain"},"key":"custom_field_key","value":"custom.email"},{"description":{"content":"<p>Value</p>\n","type":"text/plain"},"key":"value","value":"email@example.com"}],"variable":[{"id":"1822e3ff-1545-45c3-a7bf-0cd569af65b1","description":{"content":"<p>ID of contact</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contact"}]}},"response":[{"id":"e1051aab-a18f-4cbd-938b-600e22df22fc","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/custom-fields?custom_field_key=custom.email&value=email@example.com","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","custom-fields"],"query":[{"description":"Custom Field Key","key":"custom_field_key","value":"custom.email"},{"description":"Value","key":"value","value":"email@example.com"}],"variable":[{"key":"contact","value":"2491","description":"ID of contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"09694fe5-31ed-47ee-8388-435ce414d02a"}],"id":"68aff538-d4da-4a92-81fc-27c24f6a261e","_postman_id":"68aff538-d4da-4a92-81fc-27c24f6a261e","description":""},{"name":"link","item":[{"name":"Link a contact to an integration","id":"3c5a94bc-cd6a-411f-b285-0cc0b4f5c0a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"integration_id\": 4568,\n  \"contact_integration_id\": \"string\",\n  \"phone_type\": \"string\",\n  \"update_contact\": false,\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/link","description":"<p>REQUIRED SCOPES <code>['contacts:write', 'integrations:write']</code></p>\n","urlObject":{"path":["contacts",":contact","link"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"dc7c5ace-811d-4472-aaad-df09236ce5ef","description":{"content":"<p>ID of the contact</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contact"}]}},"response":[{"id":"562c7613-343c-447b-9dc9-048b05ad58ee","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"integration_id\": 4568,\n  \"contact_integration_id\": \"string\",\n  \"phone_type\": \"string\",\n  \"update_contact\": false,\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/link","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","link"],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"},{"id":"66917557-52a8-4fee-a4a8-8758e2929638","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"integration_id\": 4568,\n  \"contact_integration_id\": \"string\",\n  \"phone_type\": \"string\",\n  \"update_contact\": false,\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/link","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","link"],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"c9efecba-0a8b-4943-b13b-48f9ce8b6d87","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"integration_id\": 4568,\n  \"contact_integration_id\": \"string\",\n  \"phone_type\": \"string\",\n  \"update_contact\": false,\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/link","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","link"],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"38abfde6-eb96-473f-9d7c-ca3549b95249","name":"Contact not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"integration_id\": 4568,\n  \"contact_integration_id\": \"string\",\n  \"phone_type\": \"string\",\n  \"update_contact\": false,\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/link","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","link"],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3554ea93-f9f3-48f4-bb9d-4e3b3a595575","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"integration_id\": 4568,\n  \"contact_integration_id\": \"string\",\n  \"phone_type\": \"string\",\n  \"update_contact\": false,\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/link","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","link"],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": [\n    \"string\",\n    \"string\"\n  ]\n}"}],"_postman_id":"3c5a94bc-cd6a-411f-b285-0cc0b4f5c0a6"}],"id":"704ce176-34dc-4aed-b8f5-f0bb4e52020e","_postman_id":"704ce176-34dc-4aed-b8f5-f0bb4e52020e","description":""},{"name":"tags","item":[{"name":"Add tags to contact","id":"f6294ead-4cec-443f-8244-95c0da954bef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/tags","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> This API request attaches a tag or multiple tags provided by tag ids to contacts with given ids.</p>\n","urlObject":{"path":["contacts",":contact","tags"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"2115f696-0991-4751-b2be-818d5e7afe92","description":{"content":"<p>Contact id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"contact"}]}},"response":[{"id":"145547df-4884-4daa-a87e-4fe0d5c78f8b","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/tags","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","tags"],"variable":[{"key":"contact","value":"1","description":"Contact id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"f6294ead-4cec-443f-8244-95c0da954bef"}],"id":"2765cb6e-c75b-4ee0-a7a1-79688f9ed648","_postman_id":"2765cb6e-c75b-4ee0-a7a1-79688f9ed648","description":""},{"name":"fields","item":[{"name":"Update contact fields","id":"5216ad48-2849-44c9-9090-e16ef07a29fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"owner_id\": 9135,\n  \"custom_fields\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/fields","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code></p>\n","urlObject":{"path":["contacts",":contact","fields"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"ab558123-0c5a-4972-9222-f108a0945689","description":{"content":"<p>ID of the contact</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contact"}]}},"response":[{"id":"adb4208d-bbbc-4fba-89e1-031912a4389f","name":"Successful operation","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"owner_id\": 9135,\n  \"custom_fields\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/fields","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","fields"],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"},{"id":"a6f53fab-a5c2-4aae-8aeb-ae1d88ef2db0","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"owner_id\": 9135,\n  \"custom_fields\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/fields","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","fields"],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"cd01bd98-61b1-49e7-a17c-14d2cafeae2c","name":"Forbidden","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"owner_id\": 9135,\n  \"custom_fields\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/fields","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","fields"],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"518f2a7d-af93-4b11-b9f4-cf22a610b7bc","name":"Contact not found","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"owner_id\": 9135,\n  \"custom_fields\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/fields","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","fields"],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5e7c005a-7c96-4cc1-9a48-bfbfe46d82c2","name":"Validation error","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"owner_id\": 9135,\n  \"custom_fields\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact/fields","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact","fields"],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5216ad48-2849-44c9-9090-e16ef07a29fa"}],"id":"057b13f9-1f45-4ed5-94cc-60d65a53a969","_postman_id":"057b13f9-1f45-4ed5-94cc-60d65a53a969","description":""},{"name":"Get contact by id","id":"c027cfda-57da-4054-b527-66e769755d0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/:contact","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> 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.3"],"query":[],"variable":[{"id":"e4fd5e8a-fcb0-49c2-a87b-f40e08e76189","description":{"content":"<p>ID of contact</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contact"}]}},"response":[{"id":"acd0d576-f819-4c0a-bdc0-fd1ce5b65d96","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact"],"variable":[{"key":"contact","value":"2491","description":"ID of contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"c027cfda-57da-4054-b527-66e769755d0d"},{"name":"Update contact","id":"b373715c-a9e4-4059-a69b-1d081e53d4f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"contact\": \"string\",\n  \"number\": \"string\",\n  \"integration_id\": 9401,\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"contact_integration_id\": \"string\",\n  \"customFields\": {\n    \"key_0\": [\n      {\n        \"type\": \"string\"\n      },\n      {\n        \"type\": \"string\"\n      }\n    ]\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/:contact","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[],"variable":[{"id":"c6eab8cc-72e0-4afa-b8ce-14d6c641126e","description":{"content":"<p>Contact id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"contact"}]}},"response":[{"id":"74c6ea39-af3f-4b3c-a04a-8f15861cc834","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"contact\": \"string\",\n  \"number\": \"string\",\n  \"integration_id\": 9401,\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"email\": \"string\",\n  \"contact_integration_id\": \"string\",\n  \"customFields\": {\n    \"key_0\": [\n      {\n        \"type\": \"string\"\n      },\n      {\n        \"type\": \"string\"\n      }\n    ]\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact"],"variable":[{"key":"contact","value":"1","description":"Contact id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"b373715c-a9e4-4059-a69b-1d081e53d4f0"},{"name":"Delete contact","id":"1f10a2c5-7b17-4eac-a883-0bfaa959064c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/:contact","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[],"variable":[{"id":"298930f5-a63f-48f3-8ca2-0f9ff15a06f2","description":{"content":"<p>Contact id</p>\n","type":"text/plain"},"type":"any","value":"","key":"contact"}]}},"response":[{"id":"fb55f9d1-3bed-4faa-96ec-47c30313747a","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact"],"variable":[{"key":"contact","value":"","description":"Contact id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"string\",\n  \"string\"\n]"}],"_postman_id":"1f10a2c5-7b17-4eac-a883-0bfaa959064c"},{"name":"Update contact attribues","id":"12d6e777-2358-4f77-9591-625674c142ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/:contact?attribute=string&value=string","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[{"description":{"content":"<p>Attribute</p>\n","type":"text/plain"},"key":"attribute","value":"string"},{"description":{"content":"<p>Value</p>\n","type":"text/plain"},"key":"value","value":"string"}],"variable":[{"id":"f184d766-4af2-46ae-b430-dd1590ce60ec","description":{"content":"<p>The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"","key":"contact"}]}},"response":[{"id":"2a678983-211c-42b0-aab9-413470b2773b","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/:contact?attribute=string&value=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts",":contact"],"query":[{"description":"Attribute","key":"attribute","value":"string"},{"description":"Value","key":"value","value":"string"}],"variable":[{"key":"contact","value":"","description":"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\": 4749,\n    \"owner_id\": 9004,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 6671\n      },\n      {\n        \"number_id\": 7804\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 9703,\n        \"number_id\": 563,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 8198,\n        \"number_id\": 7869,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": false\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 3850,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 9888,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 2730,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 1426,\n        \"custom_field_id\": 2845,\n        \"contact_id\": 968,\n        \"field_key\": \"string\",\n        \"organization_id\": 7012,\n        \"text\": \"string\",\n        \"number\": 4652,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 592,\n        \"custom_field_id\": 8190,\n        \"contact_id\": 297,\n        \"field_key\": \"string\",\n        \"organization_id\": 3116,\n        \"text\": \"string\",\n        \"number\": 2205,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 3865,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 905,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 9423,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 1542,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  {\n    \"id\": 4408,\n    \"owner_id\": 2491,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 6619\n      },\n      {\n        \"number_id\": 3151\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 9594,\n        \"number_id\": 5777,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": true\n      },\n      {\n        \"id\": 6334,\n        \"number_id\": 89,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 6544,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 6580,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 9234,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 9871,\n        \"custom_field_id\": 5625,\n        \"contact_id\": 964,\n        \"field_key\": \"string\",\n        \"organization_id\": 3359,\n        \"text\": \"string\",\n        \"number\": 6929,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 4153,\n        \"custom_field_id\": 9732,\n        \"contact_id\": 1297,\n        \"field_key\": \"string\",\n        \"organization_id\": 7577,\n        \"text\": \"string\",\n        \"number\": 6312,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 5980,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 5008,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 6961,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 3709,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  }\n]"}],"_postman_id":"12d6e777-2358-4f77-9591-625674c142ed"}],"id":"c2f2964c-6102-43b3-a5e1-c4e44d97c4e9","_postman_id":"c2f2964c-6102-43b3-a5e1-c4e44d97c4e9","description":""},{"name":"bulk","item":[{"name":"Bulk to contact","id":"90f04289-eca1-493a-af14-3276dbc4efaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"contacts\": [\n    1,\n    1\n  ],\n  \"bulk_all\": false,\n  \"team_id\": 6881\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/bulk","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> Bulk to contact</p>\n","urlObject":{"path":["contacts","bulk"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"85709d32-2ff9-4fb5-9542-97618c51bdef","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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  \"bulk_all\": false,\n  \"team_id\": 6881\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b8a335a3-1daf-4faa-893f-d19c94040dcc","name":"Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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  \"bulk_all\": false,\n  \"team_id\": 6881\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/bulk"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"90f04289-eca1-493a-af14-3276dbc4efaf"}],"id":"dfb371f1-2348-429c-86a5-f2afcf1df855","_postman_id":"dfb371f1-2348-429c-86a5-f2afcf1df855","description":""},{"name":"tags","item":[{"name":"remove","item":[{"name":"Remove bulk tags","id":"1a050ba9-b53f-43b7-a403-2fa5d8ff8ec6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/tags/remove?contact_ids=1786&contact_ids=1861&tags=1786&tags=1861&remove_all=true&conversation_filter=string&team_id=2491","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"contact_ids","value":"1786"},{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"contact_ids","value":"1861"},{"description":{"content":"<p>The IDs of the Tags</p>\n","type":"text/plain"},"key":"tags","value":"1786"},{"description":{"content":"<p>The IDs of the Tags</p>\n","type":"text/plain"},"key":"tags","value":"1861"},{"description":{"content":"<p>Remove All</p>\n","type":"text/plain"},"key":"remove_all","value":"true"},{"description":{"content":"<p>Remove All</p>\n","type":"text/plain"},"key":"conversation_filter","value":"string"},{"description":{"content":"<p>Team id</p>\n","type":"text/plain"},"key":"team_id","value":"2491"}],"variable":[]}},"response":[{"id":"5d1529be-9a7c-45e8-8dcc-d39dff4fc42b","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/tags/remove?contact_ids=1861&tags=1861&remove_all=true&conversation_filter=string&team_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","tags","remove"],"query":[{"description":"The IDs of the Contacts","key":"contact_ids","value":"1861"},{"description":"The IDs of the Tags","key":"tags","value":"1861"},{"description":"Remove All","key":"remove_all","value":"true"},{"description":"Remove All","key":"conversation_filter","value":"string"},{"description":"Team id","key":"team_id","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"contacts\": [\n    756,\n    4168\n  ],\n  \"tags\": [\n    2458,\n    2548\n  ]\n}"},{"id":"b767f0ee-6e3d-418c-8267-a0fec0bfe4bc","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.3/contacts/tags/remove?contact_ids=1861&tags=1861&remove_all=true&conversation_filter=string&team_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","tags","remove"],"query":[{"description":"The IDs of the Contacts","key":"contact_ids","value":"1861"},{"description":"The IDs of the Tags","key":"tags","value":"1861"},{"description":"Remove All","key":"remove_all","value":"true"},{"description":"Remove All","key":"conversation_filter","value":"string"},{"description":"Team id","key":"team_id","value":"2491"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1a050ba9-b53f-43b7-a403-2fa5d8ff8ec6"}],"id":"1cd61ebf-5bfa-4a6a-b54a-00fc8a0948f8","_postman_id":"1cd61ebf-5bfa-4a6a-b54a-00fc8a0948f8","description":""},{"name":"{tag}","item":[{"name":"Get contacts by tag","id":"b88416e2-75b6-4e71-ac3f-25bceed3e82e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/tags/:tag?page=1&search=string&limit=20","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> Get paginated contacts which have provided tag</p>\n","urlObject":{"path":["contacts","tags",":tag"],"host":["https://api.salesmessage.com/pub/v2.3"],"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":"string"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"limit","value":"20"}],"variable":[{"id":"4d5b86b3-cea2-4a0b-bbfc-ca24d55345ef","description":{"content":"<p>The ID of the Tag</p>\n","type":"text/plain"},"type":"any","value":"","key":"tag"}]}},"response":[{"id":"22eb0ab4-a3b8-4eb9-8af9-5a6a138a3467","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/tags/:tag?page=1&search=string&limit=20","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","tags",":tag"],"query":[{"description":"The page of a collection to return.","key":"page","value":"1"},{"description":"The string to search for..","key":"search","value":"string"},{"description":"The number of items to return per page.","key":"limit","value":"20"}],"variable":[{"key":"tag","value":"","description":"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\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"b88416e2-75b6-4e71-ac3f-25bceed3e82e"}],"id":"4b86aa92-302e-4b33-8642-90e24f398aa0","_postman_id":"4b86aa92-302e-4b33-8642-90e24f398aa0","description":""},{"name":"Attach tags to contact","id":"10e75f2c-2734-44ea-b793-2807dbcc81d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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  \"team_id\": 9883,\n  \"tags\": [\n    {\n      \"id\": 1\n    },\n    {\n      \"id\": 1\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/tags","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> Add tags to contact</p>\n","urlObject":{"path":["contacts","tags"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"8ea5665e-71a0-4aca-8572-f95ecf7b8738","name":"Returns appliead tags instance.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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  \"team_id\": 9883,\n  \"tags\": [\n    {\n      \"id\": 1\n    },\n    {\n      \"id\": 1\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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":"1750e3b0-1791-4120-907b-a4f321156957","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"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  \"team_id\": 9883,\n  \"tags\": [\n    {\n      \"id\": 1\n    },\n    {\n      \"id\": 1\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/tags"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"10e75f2c-2734-44ea-b793-2807dbcc81d2"}],"id":"757adfdf-bba5-4626-8b7a-a622de5f885c","_postman_id":"757adfdf-bba5-4626-8b7a-a622de5f885c","description":""},{"name":"block","item":[{"name":"{contact}","item":[{"name":"Block contact","id":"36354215-b210-4dcf-af09-5fb1dd251034","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/block/:contact","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[],"variable":[{"id":"c777d323-14cb-4ea0-9048-988d47c0ceb2","description":{"content":"<p>The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"","key":"contact"}]}},"response":[{"id":"bedae1a9-19db-41b8-9b10-ca78dda38aac","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/block/:contact","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","block",":contact"],"variable":[{"key":"contact","value":"","description":"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\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"36354215-b210-4dcf-af09-5fb1dd251034"}],"id":"151fefe1-d421-4af4-9d41-f43e7e27a718","_postman_id":"151fefe1-d421-4af4-9d41-f43e7e27a718","description":""}],"id":"8b51edcd-8b72-481f-952d-f25ac7c7ec0e","_postman_id":"8b51edcd-8b72-481f-952d-f25ac7c7ec0e","description":""},{"name":"unblock","item":[{"name":"{contact}","item":[{"name":"Unblock contact","id":"89fe5a2e-0599-4ba6-92cf-065d9cb69934","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/unblock/:contact","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[],"variable":[{"id":"2343c77f-2042-4b6c-94e9-7a1e9e3d2982","description":{"content":"<p>The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"","key":"contact"}]}},"response":[{"id":"f4bb614b-c803-4545-a746-b78820733715","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/unblock/:contact","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","unblock",":contact"],"variable":[{"key":"contact","value":"","description":"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\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"89fe5a2e-0599-4ba6-92cf-065d9cb69934"}],"id":"e2fdc94d-950f-4e72-bbe4-ef306b020ffe","_postman_id":"e2fdc94d-950f-4e72-bbe4-ef306b020ffe","description":""}],"id":"cd77bc33-a67a-422d-822d-bf22f0fe4bbc","_postman_id":"cd77bc33-a67a-422d-822d-bf22f0fe4bbc","description":""},{"name":"fields","item":[{"name":"Set the list of columns for Contacts table","id":"5a4d44c1-6076-411a-9b1f-54b90585b8b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/fields?contact_fields[]=name&contact_fields[]=name","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[{"description":{"content":"<p>The List of contact fields</p>\n","type":"text/plain"},"key":"contact_fields[]","value":"name"},{"description":{"content":"<p>The List of contact fields</p>\n","type":"text/plain"},"key":"contact_fields[]","value":"name"}],"variable":[]}},"response":[{"id":"fb392080-8194-4ac1-96e9-2500f3f01a67","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/fields?contact_fields[]=name","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","fields"],"query":[{"description":"The List of contact fields","key":"contact_fields[]","value":"name"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"contact_fields\": {\n    \"id\": 5528,\n    \"user_id\": 5350,\n    \"organization_id\": 6413,\n    \"active_fields\": [\n      {\n        \"id\": 1859,\n        \"user_id\": 6796,\n        \"organization_id\": 8098,\n        \"active_fields\": \"string\"\n      },\n      {\n        \"id\": 6699,\n        \"user_id\": 6173,\n        \"organization_id\": 1137,\n        \"active_fields\": \"string\"\n      }\n    ]\n  }\n}"}],"_postman_id":"5a4d44c1-6076-411a-9b1f-54b90585b8b4"}],"id":"6ebed04a-62a1-450b-ac16-0546bdfbe822","_postman_id":"6ebed04a-62a1-450b-ac16-0546bdfbe822","description":""},{"name":"custom-fields","item":[{"name":"{contact}","item":[{"name":"Get contact's custom fields","id":"6fb900a4-8236-4133-a8f5-7909f219485a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/custom-fields/:contact","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> 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.3"],"query":[],"variable":[{"id":"66ab8dbe-727d-4353-a2c4-a0f26e7f7b81","description":{"content":"<p>ID of contact</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contact"}]}},"response":[{"id":"18861a91-20f9-4e87-a1ec-3d4ffda68cd0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/custom-fields/:contact","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","custom-fields",":contact"],"variable":[{"key":"contact","value":"2491","description":"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":"6fb900a4-8236-4133-a8f5-7909f219485a"}],"id":"856fdd94-b9ca-40b2-a3a5-e9850ac9283b","_postman_id":"856fdd94-b9ca-40b2-a3a5-e9850ac9283b","description":""}],"id":"063f91a0-d9cf-450f-898a-fbddbc48f350","_postman_id":"063f91a0-d9cf-450f-898a-fbddbc48f350","description":""},{"name":"export","item":[{"name":"Export contacts","id":"00cb80c2-f0ef-446a-8b47-34087aba128b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/export","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> 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.3"],"query":[],"variable":[]}},"response":[{"id":"014f5258-1ed2-42bb-9397-d4aa424120a1","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/export"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"url\": \"string\"\n  },\n  {\n    \"url\": \"string\"\n  }\n]"}],"_postman_id":"00cb80c2-f0ef-446a-8b47-34087aba128b"}],"id":"e130e7b0-d4ff-4abb-b92d-12cefc30440d","_postman_id":"e130e7b0-d4ff-4abb-b92d-12cefc30440d","description":""},{"name":"filter","item":[{"name":"Filter contacts based on provided criteria","id":"b506aa5b-64d8-4cb9-befd-4e41adb76d08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"key_0\": \"\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/filter","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code></p>\n","urlObject":{"path":["contacts","filter"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"83ca105e-2d83-45bc-b331-784f785d6c6f","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"key_0\": \"\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/filter"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"key_0\": \"\",\n    \"key_1\": \"\"\n  }\n}"},{"id":"45092466-08b2-4e11-bd3e-84b54821329f","name":"Bad request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"key_0\": \"\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/filter"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"},{"id":"3923a3e7-39cf-4ea7-be51-49fb3b820396","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"key_0\": \"\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/filter"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1644d04b-3644-48c0-b925-5088a2039ce4","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"key_0\": \"\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/filter"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b506aa5b-64d8-4cb9-befd-4e41adb76d08"}],"id":"773767c6-f16c-4155-a75e-8dd1392f5b21","_postman_id":"773767c6-f16c-4155-a75e-8dd1392f5b21","description":""},{"name":"filters","item":[{"name":"values","item":[{"name":"{fieldKey}","item":[{"name":"Get contact filter values","id":"fc2e19b7-57a0-4ccf-9d57-0488bf587d7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/filters/values/:fieldKey","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> This request returnes a list of filter values by filter key</p>\n","urlObject":{"path":["contacts","filters","values",":fieldKey"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"424a55e4-2ea9-4159-8bdc-bf89409b5729","description":{"content":"<p>Field key</p>\n","type":"text/plain"},"type":"any","value":"string","key":"fieldKey"}]}},"response":[{"id":"a1c41287-0615-4f04-a3c3-16bc02c42bef","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.3/contacts/filters/values/:fieldKey","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","filters","values",":fieldKey"],"variable":[{"key":"fieldKey","value":"string","description":"Field key"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"314eb9ef-8741-4a9d-b639-876b1034e654","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/filters/values/:fieldKey","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","filters","values",":fieldKey"],"variable":[{"key":"fieldKey","value":"string","description":"Field key"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Filter with key not found.\",\n  \"status\": 404\n}"},{"id":"0186a1b5-ea85-4026-a6b6-ab09eb640ea3","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/filters/values/:fieldKey","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","filters","values",":fieldKey"],"variable":[{"key":"fieldKey","value":"string","description":"Field key"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Filter with key does not support values.\",\n  \"status\": 422\n}"}],"_postman_id":"fc2e19b7-57a0-4ccf-9d57-0488bf587d7c"}],"id":"037ba7b3-0b4e-40a3-996e-609d9585f6bd","_postman_id":"037ba7b3-0b4e-40a3-996e-609d9585f6bd","description":""}],"id":"d4b3f7a8-de15-41e5-9df6-014fe9ac011a","_postman_id":"d4b3f7a8-de15-41e5-9df6-014fe9ac011a","description":""},{"name":"selected-values","item":[{"name":"{fieldKey}","item":[{"name":"Get contact filter selected values","id":"626fb697-08c8-4d71-b029-24e305ca7404","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/filters/selected-values/:fieldKey?keys[]=string&keys[]=string","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> This request returnes a list of selected filter values by filter key</p>\n","urlObject":{"path":["contacts","filters","selected-values",":fieldKey"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Selected filter values keys</p>\n","type":"text/plain"},"key":"keys[]","value":"string"},{"description":{"content":"<p>Selected filter values keys</p>\n","type":"text/plain"},"key":"keys[]","value":"string"}],"variable":[{"id":"c231fbcf-d68e-4acb-b21d-06aef94f87aa","description":{"content":"<p>Field key</p>\n","type":"text/plain"},"type":"any","value":"string","key":"fieldKey"}]}},"response":[{"id":"d2db5e88-e14f-4780-bd2f-9d9de5f32541","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.3/contacts/filters/selected-values/:fieldKey?keys[]=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","filters","selected-values",":fieldKey"],"query":[{"description":"Selected filter values keys","key":"keys[]","value":"string"}],"variable":[{"key":"fieldKey","value":"string","description":"Field key"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"669f9e24-7826-4536-a71a-be614f260a08","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/filters/selected-values/:fieldKey?keys[]=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","filters","selected-values",":fieldKey"],"query":[{"description":"Selected filter values keys","key":"keys[]","value":"string"}],"variable":[{"key":"fieldKey","value":"string","description":"Field key"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Filter with key not found.\",\n  \"status\": 404\n}"},{"id":"cf112599-038b-4b0a-aa1b-ae0b88e01c6f","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/filters/selected-values/:fieldKey?keys[]=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","filters","selected-values",":fieldKey"],"query":[{"description":"Selected filter values keys","key":"keys[]","value":"string"}],"variable":[{"key":"fieldKey","value":"string","description":"Field key"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Filter with key does not support values.\",\n  \"status\": 422\n}"}],"_postman_id":"626fb697-08c8-4d71-b029-24e305ca7404"}],"id":"e753b635-193d-484d-a2c1-4179aada33ae","_postman_id":"e753b635-193d-484d-a2c1-4179aada33ae","description":""}],"id":"9e547238-50cc-4fe6-8e9b-0c6166e1cf48","_postman_id":"9e547238-50cc-4fe6-8e9b-0c6166e1cf48","description":""},{"name":"regions","item":[{"name":"Get regions for filter","id":"99461c43-ccdf-4f9d-be12-15f8996ba2c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/filters/regions","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> 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.3"],"query":[],"variable":[]}},"response":[{"id":"fd7d7809-846c-433b-a411-0a63816508e0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/filters/regions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"99461c43-ccdf-4f9d-be12-15f8996ba2c8"}],"id":"fb6af249-0d99-4fab-a8a6-0467ce111d09","_postman_id":"fb6af249-0d99-4fab-a8a6-0467ce111d09","description":""},{"name":"time-zones","item":[{"name":"Get time zones for filter","id":"d499817d-3ac2-43b9-ad23-ac8a5f623820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/filters/time-zones","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> 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.3"],"query":[],"variable":[]}},"response":[{"id":"4250f34a-0b0f-40cc-9c7c-9074abaf325a","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/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":"d499817d-3ac2-43b9-ad23-ac8a5f623820"}],"id":"56f99675-f093-4e3e-a0bf-bbccb92e1d3f","_postman_id":"56f99675-f093-4e3e-a0bf-bbccb92e1d3f","description":""},{"name":"opt-in-statuses","item":[{"name":"Get Opt-In statuses for filter","id":"9685435f-79d3-4942-b172-4652713423d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/filters/opt-in-statuses","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> Get Opt-In statuses for filter</p>\n","urlObject":{"path":["contacts","filters","opt-in-statuses"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"6a381fdb-0856-4a84-9ab5-7aac13869300","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/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":"9685435f-79d3-4942-b172-4652713423d8"}],"id":"99a2296c-3502-485b-8063-e2c5cc8b088b","_postman_id":"99a2296c-3502-485b-8063-e2c5cc8b088b","description":""},{"name":"count","item":[{"name":"Get filtered contact count","id":"5ee2a07f-b159-486b-8a90-0049a2d716a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/filters/count?package_count=2491","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> 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.3"],"query":[{"description":{"content":"<p>Package Count</p>\n","type":"text/plain"},"key":"package_count","value":"2491"}],"variable":[]}},"response":[{"id":"7ece9eae-ef26-4216-ba7e-83e99247e60f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/filters/count?package_count=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","filters","count"],"query":[{"description":"Package Count","key":"package_count","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 6960,\n  \"invalid_count\": 6813,\n  \"invalid_breakdown\": {\n    \"invalid_reason\": 488,\n    \"blocked\": 738,\n    \"opted_out\": 9510,\n    \"not_allowed\": 6901\n  },\n  \"packages\": 285,\n  \"is_valid\": true\n}"}],"_postman_id":"5ee2a07f-b159-486b-8a90-0049a2d716a2"},{"name":"Get filtered contact count","id":"876d5131-1af8-415e-a341-e0571cc6dfed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"filtersList\": [\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/filters/count?package_count=2491&number_id=2491","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[{"description":{"content":"<p>Package Count</p>\n","type":"text/plain"},"key":"package_count","value":"2491"},{"description":{"content":"<p>Number id</p>\n","type":"text/plain"},"key":"number_id","value":"2491"}],"variable":[]}},"response":[{"id":"77d2f016-aebf-4362-a097-e00e5afd4899","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"filtersList\": [\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/filters/count?package_count=2491&number_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","filters","count"],"query":[{"description":"Package Count","key":"package_count","value":"2491"},{"description":"Number id","key":"number_id","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 6960,\n  \"invalid_count\": 6813,\n  \"invalid_breakdown\": {\n    \"invalid_reason\": 488,\n    \"blocked\": 738,\n    \"opted_out\": 9510,\n    \"not_allowed\": 6901\n  },\n  \"packages\": 285,\n  \"is_valid\": true\n}"}],"_postman_id":"876d5131-1af8-415e-a341-e0571cc6dfed"}],"id":"dbff7481-a674-48ee-a204-48ec24a08874","_postman_id":"dbff7481-a674-48ee-a204-48ec24a08874","description":""},{"name":"skipped","item":[{"name":"count","item":[{"name":"Get filtered contact count","id":"941e2772-b642-4313-8903-9cc1de9cf9cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"filtersList\": [\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/filters/skipped/count?package_count=2491&number_id=2491","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> Fetches the exact count of contacts in a filtered contact package.</p>\n","urlObject":{"path":["contacts","filters","skipped","count"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Package Count</p>\n","type":"text/plain"},"key":"package_count","value":"2491"},{"description":{"content":"<p>Number id</p>\n","type":"text/plain"},"key":"number_id","value":"2491"}],"variable":[]}},"response":[{"id":"5c09b925-a816-4306-a7d1-ebe8668eb1eb","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"filtersList\": [\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/filters/skipped/count?package_count=2491&number_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","filters","skipped","count"],"query":[{"description":"Package Count","key":"package_count","value":"2491"},{"description":"Number id","key":"number_id","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 8394,\n  \"invalid_breakdown\": {\n    \"invalid_reason\": 9344,\n    \"blocked\": 8169,\n    \"opted_out\": 4576,\n    \"not_allowed\": 5043\n  },\n  \"packages\": 4011,\n  \"is_valid\": false\n}"}],"_postman_id":"941e2772-b642-4313-8903-9cc1de9cf9cf"}],"id":"d8a7e2d8-bb0d-4e2d-bbd5-0c08fb2c071a","_postman_id":"d8a7e2d8-bb0d-4e2d-bbd5-0c08fb2c071a","description":""}],"id":"821450f2-ee36-4ad5-90f7-8ed4c53c08e5","_postman_id":"821450f2-ee36-4ad5-90f7-8ed4c53c08e5","description":""},{"name":"Get contact filters","id":"08a8f03f-614c-4b47-969e-7d5652720554","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/filters?withValues=true&skipValues[]=string&skipValues[]=string&withCustomFields=true&workflowSource=string&withWorkflowFields=true&withIntegrationList=true&withFullHubSpotList=true","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> 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.3"],"query":[{"description":{"content":"<p>Show values for contact filters</p>\n","type":"text/plain"},"key":"withValues","value":"true"},{"description":{"content":"<p>Do not display values for passed filters keys. Works only when query param withValues equals true</p>\n","type":"text/plain"},"key":"skipValues[]","value":"string"},{"description":{"content":"<p>Do not display values for passed filters keys. Works only when query param withValues equals true</p>\n","type":"text/plain"},"key":"skipValues[]","value":"string"},{"description":{"content":"<p>Show custom fields filter</p>\n","type":"text/plain"},"key":"withCustomFields","value":"true"},{"description":{"content":"<p>Workflow Source</p>\n","type":"text/plain"},"key":"workflowSource","value":"string"},{"description":{"content":"<p>Show workflow list filter</p>\n","type":"text/plain"},"key":"withWorkflowFields","value":"true"},{"description":{"content":"<p>Show integration list filter</p>\n","type":"text/plain"},"key":"withIntegrationList","value":"true"},{"description":{"content":"<p>Show HubSpot list filter</p>\n","type":"text/plain"},"key":"withFullHubSpotList","value":"true"}],"variable":[]}},"response":[{"id":"e27f1149-fb04-4f3e-8609-802153013c5d","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/filters?withValues=true&skipValues[]=string&withCustomFields=true&workflowSource=string&withWorkflowFields=true&withIntegrationList=true&withFullHubSpotList=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","filters"],"query":[{"description":"Show values for contact filters","key":"withValues","value":"true"},{"description":"Do not display values for passed filters keys. Works only when query param withValues equals true","key":"skipValues[]","value":"string"},{"description":"Show custom fields filter","key":"withCustomFields","value":"true"},{"description":"Workflow Source","key":"workflowSource","value":"string"},{"description":"Show workflow list filter","key":"withWorkflowFields","value":"true"},{"description":"Show integration list filter","key":"withIntegrationList","value":"true"},{"description":"Show HubSpot list filter","key":"withFullHubSpotList","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"operators\": [\n    \"string\",\n    \"string\"\n  ]\n}"}],"_postman_id":"08a8f03f-614c-4b47-969e-7d5652720554"}],"id":"89ba4c73-b0b1-469d-84c7-6db2f0c21528","_postman_id":"89ba4c73-b0b1-469d-84c7-6db2f0c21528","description":""},{"name":"import","item":[{"name":"upload","item":[{"name":"Upload file with contacts","id":"dd4c0dee-30e1-4b38-8e2e-6c8541b51c69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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.3/contacts/import/upload","description":"<p>REQUIRED SCOPES <code>['contact-imports:write']</code><br />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.3"],"query":[],"variable":[]}},"response":[{"id":"5f3506ad-4f48-47c5-9e09-3d0fb73de3a9","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"https://api.salesmessage.com/pub/v2.3/contacts/import/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"firstRow\": [\n    \"string\",\n    \"string\"\n  ],\n  \"previewRows\": [\n    \"string\",\n    \"string\"\n  ],\n  \"options\": [\n    {\n      \"key\": \"string\",\n      \"name\": \"string\"\n    },\n    {\n      \"key\": \"string\",\n      \"name\": \"string\"\n    }\n  ],\n  \"autoDetectedRowOptions\": [\n    {\n      \"email\": \"string\",\n      \"number\": \"string\"\n    },\n    {\n      \"email\": \"string\",\n      \"number\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"dd4c0dee-30e1-4b38-8e2e-6c8541b51c69"}],"id":"55835ecb-d592-43e2-88b9-67f1657450c3","_postman_id":"55835ecb-d592-43e2-88b9-67f1657450c3","description":""},{"name":"list","item":[{"name":"Update contacts imports","id":"f1a60284-3ae7-40aa-96cb-fd5477382f9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/import/list","description":"<p>REQUIRED SCOPES <code>['contact-imports:write']</code><br />Update contacts imports</p>\n","urlObject":{"path":["contacts","import","list"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"67dddc75-04ed-4dfa-acef-94a64001254b","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"list\": \"\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/import/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"firstRow\": [\n    \"string\",\n    \"string\"\n  ],\n  \"previewRows\": [\n    \"string\",\n    \"string\"\n  ],\n  \"options\": [\n    {\n      \"key\": \"string\",\n      \"name\": \"string\"\n    },\n    {\n      \"key\": \"string\",\n      \"name\": \"string\"\n    }\n  ],\n  \"autoDetectedRowOptions\": [\n    {\n      \"email\": \"string\",\n      \"number\": \"string\"\n    },\n    {\n      \"email\": \"string\",\n      \"number\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"f1a60284-3ae7-40aa-96cb-fd5477382f9c"}],"id":"d9240939-c3b7-458a-b624-903e928b62c9","_postman_id":"d9240939-c3b7-458a-b624-903e928b62c9","description":""},{"name":"{contactImport}","item":[{"name":"Delete contacts import","id":"b8c8d3b7-7eab-4394-bce4-82ba1cec0f45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/import/:contactImport","description":"<p>REQUIRED SCOPES <code>['contact-imports:write']</code><br />Delete contacts import</p>\n","urlObject":{"path":["contacts","import",":contactImport"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"f553c7c3-922d-4c07-ae1a-d43747b52718","description":{"content":"<p>The ID of the Contact Import</p>\n","type":"text/plain"},"type":"any","value":"","key":"contactImport"}]}},"response":[{"id":"00dbaa1a-8dff-469b-9c1e-cf16f3500893","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import",":contactImport"],"variable":[{"key":"contactImport","value":"","description":"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":"b8c8d3b7-7eab-4394-bce4-82ba1cec0f45"}],"id":"d1687f76-a503-4c25-ae05-346ba570fdf5","_postman_id":"d1687f76-a503-4c25-ae05-346ba570fdf5","description":""},{"name":"download","item":[{"name":"{contactImport}","item":[{"name":"Download contact import list as CSV","id":"443278bb-2c8f-4c3f-80fb-77b23b534681","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/import/download/:contactImport","description":"<p>REQUIRED SCOPES <code>['contact-imports:read']</code><br />Download contact import list as CSV</p>\n","urlObject":{"path":["contacts","import","download",":contactImport"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"41f47a2f-e17f-41d6-bb84-ecba8d679b0c","description":{"content":"<p>ID of the contact import</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contactImport"}]}},"response":[{"id":"87561cbb-f763-4970-81b7-600365522daa","name":"Successful operation","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.3/contacts/import/download/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","download",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"disabled":false,"description":{"content":"text/csv","type":"text/plain"},"key":"Content-Type","value":"string"},{"disabled":false,"description":{"content":"attachment; filename","type":"text/plain"},"key":"Content-Disposition","value":"string"},{"disabled":false,"description":{"content":"Size of the file in bytes","type":"text/plain"},"key":"Content-Length","value":"2491"}],"cookie":[],"responseTime":null,"body":""},{"id":"2017d3d9-841c-4f24-9d67-246eeb797c62","name":"Unauthenticated","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.3/contacts/import/download/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","download",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"532eb789-bf61-4682-a667-a6aa3b36f5d4","name":"Forbidden","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.3/contacts/import/download/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","download",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"05e8d677-5042-42dc-9e40-b53eab627055","name":"No list found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/download/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","download",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"No list found\"\n}"}],"_postman_id":"443278bb-2c8f-4c3f-80fb-77b23b534681"}],"id":"50456210-45b4-4d63-ba53-52d605c9cb68","_postman_id":"50456210-45b4-4d63-ba53-52d605c9cb68","description":""}],"id":"624ab773-7e65-43d3-b3fa-13528f190f69","_postman_id":"624ab773-7e65-43d3-b3fa-13528f190f69","description":""},{"name":"finish","item":[{"name":"{contactImport}","item":[{"name":"Finish a contact import process","id":"bff54995-e9d4-40e5-8922-825d9fbedf98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/import/finish/:contactImport","description":"<p>REQUIRED SCOPES <code>['contact-imports:write']</code><br />Finish a contact import process</p>\n","urlObject":{"path":["contacts","import","finish",":contactImport"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"80360880-6390-44fc-8260-6f7571f014f9","description":{"content":"<p>ID of the contact import</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contactImport"}]}},"response":[{"id":"cc4bc573-2a81-4d0b-b590-39042a78d855","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/finish/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","finish",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"unread\": 3544\n}"},{"id":"9eb83534-0c79-4c99-af08-63e38feda95f","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.3/contacts/import/finish/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","finish",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5762312c-44ec-4336-93c0-236958068eab","name":"Unauthenticated","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.3/contacts/import/finish/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","finish",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"91d278d5-6fe0-4bdf-a5a0-af312b8b078d","name":"Forbidden","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.3/contacts/import/finish/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","finish",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"2cf50e1b-d16f-491e-b6cb-1ec7f93da199","name":"Contact import 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.3/contacts/import/finish/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","finish",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bff54995-e9d4-40e5-8922-825d9fbedf98"}],"id":"b589ecb2-879f-4cb0-8ab0-1ca725e21d5b","_postman_id":"b589ecb2-879f-4cb0-8ab0-1ca725e21d5b","description":""}],"id":"8b2d9ad0-d07c-4a0c-9671-684a79d47bd3","_postman_id":"8b2d9ad0-d07c-4a0c-9671-684a79d47bd3","description":""},{"name":"progress","item":[{"name":"{contactImport}","item":[{"name":"Get contact contacts import progress","id":"8fb64137-e7ff-446b-9d02-95a21d44484e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/import/progress/:contactImport","description":"<p>REQUIRED SCOPES <code>['contact-imports:read']</code><br />Get contact contacts import progress</p>\n","urlObject":{"path":["contacts","import","progress",":contactImport"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"78b4d189-adda-4bae-9dcf-73a0f6b42c34","description":{"content":"<p>The ID of the Contact Import</p>\n","type":"text/plain"},"type":"any","value":"","key":"contactImport"}]}},"response":[{"id":"a40c85b2-1f7e-445b-bc7c-2ae1622ee3e4","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/progress/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","progress",":contactImport"],"variable":[{"key":"contactImport","value":"","description":"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\": 5163\n}"}],"_postman_id":"8fb64137-e7ff-446b-9d02-95a21d44484e"}],"id":"c2f26676-42e3-4f43-b598-8218e1bc4f5f","_postman_id":"c2f26676-42e3-4f43-b598-8218e1bc4f5f","description":""}],"id":"078393ec-abaa-4465-984e-e901e24f6812","_postman_id":"078393ec-abaa-4465-984e-e901e24f6812","description":""},{"name":"request","item":[{"name":"review","item":[{"name":"{contactImport}","item":[{"name":"Request review for a contact import","id":"27484063-2c84-4015-89f0-343e8312908c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/import/request/review/:contactImport","description":"<p>REQUIRED SCOPES <code>['contact-imports:write']</code><br />Request review for a contact import</p>\n","urlObject":{"path":["contacts","import","request","review",":contactImport"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"cc0ddce2-b12d-4b1e-b516-2432adfd05f2","description":{"content":"<p>ID of the contact import</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contactImport"}]}},"response":[{"id":"4c759bad-759e-4cdc-88f7-e119988704d3","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/request/review/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","request","review",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"string\"\n}"},{"id":"98faf1f6-0d9c-40d0-b595-3cc9be21c9da","name":"Bad request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/request/review/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","request","review",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"63ade9c7-28d1-4716-851b-13f352a8b5a1","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/request/review/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","request","review",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"302774b9-c677-40e0-84d4-99d747518557","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/request/review/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","request","review",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"56ab3694-a6a5-4afa-991a-e29feaa05113","name":"Contact import not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/request/review/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","request","review",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"27484063-2c84-4015-89f0-343e8312908c"}],"id":"308b5150-a351-43e0-b64f-c56b7025ffa7","_postman_id":"308b5150-a351-43e0-b64f-c56b7025ffa7","description":""}],"id":"2c0843b0-4772-46f0-80f9-6bb555b13d3b","_postman_id":"2c0843b0-4772-46f0-80f9-6bb555b13d3b","description":""}],"id":"8f6b5db3-1447-411d-b951-96d181d97967","_postman_id":"8f6b5db3-1447-411d-b951-96d181d97967","description":""},{"name":"start","item":[{"name":"{contactImport}","item":[{"name":"Start a contact import process","id":"5de0f914-1422-444a-839f-efb3bd71e877","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ],\n  \"tags\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/import/start/:contactImport","description":"<p>REQUIRED SCOPES <code>['contact-imports:write']</code><br />Start a contact import process</p>\n","urlObject":{"path":["contacts","import","start",":contactImport"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"c665969d-6ed6-4f44-b3cd-a453b7401c01","description":{"content":"<p>ID of the contact import</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contactImport"}]}},"response":[{"id":"1e5dcfb7-62e3-46db-89aa-96bcd14a1e89","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ],\n  \"tags\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/start/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","start",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"string\",\n  \"import_id\": 6077\n}"},{"id":"357abf50-67fd-4224-8f4c-a7052ed04680","name":"Bad request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ],\n  \"tags\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/start/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","start",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"84b6d86d-e46c-451d-9c13-dff9953c751e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ],\n  \"tags\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/start/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","start",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"23770b5f-b973-4468-b774-d6d2cc1cbbc8","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"mapping\": [\n    \"string\",\n    \"string\"\n  ],\n  \"tags\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import/start/:contactImport","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import","start",":contactImport"],"variable":[{"key":"contactImport","value":"2491","description":"ID of the contact import"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5de0f914-1422-444a-839f-efb3bd71e877"}],"id":"a28ac0ae-8b09-4308-8cf7-7688ac17a258","_postman_id":"a28ac0ae-8b09-4308-8cf7-7688ac17a258","description":""}],"id":"8b55095f-bcbc-4034-84b8-643651db495f","_postman_id":"8b55095f-bcbc-4034-84b8-643651db495f","description":""},{"name":"status","item":[{"name":"Get contacts import status","id":"446894db-23a7-4bf9-b9ce-be9742d7c0e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/import/status","description":"<p>REQUIRED SCOPES <code>['contact-imports:read']</code><br />Get contacts import status</p>\n","urlObject":{"path":["contacts","import","status"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"d01b795e-4dab-4a38-9e47-da95b8aaac73","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/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":"446894db-23a7-4bf9-b9ce-be9742d7c0e8"}],"id":"dfa73e04-56a1-4e1c-91d5-9264a5774911","_postman_id":"dfa73e04-56a1-4e1c-91d5-9264a5774911","description":""},{"name":"Get list of contact imports","id":"6abc8ae4-157c-4a1c-a20e-fb3b2619a5e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/import?page=2491&limit=2491","description":"<p>REQUIRED SCOPES <code>['contact-imports:read']</code><br />Get list of contact imports</p>\n","urlObject":{"path":["contacts","import"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"2491"},{"description":{"content":"<p>Number of items per page</p>\n","type":"text/plain"},"key":"limit","value":"2491"}],"variable":[]}},"response":[{"id":"39be18b2-51aa-4587-87c5-ee1fc3a09c18","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/import?page=2491&limit=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import"],"query":[{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"limit","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 9274,\n      \"user_id\": 3071,\n      \"organization_id\": 140,\n      \"contacts\": 4503,\n      \"added\": 6223,\n      \"skipped\": 1813,\n      \"current\": 5042,\n      \"approved_at\": \"2003-07-02T21:02:22.896Z\",\n      \"approved_by\": 4487,\n      \"created_at\": \"1991-03-22T10:15:05.941Z\",\n      \"duplicate_count\": 3810,\n      \"duplicate_reasons\": {},\n      \"failed_at\": \"2013-06-28T22:15:14.099Z\",\n      \"failed_reason\": \"string\",\n      \"finished_at\": \"2018-08-17T04:15:53.375Z\",\n      \"list\": null,\n      \"mapping\": {},\n      \"path\": \"string\",\n      \"skipped_count\": 9560,\n      \"skipped_reasons\": {},\n      \"started_at\": \"1955-12-29T05:23:42.725Z\",\n      \"status\": \"string\",\n      \"updated_at\": \"2023-05-03T19:51:36.260Z\",\n      \"user\": {\n        \"id\": 1427,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 7145,\n        \"organization_id\": 9065,\n        \"photo_url\": \"string\",\n        \"unread\": 4987,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": false,\n        \"organizationNumber\": [\n          {\n            \"id\": 6087,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 2194,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    },\n    {\n      \"id\": 4799,\n      \"user_id\": 3167,\n      \"organization_id\": 5084,\n      \"contacts\": 6003,\n      \"added\": 2670,\n      \"skipped\": 7762,\n      \"current\": 581,\n      \"approved_at\": \"1981-01-29T00:52:23.487Z\",\n      \"approved_by\": 4025,\n      \"created_at\": \"1958-02-24T08:01:22.606Z\",\n      \"duplicate_count\": 1538,\n      \"duplicate_reasons\": {},\n      \"failed_at\": \"1993-04-30T00:06:45.223Z\",\n      \"failed_reason\": \"string\",\n      \"finished_at\": \"1974-10-27T19:32:56.838Z\",\n      \"list\": null,\n      \"mapping\": {},\n      \"path\": \"string\",\n      \"skipped_count\": 2764,\n      \"skipped_reasons\": {},\n      \"started_at\": \"1951-10-08T05:56:09.807Z\",\n      \"status\": \"string\",\n      \"updated_at\": \"2010-07-19T19:58:53.938Z\",\n      \"user\": {\n        \"id\": 5592,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 39,\n        \"organization_id\": 7714,\n        \"photo_url\": \"string\",\n        \"unread\": 6706,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 7426,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 5220,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 5290,\n    \"from\": 6933,\n    \"last_page\": 9632,\n    \"path\": \"string\",\n    \"per_page\": 2702,\n    \"to\": 4863,\n    \"total\": 679\n  }\n}"},{"id":"ad2dcec1-883a-46bc-a81c-488e47a3b518","name":"Unauthenticated","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.3/contacts/import?page=2491&limit=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import"],"query":[{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"limit","value":"2491"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"4e86d841-1595-42e5-85cd-841ba6910398","name":"Forbidden","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.3/contacts/import?page=2491&limit=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","import"],"query":[{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"limit","value":"2491"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6abc8ae4-157c-4a1c-a20e-fb3b2619a5e1"}],"id":"132b60e7-63a4-49b3-a408-a21e660a1c7d","_postman_id":"132b60e7-63a4-49b3-a408-a21e660a1c7d","description":""},{"name":"list","item":[{"name":"Get list of contacts","id":"1d3af897-6f46-49c3-80c9-1b1bf1407afb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"useShortResponse\": true,\n  \"page\": 5871,\n  \"length\": 3951,\n  \"sortBy\": \"string\",\n  \"sortOrder\": \"asc\",\n  \"search\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/list","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code></p>\n","urlObject":{"path":["contacts","list"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"63953ea1-f2b7-4254-9549-25b081a3539c","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"useShortResponse\": true,\n  \"page\": 5871,\n  \"length\": 3951,\n  \"sortBy\": \"string\",\n  \"sortOrder\": \"asc\",\n  \"search\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 5890,\n      \"owner_id\": 6384,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 3290\n        },\n        {\n          \"number_id\": 7861\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 474,\n          \"number_id\": 3969,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 2894,\n          \"number_id\": 4217,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 3700,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9727,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 6033,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 5444,\n          \"custom_field_id\": 5642,\n          \"contact_id\": 8872,\n          \"field_key\": \"string\",\n          \"organization_id\": 5267,\n          \"text\": \"string\",\n          \"number\": 1591,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 3467,\n          \"custom_field_id\": 1924,\n          \"contact_id\": 4339,\n          \"field_key\": \"string\",\n          \"organization_id\": 6497,\n          \"text\": \"string\",\n          \"number\": 2827,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 3847,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 9467,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4544,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5546,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5962,\n      \"owner_id\": 3573,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 210\n        },\n        {\n          \"number_id\": 824\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 1226,\n          \"number_id\": 7149,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 7221,\n          \"number_id\": 9289,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 9998,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9955,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8785,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6533,\n          \"custom_field_id\": 5457,\n          \"contact_id\": 2800,\n          \"field_key\": \"string\",\n          \"organization_id\": 5021,\n          \"text\": \"string\",\n          \"number\": 4602,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 3904,\n          \"custom_field_id\": 8336,\n          \"contact_id\": 8375,\n          \"field_key\": \"string\",\n          \"organization_id\": 1021,\n          \"text\": \"string\",\n          \"number\": 8596,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 6613,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 8450,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4181,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3254,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"meta\": {}\n}"},{"id":"f5cf548f-f66c-4e9d-9f54-446c0015b1d9","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"useShortResponse\": true,\n  \"page\": 5871,\n  \"length\": 3951,\n  \"sortBy\": \"string\",\n  \"sortOrder\": \"asc\",\n  \"search\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/list"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f83011fb-bbf7-42d6-9991-e989cf109e8d","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"useShortResponse\": true,\n  \"page\": 5871,\n  \"length\": 3951,\n  \"sortBy\": \"string\",\n  \"sortOrder\": \"asc\",\n  \"search\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/list"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1d3af897-6f46-49c3-80c9-1b1bf1407afb"}],"id":"110142c5-868e-4048-83f5-dcdfe284f651","_postman_id":"110142c5-868e-4048-83f5-dcdfe284f651","description":""},{"name":"by-ids","item":[{"name":"Get organization contacts by IDs","id":"fb8479a3-bb5c-406c-b13d-59b44fc07805","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    \"1\",\n    \"1\"\n  ],\n  \"team_id\": 8625\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/by-ids","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code></p>\n","urlObject":{"path":["contacts","by-ids"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"4a3f5a01-8ab9-41e2-93e5-90cd2802ccb8","name":"List of contact objects","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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  \"team_id\": 8625\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/by-ids"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {}\n}"}],"_postman_id":"fb8479a3-bb5c-406c-b13d-59b44fc07805"}],"id":"539d6d58-4fcc-487c-82d1-d368e9f270ad","_postman_id":"539d6d58-4fcc-487c-82d1-d368e9f270ad","description":""},{"name":"merge","item":[{"name":"duplicate","item":[{"name":"resolve","item":[{"name":"Resolve duplicate contacts","id":"83b34a34-e474-4110-a3ef-efc02c95bf6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"main_contact_id\": 3786,\n  \"secondary_contact_id\": 9144\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate/resolve","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code></p>\n","urlObject":{"path":["contacts","merge","duplicate","resolve"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"bef5e8e3-644d-41bb-96bb-0e52b2096b7c","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"main_contact_id\": 3786,\n  \"secondary_contact_id\": 9144\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate/resolve"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"contact\": {\n    \"id\": 5815,\n    \"owner_id\": 1936,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": false,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 3244\n      },\n      {\n        \"number_id\": 6818\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 7869,\n        \"number_id\": 7490,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 7803,\n        \"number_id\": 348,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 5086,\n    \"prevent_autolink\": false,\n    \"integration\": [\n      {\n        \"id\": 4745,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 7052,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 3219,\n        \"custom_field_id\": 1468,\n        \"contact_id\": 4636,\n        \"field_key\": \"string\",\n        \"organization_id\": 1108,\n        \"text\": \"string\",\n        \"number\": 8412,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 1298,\n        \"custom_field_id\": 3572,\n        \"contact_id\": 1573,\n        \"field_key\": \"string\",\n        \"organization_id\": 1642,\n        \"text\": \"string\",\n        \"number\": 1895,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 2868,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7501,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 1316,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 1971,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  }\n}"},{"id":"0f9d1053-fa65-4664-b2ca-2f3517971746","name":"Bad request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"main_contact_id\": 3786,\n  \"secondary_contact_id\": 9144\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate/resolve"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"61b5616d-35b9-4b4c-8761-0f7a42a5d09b","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"main_contact_id\": 3786,\n  \"secondary_contact_id\": 9144\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate/resolve"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"c2fbea27-c0df-4ec8-ab78-05b8f332e00e","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"main_contact_id\": 3786,\n  \"secondary_contact_id\": 9144\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate/resolve"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5e392b4c-89fc-4811-ae5f-5882240bee30","name":"Contact not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"main_contact_id\": 3786,\n  \"secondary_contact_id\": 9144\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate/resolve"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e4f3f044-dc15-44fb-9c0d-9a2cd8b03289","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"main_contact_id\": 3786,\n  \"secondary_contact_id\": 9144\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate/resolve"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"83b34a34-e474-4110-a3ef-efc02c95bf6f"}],"id":"524bdb4e-dd58-44a2-89ee-fbd687ece886","_postman_id":"524bdb4e-dd58-44a2-89ee-fbd687ece886","description":""},{"name":"pair","item":[{"name":"Get a pair of duplicate contacts","id":"b78c5ae7-7ece-4f15-9c81-b63e2d082cb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate/pair?number=string&offset=2491","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code></p>\n","urlObject":{"path":["contacts","merge","duplicate","pair"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Phone number to check for duplicates</p>\n","type":"text/plain"},"key":"number","value":"string"},{"description":{"content":"<p>Offset for pagination</p>\n","type":"text/plain"},"key":"offset","value":"2491"}],"variable":[]}},"response":[{"id":"ff714285-6982-42fc-a315-9c05b28abcfb","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate/pair?number=string&offset=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","merge","duplicate","pair"],"query":[{"description":"Phone number to check for duplicates","key":"number","value":"string"},{"description":"Offset for pagination","key":"offset","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 4749,\n    \"owner_id\": 9004,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 6671\n      },\n      {\n        \"number_id\": 7804\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 9703,\n        \"number_id\": 563,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 8198,\n        \"number_id\": 7869,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": false\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 3850,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 9888,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 2730,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 1426,\n        \"custom_field_id\": 2845,\n        \"contact_id\": 968,\n        \"field_key\": \"string\",\n        \"organization_id\": 7012,\n        \"text\": \"string\",\n        \"number\": 4652,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 592,\n        \"custom_field_id\": 8190,\n        \"contact_id\": 297,\n        \"field_key\": \"string\",\n        \"organization_id\": 3116,\n        \"text\": \"string\",\n        \"number\": 2205,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 3865,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 905,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 9423,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 1542,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  {\n    \"id\": 4408,\n    \"owner_id\": 2491,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 6619\n      },\n      {\n        \"number_id\": 3151\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 9594,\n        \"number_id\": 5777,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": true\n      },\n      {\n        \"id\": 6334,\n        \"number_id\": 89,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 6544,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 6580,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 9234,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 9871,\n        \"custom_field_id\": 5625,\n        \"contact_id\": 964,\n        \"field_key\": \"string\",\n        \"organization_id\": 3359,\n        \"text\": \"string\",\n        \"number\": 6929,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 4153,\n        \"custom_field_id\": 9732,\n        \"contact_id\": 1297,\n        \"field_key\": \"string\",\n        \"organization_id\": 7577,\n        \"text\": \"string\",\n        \"number\": 6312,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 5980,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 5008,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 6961,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 3709,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  }\n]"},{"id":"b72d2109-e862-4019-ab6e-481ff9b44dc9","name":"Unauthenticated","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.3/contacts/merge/duplicate/pair?number=string&offset=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","merge","duplicate","pair"],"query":[{"description":"Phone number to check for duplicates","key":"number","value":"string"},{"description":"Offset for pagination","key":"offset","value":"2491"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"58d1f4a3-111f-4f6e-a5b6-95e0e83b8c63","name":"Forbidden","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.3/contacts/merge/duplicate/pair?number=string&offset=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","merge","duplicate","pair"],"query":[{"description":"Phone number to check for duplicates","key":"number","value":"string"},{"description":"Offset for pagination","key":"offset","value":"2491"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"2b31e18a-12e1-4433-ac5d-26db8e4afecb","name":"Validation 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.3/contacts/merge/duplicate/pair?number=string&offset=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","merge","duplicate","pair"],"query":[{"description":"Phone number to check for duplicates","key":"number","value":"string"},{"description":"Offset for pagination","key":"offset","value":"2491"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b78c5ae7-7ece-4f15-9c81-b63e2d082cb4"}],"id":"becb8b78-5766-4b98-8a0a-a3d711e7b39d","_postman_id":"becb8b78-5766-4b98-8a0a-a3d711e7b39d","description":""},{"name":"Get list of duplicate contacts","id":"3c00afc5-8507-4a9f-a24f-11417a52b360","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate?page=2491&length=2491&useShortResponse=true&search=string&sortBy=string&sortOrder=asc","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code></p>\n","urlObject":{"path":["contacts","merge","duplicate"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"2491"},{"description":{"content":"<p>Number of items per page</p>\n","type":"text/plain"},"key":"length","value":"2491"},{"description":{"content":"<p>Use Short Response</p>\n","type":"text/plain"},"key":"useShortResponse","value":"true"},{"description":{"content":"<p>Search String</p>\n","type":"text/plain"},"key":"search","value":"string"},{"description":{"content":"<p>Sort by field (name, label, etc)</p>\n","type":"text/plain"},"key":"sortBy","value":"string"},{"description":{"content":"<p>Sorting order</p>\n","type":"text/plain"},"key":"sortOrder","value":"asc"}],"variable":[]}},"response":[{"id":"f66c9626-416e-4eb3-8b1f-6139578503ef","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/merge/duplicate?page=2491&length=2491&useShortResponse=true&search=string&sortBy=string&sortOrder=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","merge","duplicate"],"query":[{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"length","value":"2491"},{"description":"Use Short Response","key":"useShortResponse","value":"true"},{"description":"Search String","key":"search","value":"string"},{"description":"Sort by field (name, label, etc)","key":"sortBy","value":"string"},{"description":"Sorting order","key":"sortOrder","value":"asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 5890,\n      \"owner_id\": 6384,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 3290\n        },\n        {\n          \"number_id\": 7861\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 474,\n          \"number_id\": 3969,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 2894,\n          \"number_id\": 4217,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 3700,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9727,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 6033,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 5444,\n          \"custom_field_id\": 5642,\n          \"contact_id\": 8872,\n          \"field_key\": \"string\",\n          \"organization_id\": 5267,\n          \"text\": \"string\",\n          \"number\": 1591,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 3467,\n          \"custom_field_id\": 1924,\n          \"contact_id\": 4339,\n          \"field_key\": \"string\",\n          \"organization_id\": 6497,\n          \"text\": \"string\",\n          \"number\": 2827,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 3847,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 9467,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4544,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5546,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5962,\n      \"owner_id\": 3573,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 210\n        },\n        {\n          \"number_id\": 824\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 1226,\n          \"number_id\": 7149,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 7221,\n          \"number_id\": 9289,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 9998,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9955,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8785,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6533,\n          \"custom_field_id\": 5457,\n          \"contact_id\": 2800,\n          \"field_key\": \"string\",\n          \"organization_id\": 5021,\n          \"text\": \"string\",\n          \"number\": 4602,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 3904,\n          \"custom_field_id\": 8336,\n          \"contact_id\": 8375,\n          \"field_key\": \"string\",\n          \"organization_id\": 1021,\n          \"text\": \"string\",\n          \"number\": 8596,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 6613,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 8450,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4181,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3254,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"meta\": {}\n}"},{"id":"0ecb3179-2688-4156-9a36-c259ab9162bf","name":"Unauthenticated","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.3/contacts/merge/duplicate?page=2491&length=2491&useShortResponse=true&search=string&sortBy=string&sortOrder=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","merge","duplicate"],"query":[{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"length","value":"2491"},{"description":"Use Short Response","key":"useShortResponse","value":"true"},{"description":"Search String","key":"search","value":"string"},{"description":"Sort by field (name, label, etc)","key":"sortBy","value":"string"},{"description":"Sorting order","key":"sortOrder","value":"asc"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"c8fc0e72-eb10-407a-9fd4-92ff29f9a066","name":"Forbidden","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.3/contacts/merge/duplicate?page=2491&length=2491&useShortResponse=true&search=string&sortBy=string&sortOrder=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","merge","duplicate"],"query":[{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"length","value":"2491"},{"description":"Use Short Response","key":"useShortResponse","value":"true"},{"description":"Search String","key":"search","value":"string"},{"description":"Sort by field (name, label, etc)","key":"sortBy","value":"string"},{"description":"Sorting order","key":"sortOrder","value":"asc"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3c00afc5-8507-4a9f-a24f-11417a52b360"}],"id":"62136314-a7e5-4af6-ad01-3a6ef6ff17e9","_postman_id":"62136314-a7e5-4af6-ad01-3a6ef6ff17e9","description":""},{"name":"all-count","item":[{"name":"Get count of duplicate and unlinked contacts","id":"8959ab4b-5f58-445d-bdc7-ab93b629c25b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/all-count","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code></p>\n","urlObject":{"path":["contacts","merge","all-count"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"5df7e1cc-98db-4d0b-b962-32b3d3376968","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/all-count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"duplicate_count\": 2001,\n  \"unlinked_count\": 5284\n}"},{"id":"1313a180-73f4-4d39-b3b4-4790beb8051f","name":"Unauthenticated","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.3/contacts/merge/all-count"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"887e57ac-8256-4ba9-a4e6-0f8fa3d2eb36","name":"Forbidden","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.3/contacts/merge/all-count"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8959ab4b-5f58-445d-bdc7-ab93b629c25b"}],"id":"6d4a2f02-8ca7-46cb-968f-5bda5744e3c6","_postman_id":"6d4a2f02-8ca7-46cb-968f-5bda5744e3c6","description":""},{"name":"unlinked","item":[{"name":"Get list of unlinked contacts","id":"c861b98e-3a48-4d94-82c8-a62d743399bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/merge/unlinked?page=2491&length=2491&useShortResponse=true&search=string&sortBy=string&sortOrder=asc","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code></p>\n","urlObject":{"path":["contacts","merge","unlinked"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"2491"},{"description":{"content":"<p>Number of items per page</p>\n","type":"text/plain"},"key":"length","value":"2491"},{"description":{"content":"<p>Use Short Response</p>\n","type":"text/plain"},"key":"useShortResponse","value":"true"},{"description":{"content":"<p>Search String</p>\n","type":"text/plain"},"key":"search","value":"string"},{"description":{"content":"<p>Sort by field (name, label, etc)</p>\n","type":"text/plain"},"key":"sortBy","value":"string"},{"description":{"content":"<p>Sorting order</p>\n","type":"text/plain"},"key":"sortOrder","value":"asc"}],"variable":[]}},"response":[{"id":"0e72dd79-8cca-43a0-a05f-8902afe9c836","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/merge/unlinked?page=2491&length=2491&useShortResponse=true&search=string&sortBy=string&sortOrder=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","merge","unlinked"],"query":[{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"length","value":"2491"},{"description":"Use Short Response","key":"useShortResponse","value":"true"},{"description":"Search String","key":"search","value":"string"},{"description":"Sort by field (name, label, etc)","key":"sortBy","value":"string"},{"description":"Sorting order","key":"sortOrder","value":"asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 5890,\n      \"owner_id\": 6384,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 3290\n        },\n        {\n          \"number_id\": 7861\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 474,\n          \"number_id\": 3969,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 2894,\n          \"number_id\": 4217,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 3700,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9727,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 6033,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 5444,\n          \"custom_field_id\": 5642,\n          \"contact_id\": 8872,\n          \"field_key\": \"string\",\n          \"organization_id\": 5267,\n          \"text\": \"string\",\n          \"number\": 1591,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 3467,\n          \"custom_field_id\": 1924,\n          \"contact_id\": 4339,\n          \"field_key\": \"string\",\n          \"organization_id\": 6497,\n          \"text\": \"string\",\n          \"number\": 2827,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 3847,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 9467,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4544,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5546,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5962,\n      \"owner_id\": 3573,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 210\n        },\n        {\n          \"number_id\": 824\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 1226,\n          \"number_id\": 7149,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 7221,\n          \"number_id\": 9289,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 9998,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9955,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8785,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6533,\n          \"custom_field_id\": 5457,\n          \"contact_id\": 2800,\n          \"field_key\": \"string\",\n          \"organization_id\": 5021,\n          \"text\": \"string\",\n          \"number\": 4602,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 3904,\n          \"custom_field_id\": 8336,\n          \"contact_id\": 8375,\n          \"field_key\": \"string\",\n          \"organization_id\": 1021,\n          \"text\": \"string\",\n          \"number\": 8596,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 6613,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 8450,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4181,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3254,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"meta\": {}\n}"},{"id":"b1b15d8d-5cb8-45a3-89dc-a6a68ed0bcbe","name":"Unauthenticated","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.3/contacts/merge/unlinked?page=2491&length=2491&useShortResponse=true&search=string&sortBy=string&sortOrder=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","merge","unlinked"],"query":[{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"length","value":"2491"},{"description":"Use Short Response","key":"useShortResponse","value":"true"},{"description":"Search String","key":"search","value":"string"},{"description":"Sort by field (name, label, etc)","key":"sortBy","value":"string"},{"description":"Sorting order","key":"sortOrder","value":"asc"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6065e95e-5c2c-4367-9563-bd4cd66559f0","name":"Forbidden","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.3/contacts/merge/unlinked?page=2491&length=2491&useShortResponse=true&search=string&sortBy=string&sortOrder=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","merge","unlinked"],"query":[{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"length","value":"2491"},{"description":"Use Short Response","key":"useShortResponse","value":"true"},{"description":"Search String","key":"search","value":"string"},{"description":"Sort by field (name, label, etc)","key":"sortBy","value":"string"},{"description":"Sorting order","key":"sortOrder","value":"asc"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c861b98e-3a48-4d94-82c8-a62d743399bb"}],"id":"b7b92081-abc3-48cd-a596-e497fec26ff8","_postman_id":"b7b92081-abc3-48cd-a596-e497fec26ff8","description":""}],"id":"e66d8721-0f9c-4d08-ad21-3121f6dd8a83","_postman_id":"e66d8721-0f9c-4d08-ad21-3121f6dd8a83","description":""},{"name":"note","item":[{"name":"{contact}","item":[{"name":"create","item":[{"name":"Create contact note","id":"25ebfb6e-fb5e-41a3-af10-f248ae84fd98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/note/:contact/create?text=string","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[{"description":{"content":"<p>Package Count</p>\n","type":"text/plain"},"key":"text","value":"string"}],"variable":[{"id":"5b8a6a97-64c4-41da-bf8b-3d0ba46ea548","description":{"content":"<p>The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"","key":"contact"}]}},"response":[{"id":"47e4f5f6-4118-4e1b-88c3-d7285430fba0","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/note/:contact/create?text=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","note",":contact","create"],"query":[{"description":"Package Count","key":"text","value":"string"}],"variable":[{"key":"contact","value":"","description":"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\": 3304,\n  \"text\": \"string\",\n  \"contact_id\": 4674,\n  \"created_by\": {\n    \"id\": 6740,\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"photo_url\": \"string\"\n  },\n  \"updated_by\": {\n    \"id\": 4469,\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"photo_url\": \"string\"\n  },\n  \"created_at\": \"2020-05-06T09:58:27.266Z\",\n  \"updated_at\": \"1994-12-19T20:10:09.880Z\",\n  \"isAutomated\": false,\n  \"source_title\": \"string\"\n}"}],"_postman_id":"25ebfb6e-fb5e-41a3-af10-f248ae84fd98"}],"id":"baa46928-44e9-4336-9e15-db3c2d19a4cb","_postman_id":"baa46928-44e9-4336-9e15-db3c2d19a4cb","description":""}],"id":"4187abd7-7f60-4b29-aca4-348477825389","_postman_id":"4187abd7-7f60-4b29-aca4-348477825389","description":""},{"name":"{note}","item":[{"name":"Remove note","id":"c666beb6-ea31-454b-b5e4-1429aa8e4a7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/note/:note","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[],"variable":[{"id":"e08ef23b-064a-4168-97dc-b0c1c0df63cb","description":{"content":"<p>The ID of the Note</p>\n","type":"text/plain"},"type":"any","value":"","key":"note"}]}},"response":[{"id":"d9282f30-71fe-4c26-89b3-2651e62eea4d","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/note/:note","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","note",":note"],"variable":[{"key":"note","value":"","description":"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 successfully deleted\"\n}"}],"_postman_id":"c666beb6-ea31-454b-b5e4-1429aa8e4a7e"},{"name":"Update note","id":"8faae883-86d7-480a-9e2c-5817dc8dd4d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/note/:note?text=string","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[{"description":{"content":"<p>Package Count</p>\n","type":"text/plain"},"key":"text","value":"string"}],"variable":[{"id":"fbc771ff-b2a0-4b69-ace1-45419a9ef5de","description":{"content":"<p>The ID of the Note</p>\n","type":"text/plain"},"type":"any","value":"","key":"note"}]}},"response":[{"id":"11209648-a2c7-492f-8175-df3c42867c06","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/note/:note?text=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","note",":note"],"query":[{"description":"Package Count","key":"text","value":"string"}],"variable":[{"key":"note","value":"","description":"The ID of the Note"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 3304,\n  \"text\": \"string\",\n  \"contact_id\": 4674,\n  \"created_by\": {\n    \"id\": 6740,\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"photo_url\": \"string\"\n  },\n  \"updated_by\": {\n    \"id\": 4469,\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"photo_url\": \"string\"\n  },\n  \"created_at\": \"2020-05-06T09:58:27.266Z\",\n  \"updated_at\": \"1994-12-19T20:10:09.880Z\",\n  \"isAutomated\": false,\n  \"source_title\": \"string\"\n}"}],"_postman_id":"8faae883-86d7-480a-9e2c-5817dc8dd4d1"}],"id":"afd60ba9-0653-4ac9-adee-cf6c449bbcf0","_postman_id":"afd60ba9-0653-4ac9-adee-cf6c449bbcf0","description":""}],"id":"2a0dda14-4f8e-41d6-8727-f3f4c114daf5","_postman_id":"2a0dda14-4f8e-41d6-8727-f3f4c114daf5","description":""},{"name":"bulk-check","item":[{"name":"Bulk check contact phone numbers","id":"27a7f1a7-85d7-42fb-a172-76282543a21c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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    3574,\n    4282\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/bulk-check","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code></p>\n","urlObject":{"path":["contacts","bulk-check"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"4cc3a181-9a4f-487b-b00a-8e73eeb12e92","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"contact_ids\": [\n    3574,\n    4282\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/bulk-check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\"\n}"},{"id":"d366f34a-4454-476f-b316-f84186e08b13","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"contact_ids\": [\n    3574,\n    4282\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/bulk-check"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"52d2f2eb-f700-4a60-8674-c8244951f26a","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"contact_ids\": [\n    3574,\n    4282\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/bulk-check"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ebf3f874-230c-450e-9a78-40637b15e6cd","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"contact_ids\": [\n    3574,\n    4282\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/bulk-check"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"27a7f1a7-85d7-42fb-a172-76282543a21c"}],"id":"be7bb9df-ad4c-4028-91dc-b72731c9ead0","_postman_id":"be7bb9df-ad4c-4028-91dc-b72731c9ead0","description":""},{"name":"lookup","item":[{"name":"statistics","item":[{"name":"Get phone check statistics","id":"4a2bf353-8d1e-4413-a6b4-0ac51dab93c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/lookup/statistics?bulk_all=true&contact_ids=string&query=string","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code></p>\n","urlObject":{"path":["contacts","lookup","statistics"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"key":"bulk_all","value":"true"},{"key":"contact_ids","value":"string"},{"key":"query","value":"string"}],"variable":[]}},"response":[{"id":"5b737434-075d-423d-968c-95a530494a86","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/lookup/statistics?bulk_all=true&contact_ids=string&query=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","lookup","statistics"],"query":[{"key":"bulk_all","value":"true"},{"key":"contact_ids","value":"string"},{"key":"query","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"all_count\": 6790,\n  \"unchecked_count\": 5440,\n  \"landline_count\": 5868,\n  \"checked_count\": 9823,\n  \"voip_count\": 5710,\n  \"mobile_count\": 9938,\n  \"undefined_count\": 1325,\n  \"invalid_count\": 356,\n  \"valid_count\": 4371\n}"},{"id":"ab415fce-02df-4e60-a1af-3e4b409d4313","name":"Unauthenticated","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.3/contacts/lookup/statistics?bulk_all=true&contact_ids=string&query=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","lookup","statistics"],"query":[{"key":"bulk_all","value":"true"},{"key":"contact_ids","value":"string"},{"key":"query","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"57c6910e-4013-411c-84bc-70ff92ab1688","name":"Forbidden","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.3/contacts/lookup/statistics?bulk_all=true&contact_ids=string&query=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","lookup","statistics"],"query":[{"key":"bulk_all","value":"true"},{"key":"contact_ids","value":"string"},{"key":"query","value":"string"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4a2bf353-8d1e-4413-a6b4-0ac51dab93c5"}],"id":"15d2af4c-711a-44d0-ad30-019deaddd671","_postman_id":"15d2af4c-711a-44d0-ad30-019deaddd671","description":""}],"id":"3e3dc82a-2766-4cc1-9bd5-9198fd0b589c","_postman_id":"3e3dc82a-2766-4cc1-9bd5-9198fd0b589c","description":""},{"name":"search","item":[{"name":"Search contact","id":"5204ad76-e4cc-4e00-8b47-56117cd9287e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/search?limit=50&term=string","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> 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.3"],"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>The string to search for.</p>\n","type":"text/plain"},"key":"term","value":"string"}],"variable":[]}},"response":[{"id":"e19fe3b1-4773-4ec6-9172-67cc395f99d0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/search?limit=50&term=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","search"],"query":[{"description":"The maximum number of messages that you want returned from this call.","key":"limit","value":"50"},{"description":"The string to search for.","key":"term","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"results\": [\n    {\n      \"id\": 8841,\n      \"owner_id\": 6653,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 5447\n        },\n        {\n          \"number_id\": 6411\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2650,\n          \"number_id\": 4738,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 538,\n          \"number_id\": 424,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 3187,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9049,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1077,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 7651,\n          \"custom_field_id\": 114,\n          \"contact_id\": 2848,\n          \"field_key\": \"string\",\n          \"organization_id\": 3228,\n          \"text\": \"string\",\n          \"number\": 81,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 8516,\n          \"custom_field_id\": 189,\n          \"contact_id\": 6188,\n          \"field_key\": \"string\",\n          \"organization_id\": 3155,\n          \"text\": \"string\",\n          \"number\": 2060,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 9487,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 9769,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 9602,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 2287,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 8835,\n      \"owner_id\": 2167,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 3588\n        },\n        {\n          \"number_id\": 6891\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5331,\n          \"number_id\": 7590,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 3591,\n          \"number_id\": 7452,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 5328,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 1006,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 4693,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 1908,\n          \"custom_field_id\": 881,\n          \"contact_id\": 4950,\n          \"field_key\": \"string\",\n          \"organization_id\": 61,\n          \"text\": \"string\",\n          \"number\": 2241,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 132,\n          \"custom_field_id\": 5438,\n          \"contact_id\": 379,\n          \"field_key\": \"string\",\n          \"organization_id\": 375,\n          \"text\": \"string\",\n          \"number\": 6724,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 5148,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 9797,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3357,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 2149,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"total\": 9867\n}"}],"_postman_id":"5204ad76-e4cc-4e00-8b47-56117cd9287e"}],"id":"5b4d2597-7558-425b-afe4-a66dc2e7f9b4","_postman_id":"5b4d2597-7558-425b-afe4-a66dc2e7f9b4","description":""},{"name":"tag-count","item":[{"name":"Get contact counts by tags","id":"4b0ebf3e-2053-4f09-b741-ae5fbaeda44a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts/tag-count?tags=string&exclude_opt_outs=true","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code></p>\n","urlObject":{"path":["contacts","tag-count"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Comma-separated list of tag IDs</p>\n","type":"text/plain"},"key":"tags","value":"string"},{"description":{"content":"<p>Exclude opt-out contacts</p>\n","type":"text/plain"},"key":"exclude_opt_outs","value":"true"}],"variable":[]}},"response":[{"id":"0004e15d-b661-4df0-9a8d-2312b1e1822c","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts/tag-count?tags=string&exclude_opt_outs=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","tag-count"],"query":[{"description":"Comma-separated list of tag IDs","key":"tags","value":"string"},{"description":"Exclude opt-out contacts","key":"exclude_opt_outs","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"key_0\": \"\",\n  \"key_1\": \"\",\n  \"key_2\": \"\",\n  \"key_3\": \"\"\n}"},{"id":"c1e081a8-752b-4b65-8f90-86142c8cf62b","name":"Unauthenticated","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.3/contacts/tag-count?tags=string&exclude_opt_outs=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","tag-count"],"query":[{"description":"Comma-separated list of tag IDs","key":"tags","value":"string"},{"description":"Exclude opt-out contacts","key":"exclude_opt_outs","value":"true"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3e855f6b-47bd-40f6-88e6-2de7bac896be","name":"Forbidden","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.3/contacts/tag-count?tags=string&exclude_opt_outs=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts","tag-count"],"query":[{"description":"Comma-separated list of tag IDs","key":"tags","value":"string"},{"description":"Exclude opt-out contacts","key":"exclude_opt_outs","value":"true"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4b0ebf3e-2053-4f09-b741-ae5fbaeda44a"}],"id":"6876435b-364e-4339-b0a6-98cb4ebb6e75","_postman_id":"6876435b-364e-4339-b0a6-98cb4ebb6e75","description":""},{"name":"validate-number","item":[{"name":"Validate contact phone number","id":"87e40b0e-adc4-463c-8f13-8202aab505da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"+14155552671\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/validate-number","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code></p>\n","urlObject":{"path":["contacts","validate-number"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"8c801964-83a3-4838-9fe2-c6be46f24b7d","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"+14155552671\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/validate-number"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"true"},{"id":"cf3142bc-14b5-4e77-a1ea-a76f6cdbe753","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"+14155552671\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/validate-number"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"87e40b0e-adc4-463c-8f13-8202aab505da"}],"id":"37440a18-0671-4fad-b348-980b3f24da26","_postman_id":"37440a18-0671-4fad-b348-980b3f24da26","description":""},{"name":"validation","item":[{"name":"Validate contact data","id":"a814a32a-c162-40a0-9bc6-91fd6348a058","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/validation","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code></p>\n","urlObject":{"path":["contacts","validation"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"e435df87-648a-4475-b831-51ca00341bb0","name":"Successful validation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/validation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"OK"},{"id":"2b5353ad-9943-4134-bf24-69fffe6c5d00","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/validation"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"2e5394a7-1094-4d8a-9627-ba7036d9e012","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/validation"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"2c19f833-dbcc-41c7-932b-f15d5fbfdae7","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/contacts/validation"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {}\n}"}],"_postman_id":"a814a32a-c162-40a0-9bc6-91fd6348a058"}],"id":"0d56d61b-c789-4fd6-b362-82f06af4abf0","_postman_id":"0d56d61b-c789-4fd6-b362-82f06af4abf0","description":""},{"name":"Get user's contacts","id":"67cc27b0-91a6-42da-84c1-25d64a006169","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts?search=&length=10&page=1&sortBy=string&sortOrder=asc&filtersList=[object Object]&filtersList=[object Object]","description":"<p>REQUIRED SCOPES <code>['contacts:read']</code><br /> 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.3"],"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":"string"},{"description":{"content":"<p>Sorting order</p>\n","type":"text/plain"},"key":"sortOrder","value":"asc"},{"description":{"content":"<p>List of filters to apply</p>\n","type":"text/plain"},"key":"filtersList","value":"[object Object]"},{"description":{"content":"<p>List of filters to apply</p>\n","type":"text/plain"},"key":"filtersList","value":"[object Object]"}],"variable":[]}},"response":[{"id":"dc376c3e-48ba-4c6d-8dab-138c537f673c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts?search=&length=10&page=1&sortBy=string&sortOrder=asc&filtersList=[object Object]","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts"],"query":[{"description":"Filter by first_name, last_name, email, number, formatted_number, tag label","key":"search","value":""},{"description":"Results per page","key":"length","value":"10"},{"description":"Page","key":"page","value":"1"},{"description":"Sort by field (first_name, last_name, email, number, formatted_number, tag label, etc)","key":"sortBy","value":"string"},{"description":"Sorting order","key":"sortOrder","value":"asc"},{"description":"List of filters to apply","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\": 3489,\n      \"owner_id\": 9666,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 2556\n        },\n        {\n          \"number_id\": 7278\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2962,\n          \"number_id\": 5615,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 8589,\n          \"number_id\": 9859,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 2167,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 9508,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1691,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 1765,\n          \"custom_field_id\": 5223,\n          \"contact_id\": 5663,\n          \"field_key\": \"string\",\n          \"organization_id\": 8864,\n          \"text\": \"string\",\n          \"number\": 9362,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 6764,\n          \"custom_field_id\": 4971,\n          \"contact_id\": 2754,\n          \"field_key\": \"string\",\n          \"organization_id\": 8159,\n          \"text\": \"string\",\n          \"number\": 8838,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 4592,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 8125,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 309,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5932,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 3704,\n      \"owner_id\": 1359,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 5701\n        },\n        {\n          \"number_id\": 6395\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 4588,\n          \"number_id\": 2028,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 1679,\n          \"number_id\": 18,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 8363,\n      \"prevent_autolink\": true,\n      \"integration\": [\n        {\n          \"id\": 2736,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 733,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 3178,\n          \"custom_field_id\": 2418,\n          \"contact_id\": 3614,\n          \"field_key\": \"string\",\n          \"organization_id\": 2948,\n          \"text\": \"string\",\n          \"number\": 8789,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5231,\n          \"custom_field_id\": 8559,\n          \"contact_id\": 9778,\n          \"field_key\": \"string\",\n          \"organization_id\": 2607,\n          \"text\": \"string\",\n          \"number\": 6063,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 2383,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 3340,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 9314,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 535,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"67cc27b0-91a6-42da-84c1-25d64a006169"},{"name":"Create contact","id":"bf7fd236-6a92-42b1-9dcd-32cbbcfcb193","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts?number=&integration_id=&first_name=&last_name=&email=&color_index=&contact_integration_id=&phone_type=&owner_id=&source=","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> 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.3"],"query":[{"description":{"content":"<p>Number</p>\n","type":"text/plain"},"key":"number","value":""},{"description":{"content":"<p>Integration id</p>\n","type":"text/plain"},"key":"integration_id","value":""},{"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":""},{"description":{"content":"<p>Contact integration id</p>\n","type":"text/plain"},"key":"contact_integration_id","value":""},{"description":{"content":"<p>Phone type (phone, etc)</p>\n","type":"text/plain"},"key":"phone_type","value":""},{"description":{"content":"<p>Owner id</p>\n","type":"text/plain"},"key":"owner_id","value":""},{"description":{"content":"<p>Source</p>\n","type":"text/plain"},"key":"source","value":""}],"variable":[]}},"response":[{"id":"356fe5cf-80ec-4ec4-a508-7c7e29427d33","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts?number=&integration_id=&first_name=&last_name=&email=&color_index=&contact_integration_id=&phone_type=&owner_id=&source=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts"],"query":[{"description":"Number","key":"number","value":""},{"description":"Integration id","key":"integration_id","value":""},{"description":"First name","key":"first_name","value":""},{"description":"Last name","key":"last_name","value":""},{"description":"Email","key":"email","value":""},{"description":"Color index","key":"color_index","value":""},{"description":"Contact integration id","key":"contact_integration_id","value":""},{"description":"Phone type (phone, etc)","key":"phone_type","value":""},{"description":"Owner id","key":"owner_id","value":""},{"description":"Source","key":"source","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"bf7fd236-6a92-42b1-9dcd-32cbbcfcb193"},{"name":"Delete contacts","id":"c5131099-9bef-4860-ac7e-735997b4a4ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/contacts?ids[]=1786&ids[]=1861&bulk_all=0","description":"<p>REQUIRED SCOPES <code>['contacts:write']</code><br /> Delete contacts</p>\n","urlObject":{"path":["contacts"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"ids[]","value":"1786"},{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"ids[]","value":"1861"},{"description":{"content":"<p>Bulk All</p>\n","type":"text/plain"},"key":"bulk_all","value":"0"}],"variable":[]}},"response":[{"id":"e16dae2c-f2b4-4509-85f7-8f317b5a8465","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/contacts?ids[]=1861&bulk_all=0","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts"],"query":[{"description":"The IDs of the Contacts","key":"ids[]","value":"1861"},{"description":"Bulk All","key":"bulk_all","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"},{"id":"e5b1ff3d-e547-4c36-8277-11c8f8ce4b09","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.3/contacts?ids[]=1861&bulk_all=0","host":["https://api.salesmessage.com/pub/v2.3"],"path":["contacts"],"query":[{"description":"The IDs of the Contacts","key":"ids[]","value":"1861"},{"description":"Bulk All","key":"bulk_all","value":"0"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c5131099-9bef-4860-ac7e-735997b4a4ad"}],"id":"7965d8fe-0f93-47df-a9be-74b1b4a1c745","_postman_id":"7965d8fe-0f93-47df-a9be-74b1b4a1c745","description":""},{"name":"users","item":[{"name":"devices","item":[{"name":"Add push token for user device","id":"8c026198-1a9f-4a0c-a93f-3c4b581551cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/devices?type=apple&token=token","description":"<p>REQUIRED SCOPES <code>[‘users:write’]</code><br />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.3"],"query":[{"description":{"content":"<p>Device type</p>\n","type":"text/plain"},"key":"type","value":"apple"},{"description":{"content":"<p>Push token</p>\n","type":"text/plain"},"key":"token","value":"token"}],"variable":[]}},"response":[{"id":"7f8c47f6-f29a-4ab9-bb6c-e757de3e5131","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/devices?type=apple&token=token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","devices"],"query":[{"description":"Device type","key":"type","value":"apple"},{"description":"Push token","key":"token","value":"token"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1277,\n  \"type\": {\n    \"id\": 7655,\n    \"name\": \"string\",\n    \"slug\": 6328\n  },\n  \"push_token\": \"string\"\n}"}],"_postman_id":"8c026198-1a9f-4a0c-a93f-3c4b581551cd"},{"name":"Delete push token for user device","id":"bfa746cf-1c83-4b4f-b122-3295ca55483f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/devices?push_token=token","description":"<p>REQUIRED SCOPES <code>[‘users:write’]</code><br />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.3"],"query":[{"description":{"content":"<p>Push token</p>\n","type":"text/plain"},"key":"push_token","value":"token"}],"variable":[]}},"response":[{"id":"999873c8-a7c5-4b05-a4cc-d3c6f8cdc7a3","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/devices?push_token=token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","devices"],"query":[{"description":"Push token","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\": \"string\",\n  \"message\": \"string\"\n}"},{"id":"3bcee256-217d-4ec6-9838-cd3ce3ef8522","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/devices?push_token=token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","devices"],"query":[{"description":"Push token","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\": \"string\",\n  \"message\": \"string\"\n}"}],"_postman_id":"bfa746cf-1c83-4b4f-b122-3295ca55483f"}],"id":"01378a97-34fe-41a4-bfad-47786bdc018e","_postman_id":"01378a97-34fe-41a4-bfad-47786bdc018e","description":""},{"name":"message-signature","item":[{"name":"Get user's message signature","id":"18e814b3-d7e7-41d8-b07c-750331664772","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/message-signature","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get user's message signature</p>\n","urlObject":{"path":["users","message-signature"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"9ab90b1f-5304-4a85-ac91-94cb4e0a95ca","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/message-signature"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 4190,\n    \"user_id\": 9363,\n    \"signature\": \"string\",\n    \"is_active\": true\n  },\n  {\n    \"id\": 1857,\n    \"user_id\": 2343,\n    \"signature\": \"string\",\n    \"is_active\": true\n  }\n]"},{"id":"fc144a40-f3e3-4344-bfc0-0157f6d786b6","name":"Unauthenticated","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.3/users/message-signature"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"18e814b3-d7e7-41d8-b07c-750331664772"},{"name":"Create or update a message signature","id":"5a75fcb4-46df-4133-ad8f-82caa4ece8cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"signature\": \"string\",\n  \"is_active\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/message-signature","description":"<p>REQUIRED SCOPES <code>['users:write']</code><br />Create or update a message signature</p>\n","urlObject":{"path":["users","message-signature"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"7bbf387f-1a63-4eb4-b742-55c98f300a36","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"signature\": \"string\",\n  \"is_active\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/message-signature"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 7658,\n  \"user_id\": 6458,\n  \"signature\": \"string\",\n  \"is_active\": false\n}"},{"id":"950f5a15-cda4-431c-a8cb-d7069415de03","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"signature\": \"string\",\n  \"is_active\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/message-signature"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"522ab42e-39b8-45aa-887c-86cb1bad2a0a","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"signature\": \"string\",\n  \"is_active\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/message-signature"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5a75fcb4-46df-4133-ad8f-82caa4ece8cd"}],"id":"46460015-4dbc-419f-af7b-b8d5a5c4cf7d","_postman_id":"46460015-4dbc-419f-af7b-b8d5a5c4cf7d","description":""},{"name":"profile","item":[{"name":"Get profile details","id":"c73aec7a-f328-4758-bd32-f04c38622252","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/profile","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get profile details</p>\n","urlObject":{"path":["users","profile"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"a9b49b9a-ad04-41ed-bac3-b99563584ee7","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1,\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"full_name\": \"John Doe\",\n  \"photo_url\": \"https://example.com/photo.jpg\",\n  \"formatted_number\": \"+1 (555) 123-4567\",\n  \"number\": \"15551234567\",\n  \"country\": \"US\",\n  \"country_calling_code\": \"1\",\n  \"email\": \"john.doe@example.com\",\n  \"timezone\": \"America/New_York\"\n}"},{"id":"a6146772-0d72-40d7-b34f-c2c3485f013f","name":"Unauthenticated","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.3/users/profile"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"24c7d370-6c2a-4900-9e02-9269a62aa8e9","name":"Profile not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/profile"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Profile not exist\"\n}"}],"_postman_id":"c73aec7a-f328-4758-bd32-f04c38622252"},{"name":"Update user profile","id":"8b84d737-7707-48ca-90fd-a0f6f272405f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/profile?first_name=&last_name=&email=&number=","description":"<p>REQUIRED SCOPES <code>[‘users:write’]</code><br />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.3"],"query":[{"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>Number</p>\n","type":"text/plain"},"key":"number","value":""}],"variable":[]}},"response":[{"id":"e6102ac4-d1e5-48bf-9fa1-a8326c987b41","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/profile?first_name=&last_name=&email=&number=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","profile"],"query":[{"description":"First name","key":"first_name","value":""},{"description":"Last name","key":"last_name","value":""},{"description":"Email","key":"email","value":""},{"description":"Number","key":"number","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2747,\n  \"email\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"role\": \"string\",\n  \"inbox_id\": 317,\n  \"organization_id\": 1568,\n  \"photo_url\": \"string\",\n  \"unread\": 5036,\n  \"number\": \"string\",\n  \"formatted_number\": \"string\",\n  \"isRingEverywhere\": false,\n  \"organizationNumber\": [\n    {\n      \"id\": 9441,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    },\n    {\n      \"id\": 4940,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    }\n  ],\n  \"userPermissions\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"aa7d1bbe-9ddb-4303-a130-c4661074b3c3","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/profile?first_name=&last_name=&email=&number=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","profile"],"query":[{"description":"First name","key":"first_name","value":""},{"description":"Last name","key":"last_name","value":""},{"description":"Email","key":"email","value":""},{"description":"Number","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\": \"string\",\n  \"trace\": \"string\"\n}"}],"_postman_id":"8b84d737-7707-48ca-90fd-a0f6f272405f"}],"id":"1eb69051-a314-4f1c-af8d-a5b51fd791f3","_postman_id":"1eb69051-a314-4f1c-af8d-a5b51fd791f3","description":""},{"name":"away-status","item":[{"name":"Update user's away status","id":"bc773c5b-fb7d-49e1-8be3-c1504a0e86ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"away_status\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/away-status","description":"<p>REQUIRED SCOPES <code>['users:write']</code><br />Update user's away status</p>\n","urlObject":{"path":["users","away-status"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"9a3d0418-42d4-4449-bf2c-ba039b1e1291","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"away_status\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/away-status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"isAway\": false,\n  \"awayStatusLastDate\": \"1965-04-22T19:03:57.019Z\"\n}"},{"id":"cd8216e8-d704-4a99-9a7b-d5f4a6d152f0","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"away_status\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/away-status"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d60405f1-4a6a-4869-ad70-592b6e39216c","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"away_status\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/away-status"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bc773c5b-fb7d-49e1-8be3-c1504a0e86ce"}],"id":"83d07ec9-9f3e-44d6-baf9-b8c5b510ff83","_postman_id":"83d07ec9-9f3e-44d6-baf9-b8c5b510ff83","description":""},{"name":"business-hours","item":[{"name":"Get Business Hours","id":"98ca3353-8343-447c-bea8-37759876e6a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/business-hours","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get business hours</p>\n","urlObject":{"path":["users","business-hours"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"a8ffe91d-0904-4fda-98c4-0cdf0e5b7c0d","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/business-hours"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"days\": [\n    {\n      \"closed\": false,\n      \"day\": \"string\",\n      \"end\": \"string\",\n      \"start\": \"string\"\n    },\n    {\n      \"closed\": true,\n      \"day\": \"string\",\n      \"end\": \"string\",\n      \"start\": \"string\"\n    }\n  ],\n  \"is_active\": true,\n  \"media_url\": \"string\",\n  \"message\": \"string\",\n  \"timezone\": \"string\",\n  \"hourable_type\": \"string\",\n  \"hourable_id\": 8350\n}"}],"_postman_id":"98ca3353-8343-447c-bea8-37759876e6a9"}],"id":"ad8139bd-cf57-4281-859a-b3137b5adb7e","_postman_id":"ad8139bd-cf57-4281-859a-b3137b5adb7e","description":""},{"name":"config","item":[{"name":"Get Config","id":"f9b0a937-20e4-42a2-9733-805c0d1be690","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/config","description":"<p>REQUIRED SCOPES <code>['users:read']</code> <br /></p>\n","urlObject":{"path":["users","config"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"e585a37e-d813-4442-802b-2e1135a83a8d","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"10dlc_banners_info\": [\n    {\n      \"should_show_banner\": true,\n      \"grace_period\": [\n        {\n          \"days_left\": 6811,\n          \"hours_left\": 9408\n        },\n        {\n          \"days_left\": 2220,\n          \"hours_left\": 5516\n        }\n      ]\n    },\n    {\n      \"should_show_banner\": true,\n      \"grace_period\": [\n        {\n          \"days_left\": 5636,\n          \"hours_left\": 4799\n        },\n        {\n          \"days_left\": 5601,\n          \"hours_left\": 5571\n        }\n      ]\n    }\n  ],\n  \"developer\": true,\n  \"integrationDisconnected\": true,\n  \"intercom\": \"string\",\n  \"welcomeVideoEnabled\": false\n}"}],"_postman_id":"f9b0a937-20e4-42a2-9733-805c0d1be690"}],"id":"6a822411-cdc9-4044-8994-1f4464438394","_postman_id":"6a822411-cdc9-4044-8994-1f4464438394","description":""},{"name":"email","item":[{"name":"Update user email and password","id":"6f81b6a5-bcc5-46eb-9a53-07c983b1967d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/email?current_password=string&email=string","description":"<p>REQUIRED SCOPES <code>[‘users:write’]</code><br />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.3"],"query":[{"description":{"content":"<p>Password</p>\n","type":"text/plain"},"key":"current_password","value":"string"},{"description":{"content":"<p>Email</p>\n","type":"text/plain"},"key":"email","value":"string"}],"variable":[]}},"response":[{"id":"a51c9350-023a-46f0-8a47-46b88b35da7b","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/email?current_password=string&email=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","email"],"query":[{"description":"Password","key":"current_password","value":"string"},{"description":"Email","key":"email","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2747,\n  \"email\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"role\": \"string\",\n  \"inbox_id\": 317,\n  \"organization_id\": 1568,\n  \"photo_url\": \"string\",\n  \"unread\": 5036,\n  \"number\": \"string\",\n  \"formatted_number\": \"string\",\n  \"isRingEverywhere\": false,\n  \"organizationNumber\": [\n    {\n      \"id\": 9441,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    },\n    {\n      \"id\": 4940,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    }\n  ],\n  \"userPermissions\": [\n    \"string\",\n    \"string\"\n  ]\n}"}],"_postman_id":"6f81b6a5-bcc5-46eb-9a53-07c983b1967d"}],"id":"07f51598-7584-425a-b63c-3fd2ef6bc1c3","_postman_id":"07f51598-7584-425a-b63c-3fd2ef6bc1c3","description":""},{"name":"feedback","item":[{"name":"Submit user feedback","id":"69c8cea7-8bf0-4881-bdb3-d7ec28a47abd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"feedback\": \"string\",\n  \"path\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/feedback","description":"<p>REQUIRED SCOPES <code>['users:write']</code><br />Submit user feedback</p>\n","urlObject":{"path":["users","feedback"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"89381fe5-6486-49e8-8a53-9a8c85b52fa5","name":"Feedback sent successfully","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"feedback\": \"string\",\n  \"path\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/feedback"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"sent\": true\n}"},{"id":"de35257e-50af-41bc-9b40-1cdddb06c45c","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"feedback\": \"string\",\n  \"path\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/feedback"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"4c79d6ce-d4db-4f0a-800e-765acc749123","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"feedback\": \"string\",\n  \"path\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/feedback"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"69c8cea7-8bf0-4881-bdb3-d7ec28a47abd"}],"id":"c5308e88-815c-4c6a-a882-2be7163720b2","_postman_id":"c5308e88-815c-4c6a-a882-2be7163720b2","description":""},{"name":"integration","item":[{"name":"Get integration","id":"a489034e-9fbe-4559-93e2-3b9c1cf05bdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/integration","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get integration</p>\n","urlObject":{"path":["users","integration"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"bdb14a6d-2345-4942-a908-0816c07c0ef0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/integration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"activecampaign\": [\n    {\n      \"api_key\": \"string\",\n      \"client_id\": \"string\",\n      \"client_secret\": \"string\",\n      \"connection_error\": 1900,\n      \"organization_id\": 1139,\n      \"created_at\": \"string\",\n      \"expires_at\": \"string\",\n      \"deleted_at\": \"string\",\n      \"id\": 2400,\n      \"user_id\": 3982,\n      \"user_credential_id\": 6671,\n      \"integration_id\": 8849,\n      \"identity\": \"string\",\n      \"last_check_at\": \"string\",\n      \"provider_user_id\": \"string\",\n      \"token\": \"string\",\n      \"updated_at\": \"string\",\n      \"url\": \"string\",\n      \"sync_token\": \"string\",\n      \"webhook_id\": \"string\",\n      \"webhook_url\": \"string\",\n      \"is_active\": false,\n      \"integration\": [\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 985,\n          \"is_active\": false,\n          \"oauth\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 5749,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ],\n      \"user_credential\": [\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 8325,\n          \"user_id\": 7515,\n          \"is_active\": true,\n          \"oauth\": false,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 4940,\n                  \"users_count\": 7778\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 230,\n                  \"users_count\": 5486\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 8522,\n                  \"users_count\": 430\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 1640,\n                  \"users_count\": 1660\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 9765,\n          \"user_id\": 9055,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3986,\n                  \"users_count\": 4169\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9374,\n                  \"users_count\": 8544\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3456,\n                  \"users_count\": 6947\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3681,\n                  \"users_count\": 5184\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"api_key\": \"string\",\n      \"client_id\": \"string\",\n      \"client_secret\": \"string\",\n      \"connection_error\": 5237,\n      \"organization_id\": 4277,\n      \"created_at\": \"string\",\n      \"expires_at\": \"string\",\n      \"deleted_at\": \"string\",\n      \"id\": 2889,\n      \"user_id\": 1190,\n      \"user_credential_id\": 8747,\n      \"integration_id\": 2857,\n      \"identity\": \"string\",\n      \"last_check_at\": \"string\",\n      \"provider_user_id\": \"string\",\n      \"token\": \"string\",\n      \"updated_at\": \"string\",\n      \"url\": \"string\",\n      \"sync_token\": \"string\",\n      \"webhook_id\": \"string\",\n      \"webhook_url\": \"string\",\n      \"is_active\": false,\n      \"integration\": [\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 7759,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 2595,\n          \"is_active\": false,\n          \"oauth\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ],\n      \"user_credential\": [\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 965,\n          \"user_id\": 6948,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 6697,\n                  \"users_count\": 1841\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3099,\n                  \"users_count\": 3220\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 306,\n                  \"users_count\": 9074\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 382,\n                  \"users_count\": 8101\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 8518,\n          \"user_id\": 7673,\n          \"is_active\": true,\n          \"oauth\": false,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 7090,\n                  \"users_count\": 2944\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3245,\n                  \"users_count\": 3217\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 6457,\n                  \"users_count\": 3806\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9200,\n                  \"users_count\": 2359\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"aircall\": [\n    {\n      \"api_key\": \"string\",\n      \"client_id\": \"string\",\n      \"client_secret\": \"string\",\n      \"connection_error\": 9832,\n      \"organization_id\": 6765,\n      \"created_at\": \"string\",\n      \"expires_at\": \"string\",\n      \"deleted_at\": \"string\",\n      \"id\": 5471,\n      \"user_id\": 6255,\n      \"user_credential_id\": 3114,\n      \"integration_id\": 2409,\n      \"identity\": \"string\",\n      \"last_check_at\": \"string\",\n      \"provider_user_id\": \"string\",\n      \"token\": \"string\",\n      \"updated_at\": \"string\",\n      \"url\": \"string\",\n      \"sync_token\": \"string\",\n      \"webhook_id\": \"string\",\n      \"webhook_url\": \"string\",\n      \"is_active\": true,\n      \"integration\": [\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 7980,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 7213,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ],\n      \"user_credential\": [\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 2653,\n          \"user_id\": 1418,\n          \"is_active\": true,\n          \"oauth\": false,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 2003,\n                  \"users_count\": 2304\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 8060,\n                  \"users_count\": 5530\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9249,\n                  \"users_count\": 6537\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 1199,\n                  \"users_count\": 9599\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 4603,\n          \"user_id\": 4617,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 7098,\n                  \"users_count\": 3686\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 8502,\n                  \"users_count\": 1203\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9253,\n                  \"users_count\": 4440\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 4952,\n                  \"users_count\": 5152\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"api_key\": \"string\",\n      \"client_id\": \"string\",\n      \"client_secret\": \"string\",\n      \"connection_error\": 8126,\n      \"organization_id\": 1070,\n      \"created_at\": \"string\",\n      \"expires_at\": \"string\",\n      \"deleted_at\": \"string\",\n      \"id\": 4140,\n      \"user_id\": 9105,\n      \"user_credential_id\": 7793,\n      \"integration_id\": 6563,\n      \"identity\": \"string\",\n      \"last_check_at\": \"string\",\n      \"provider_user_id\": \"string\",\n      \"token\": \"string\",\n      \"updated_at\": \"string\",\n      \"url\": \"string\",\n      \"sync_token\": \"string\",\n      \"webhook_id\": \"string\",\n      \"webhook_url\": \"string\",\n      \"is_active\": false,\n      \"integration\": [\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 1835,\n          \"is_active\": false,\n          \"oauth\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 9726,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ],\n      \"user_credential\": [\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 5861,\n          \"user_id\": 5567,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9431,\n                  \"users_count\": 5736\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9302,\n                  \"users_count\": 6460\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9675,\n                  \"users_count\": 1781\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 4502,\n                  \"users_count\": 7486\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 9218,\n          \"user_id\": 6803,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3456,\n                  \"users_count\": 2130\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3322,\n                  \"users_count\": 8232\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 4792,\n                  \"users_count\": 4010\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 2561,\n                  \"users_count\": 155\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"google\": [\n    {\n      \"api_key\": \"string\",\n      \"client_id\": \"string\",\n      \"client_secret\": \"string\",\n      \"connection_error\": 3786,\n      \"organization_id\": 9462,\n      \"created_at\": \"string\",\n      \"expires_at\": \"string\",\n      \"deleted_at\": \"string\",\n      \"id\": 1514,\n      \"user_id\": 7919,\n      \"user_credential_id\": 4879,\n      \"integration_id\": 620,\n      \"identity\": \"string\",\n      \"last_check_at\": \"string\",\n      \"provider_user_id\": \"string\",\n      \"token\": \"string\",\n      \"updated_at\": \"string\",\n      \"url\": \"string\",\n      \"sync_token\": \"string\",\n      \"webhook_id\": \"string\",\n      \"webhook_url\": \"string\",\n      \"is_active\": true,\n      \"integration\": [\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 3829,\n          \"is_active\": false,\n          \"oauth\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 4406,\n          \"is_active\": true,\n          \"oauth\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ],\n      \"user_credential\": [\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 1658,\n          \"user_id\": 118,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3374,\n                  \"users_count\": 3920\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 1229,\n                  \"users_count\": 3375\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 5825,\n                  \"users_count\": 6664\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9255,\n                  \"users_count\": 4915\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 6489,\n          \"user_id\": 2986,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 7803,\n                  \"users_count\": 5588\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 5340,\n                  \"users_count\": 6327\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 2159,\n                  \"users_count\": 3485\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 4066,\n                  \"users_count\": 9559\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"api_key\": \"string\",\n      \"client_id\": \"string\",\n      \"client_secret\": \"string\",\n      \"connection_error\": 2535,\n      \"organization_id\": 2941,\n      \"created_at\": \"string\",\n      \"expires_at\": \"string\",\n      \"deleted_at\": \"string\",\n      \"id\": 6043,\n      \"user_id\": 2574,\n      \"user_credential_id\": 5021,\n      \"integration_id\": 6077,\n      \"identity\": \"string\",\n      \"last_check_at\": \"string\",\n      \"provider_user_id\": \"string\",\n      \"token\": \"string\",\n      \"updated_at\": \"string\",\n      \"url\": \"string\",\n      \"sync_token\": \"string\",\n      \"webhook_id\": \"string\",\n      \"webhook_url\": \"string\",\n      \"is_active\": false,\n      \"integration\": [\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 853,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 2709,\n          \"is_active\": false,\n          \"oauth\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ],\n      \"user_credential\": [\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 6142,\n          \"user_id\": 6510,\n          \"is_active\": true,\n          \"oauth\": false,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 7070,\n                  \"users_count\": 4573\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 4833,\n                  \"users_count\": 1128\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 5994,\n                  \"users_count\": 5913\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 1307,\n                  \"users_count\": 9838\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 5848,\n          \"user_id\": 9158,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 2490,\n                  \"users_count\": 6007\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9534,\n                  \"users_count\": 2320\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 7880,\n                  \"users_count\": 4233\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 7102,\n                  \"users_count\": 7806\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"infusionsoft\": [\n    {\n      \"api_key\": \"string\",\n      \"client_id\": \"string\",\n      \"client_secret\": \"string\",\n      \"connection_error\": 3090,\n      \"organization_id\": 9519,\n      \"created_at\": \"string\",\n      \"expires_at\": \"string\",\n      \"deleted_at\": \"string\",\n      \"id\": 8528,\n      \"user_id\": 7934,\n      \"user_credential_id\": 1786,\n      \"integration_id\": 2465,\n      \"identity\": \"string\",\n      \"last_check_at\": \"string\",\n      \"provider_user_id\": \"string\",\n      \"token\": \"string\",\n      \"updated_at\": \"string\",\n      \"url\": \"string\",\n      \"sync_token\": \"string\",\n      \"webhook_id\": \"string\",\n      \"webhook_url\": \"string\",\n      \"is_active\": false,\n      \"integration\": [\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 2747,\n          \"is_active\": true,\n          \"oauth\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 5275,\n          \"is_active\": true,\n          \"oauth\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ],\n      \"user_credential\": [\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 7118,\n          \"user_id\": 7857,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 5338,\n                  \"users_count\": 31\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 5375,\n                  \"users_count\": 8720\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9177,\n                  \"users_count\": 8033\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 7221,\n                  \"users_count\": 8248\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 7602,\n          \"user_id\": 4979,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 6130,\n                  \"users_count\": 6135\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 1571,\n                  \"users_count\": 4554\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 590,\n                  \"users_count\": 7652\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 700,\n                  \"users_count\": 5066\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"api_key\": \"string\",\n      \"client_id\": \"string\",\n      \"client_secret\": \"string\",\n      \"connection_error\": 7826,\n      \"organization_id\": 1045,\n      \"created_at\": \"string\",\n      \"expires_at\": \"string\",\n      \"deleted_at\": \"string\",\n      \"id\": 7232,\n      \"user_id\": 4210,\n      \"user_credential_id\": 2577,\n      \"integration_id\": 946,\n      \"identity\": \"string\",\n      \"last_check_at\": \"string\",\n      \"provider_user_id\": \"string\",\n      \"token\": \"string\",\n      \"updated_at\": \"string\",\n      \"url\": \"string\",\n      \"sync_token\": \"string\",\n      \"webhook_id\": \"string\",\n      \"webhook_url\": \"string\",\n      \"is_active\": false,\n      \"integration\": [\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 717,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 4998,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ],\n      \"user_credential\": [\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 7611,\n          \"user_id\": 445,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9601,\n                  \"users_count\": 359\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 1080,\n                  \"users_count\": 1482\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 6494,\n                  \"users_count\": 2696\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 7981,\n                  \"users_count\": 1725\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 3284,\n          \"user_id\": 2456,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 2539,\n                  \"users_count\": 4656\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 7325,\n                  \"users_count\": 4348\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 2434,\n                  \"users_count\": 3483\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3200,\n                  \"users_count\": 2691\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"pipedrive\": [\n    {\n      \"api_key\": \"string\",\n      \"client_id\": \"string\",\n      \"client_secret\": \"string\",\n      \"connection_error\": 975,\n      \"organization_id\": 3353,\n      \"created_at\": \"string\",\n      \"expires_at\": \"string\",\n      \"deleted_at\": \"string\",\n      \"id\": 8133,\n      \"user_id\": 5395,\n      \"user_credential_id\": 396,\n      \"integration_id\": 9133,\n      \"identity\": \"string\",\n      \"last_check_at\": \"string\",\n      \"provider_user_id\": \"string\",\n      \"token\": \"string\",\n      \"updated_at\": \"string\",\n      \"url\": \"string\",\n      \"sync_token\": \"string\",\n      \"webhook_id\": \"string\",\n      \"webhook_url\": \"string\",\n      \"is_active\": false,\n      \"integration\": [\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 9640,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 4427,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ],\n      \"user_credential\": [\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 8072,\n          \"user_id\": 3359,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9849,\n                  \"users_count\": 2679\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 5711,\n                  \"users_count\": 2914\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 6215,\n                  \"users_count\": 2133\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3017,\n                  \"users_count\": 8522\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 4979,\n          \"user_id\": 2524,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3994,\n                  \"users_count\": 8989\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 1171,\n                  \"users_count\": 2028\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9570,\n                  \"users_count\": 4397\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9127,\n                  \"users_count\": 2057\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"api_key\": \"string\",\n      \"client_id\": \"string\",\n      \"client_secret\": \"string\",\n      \"connection_error\": 7608,\n      \"organization_id\": 2519,\n      \"created_at\": \"string\",\n      \"expires_at\": \"string\",\n      \"deleted_at\": \"string\",\n      \"id\": 7699,\n      \"user_id\": 7604,\n      \"user_credential_id\": 9103,\n      \"integration_id\": 8214,\n      \"identity\": \"string\",\n      \"last_check_at\": \"string\",\n      \"provider_user_id\": \"string\",\n      \"token\": \"string\",\n      \"updated_at\": \"string\",\n      \"url\": \"string\",\n      \"sync_token\": \"string\",\n      \"webhook_id\": \"string\",\n      \"webhook_url\": \"string\",\n      \"is_active\": false,\n      \"integration\": [\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 3014,\n          \"is_active\": true,\n          \"oauth\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"created_at\": \"string\",\n          \"description\": \"string\",\n          \"id\": 9068,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ],\n      \"user_credential\": [\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 9263,\n          \"user_id\": 6221,\n          \"is_active\": true,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9283,\n                  \"users_count\": 6370\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 9267,\n                  \"users_count\": 4426\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 5817,\n                  \"users_count\": 519\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 8182,\n                  \"users_count\": 482\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"avatar\": \"string\",\n          \"created_at\": \"string\",\n          \"deleted_at\": \"string\",\n          \"email\": \"string\",\n          \"name\": \"string\",\n          \"nickname\": \"string\",\n          \"provider\": \"string\",\n          \"provider_identifier\": \"string\",\n          \"provider_user_id\": \"string\",\n          \"third_token\": \"string\",\n          \"updated_at\": \"string\",\n          \"expires_at\": \"string\",\n          \"id\": 6302,\n          \"user_id\": 6583,\n          \"is_active\": false,\n          \"oauth\": true,\n          \"meta\": [\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 620,\n                  \"users_count\": 5018\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 3508,\n                  \"users_count\": 4122\n                }\n              ]\n            },\n            {\n              \"company\": [\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 6195,\n                  \"users_count\": 5877\n                },\n                {\n                  \"name\": \"string\",\n                  \"numbers_count\": 973,\n                  \"users_count\": 1786\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"a489034e-9fbe-4559-93e2-3b9c1cf05bdd"}],"id":"41b71ca0-a68d-4592-8ca1-41199749c6ce","_postman_id":"41b71ca0-a68d-4592-8ca1-41199749c6ce","description":""},{"name":"me","item":[{"name":"Get current user","id":"463ae4c2-bfce-4646-97ba-4c71c684f365","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/me","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Returns 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.3"],"query":[],"variable":[]}},"response":[{"id":"c34e1c14-f814-4080-bf3f-b46ad4e2913c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"unread\": 3544\n}"}],"_postman_id":"463ae4c2-bfce-4646-97ba-4c71c684f365"}],"id":"15fba8ba-c81d-4a67-9c22-c07b5be05851","_postman_id":"15fba8ba-c81d-4a67-9c22-c07b5be05851","description":""},{"name":"password","item":[{"name":"Change user password","id":"edd77440-dce4-4bb3-bd99-23c1dbd290d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/password?password=string&password_confirmation=string&current_password=string","description":"<p>REQUIRED SCOPES <code>['users:write']</code><br />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.3"],"query":[{"description":{"content":"<p>New password</p>\n","type":"text/plain"},"key":"password","value":"string"},{"description":{"content":"<p>Confirm new password</p>\n","type":"text/plain"},"key":"password_confirmation","value":"string"},{"description":{"content":"<p>Current password</p>\n","type":"text/plain"},"key":"current_password","value":"string"}],"variable":[]}},"response":[{"id":"fd34ee9f-34f8-4850-b95f-dd003cc3e872","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/password?password=string&password_confirmation=string&current_password=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","password"],"query":[{"description":"New password","key":"password","value":"string"},{"description":"Confirm new password","key":"password_confirmation","value":"string"},{"description":"Current password","key":"current_password","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2747,\n  \"email\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"role\": \"string\",\n  \"inbox_id\": 317,\n  \"organization_id\": 1568,\n  \"photo_url\": \"string\",\n  \"unread\": 5036,\n  \"number\": \"string\",\n  \"formatted_number\": \"string\",\n  \"isRingEverywhere\": false,\n  \"organizationNumber\": [\n    {\n      \"id\": 9441,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    },\n    {\n      \"id\": 4940,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    }\n  ],\n  \"userPermissions\": [\n    \"string\",\n    \"string\"\n  ]\n}"}],"_postman_id":"edd77440-dce4-4bb3-bd99-23c1dbd290d6"}],"id":"e9bab671-a80f-4794-8390-d3eca1ea54f2","_postman_id":"e9bab671-a80f-4794-8390-d3eca1ea54f2","description":""},{"name":"permissions","item":[{"name":"Get permissions","id":"879a31a8-fed0-4e7a-9f4b-b870d745bafe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/permissions","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get permissions</p>\n","urlObject":{"path":["users","permissions"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"c15eeaf2-171c-4aec-a582-a215a5fd9065","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/permissions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"can_access_inboxes\": true,\n  \"can_create_additional_inboxes\": false,\n  \"can_manage_inboxes\": true,\n  \"can_manage_organization_inboxes\": true,\n  \"can_manage_billing_settings\": false,\n  \"can_manage_billing_compliance_settings\": false,\n  \"can_manage_members\": false,\n  \"can_manage_organization_settings\": false,\n  \"can_manage_phone_checker\": false,\n  \"can_manage_security_settings\": true,\n  \"can_manage_tags\": false,\n  \"can_manage_contacts\": false,\n  \"can_import_contacts\": false,\n  \"can_export_contacts\": true,\n  \"can_manage_conversations\": true,\n  \"can_manage_integrations\": false,\n  \"can_manage_clients\": true,\n  \"can_manage_saved_replies\": false,\n  \"can_reassign_conversations\": false,\n  \"can_manage_broadcasts\": true,\n  \"can_manage_organization_broadcasts\": true,\n  \"can_manage_triggers\": true,\n  \"can_manage_organization_triggers\": true,\n  \"can_manage_keywords\": false,\n  \"can_manage_organization_keywords\": true,\n  \"can_access_analytics\": false,\n  \"can_manage_oauth_applications\": false,\n  \"can_manage_canned_messages\": true,\n  \"can_manage_shared_canned_messages\": true,\n  \"can_manage_custom_fields\": false,\n  \"can_manage_referrals\": true,\n  \"can_manage_website_chat_widget\": false,\n  \"can_access_all\": true,\n  \"can_access_own\": true,\n  \"can_access_groups\": false,\n  \"can_manage_text_bots\": true,\n  \"can_manage_organization_text_bots\": false,\n  \"can_manage_calling_agents\": false,\n  \"can_manage_organization_calling_agents\": false\n}"}],"_postman_id":"879a31a8-fed0-4e7a-9f4b-b870d745bafe"}],"id":"8a9c414a-a73b-4bff-b791-349d2632b404","_postman_id":"8a9c414a-a73b-4bff-b791-349d2632b404","description":""},{"name":"assign-inbox-request","item":[{"name":"Get users assign inbox request","id":"78eca9ac-4f8a-47a8-abef-6bc46fb4af69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/assign-inbox-request","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get users assign inbox request</p>\n","urlObject":{"path":["users","assign-inbox-request"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"630ba493-00eb-48b7-aa7c-1d796bd69450","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/assign-inbox-request"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\",\n  \"data\": {}\n}"},{"id":"0d7ad42f-e16f-484a-89ab-a1b1ae662144","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.3/users/assign-inbox-request"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"78eca9ac-4f8a-47a8-abef-6bc46fb4af69"},{"name":"Update user assign inbox request","id":"3a3d32d0-a8a2-4c05-89e8-f463fab1e76f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/assign-inbox-request","description":"<p>REQUIRED SCOPES <code>['users:write']</code><br />Update user assign inbox request</p>\n","urlObject":{"path":["users","assign-inbox-request"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"e955261b-bd18-4225-865c-06978bf1cfd9","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/assign-inbox-request"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\",\n  \"data\": {}\n}"},{"id":"48b0a3c7-f474-4188-9be8-39c0b0c8d128","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.3/users/assign-inbox-request"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3a3d32d0-a8a2-4c05-89e8-f463fab1e76f"}],"id":"821cac05-ac6a-45a7-b89d-26fe8b1f537f","_postman_id":"821cac05-ac6a-45a7-b89d-26fe8b1f537f","description":""},{"name":"access-requests","item":[{"name":"Get user access requests","id":"7612540f-dcdd-4b67-859b-86690da16a63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/access-requests","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get user access requests</p>\n","urlObject":{"path":["users","access-requests"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"f7f6bc84-5aee-4505-aba4-73ee656087a8","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/access-requests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\",\n  \"data\": {}\n}"}],"_postman_id":"7612540f-dcdd-4b67-859b-86690da16a63"}],"id":"9fcc6b49-3465-442c-85f3-b117bab84959","_postman_id":"9fcc6b49-3465-442c-85f3-b117bab84959","description":""},{"name":"search","item":[{"name":"Search members in current organization","id":"aca3a789-b5d3-44a6-a58e-bdb617c2883d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/search?term=string&per_page=50&page=1&exclude[]=1786&exclude[]=1861","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Search members in current organization</p>\n","urlObject":{"path":["users","search"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Term</p>\n","type":"text/plain"},"key":"term","value":"string"},{"description":{"content":"<p>Per Page</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>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"exclude[]","value":"1786"},{"description":{"content":"<p>The IDs of the Contacts</p>\n","type":"text/plain"},"key":"exclude[]","value":"1861"}],"variable":[]}},"response":[{"id":"6ad2e741-61de-4186-98e5-598244f9fc6f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/search?term=string&per_page=50&page=1&exclude[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","search"],"query":[{"description":"Term","key":"term","value":"string"},{"description":"Per Page","key":"per_page","value":"50"},{"description":"Page","key":"page","value":"1"},{"description":"The IDs of the Contacts","key":"exclude[]","value":"1861"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"total\": 1277,\n  \"errors\": false\n}"}],"_postman_id":"aca3a789-b5d3-44a6-a58e-bdb617c2883d"}],"id":"afa46f5f-b55d-4fcc-9027-92a81d9e419a","_postman_id":"afa46f5f-b55d-4fcc-9027-92a81d9e419a","description":""},{"name":"settings","item":[{"name":"Get settings","id":"b217e051-23e6-4327-89b2-41d744cf91aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/settings","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get settings</p>\n","urlObject":{"path":["users","settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"8cd98b95-7042-4e73-870d-73286067b778","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"0\": [\n    {\n      \"created_at\": \"string\",\n      \"description\": \"string\",\n      \"key\": \"string\",\n      \"updated_at\": \"string\",\n      \"name\": \"string\",\n      \"id\": 8936,\n      \"default_settings\": [\n        {\n          \"active\": true\n        },\n        {\n          \"active\": false\n        }\n      ],\n      \"settings\": [\n        {\n          \"active\": false\n        },\n        {\n          \"active\": true\n        }\n      ]\n    },\n    {\n      \"created_at\": \"string\",\n      \"description\": \"string\",\n      \"key\": \"string\",\n      \"updated_at\": \"string\",\n      \"name\": \"string\",\n      \"id\": 4486,\n      \"default_settings\": [\n        {\n          \"active\": false\n        },\n        {\n          \"active\": true\n        }\n      ],\n      \"settings\": [\n        {\n          \"active\": true\n        },\n        {\n          \"active\": false\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"b217e051-23e6-4327-89b2-41d744cf91aa"},{"name":"Update user feature settings","id":"ca9e47c4-51ee-4c2f-bcfd-1d6376519635","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/settings?featureKey=string&settingsKey=string&value=string","description":"<p>REQUIRED SCOPES <code>[‘users:write’]</code><br />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.3"],"query":[{"description":{"content":"<p>Key of the feature</p>\n","type":"text/plain"},"key":"featureKey","value":"string"},{"description":{"content":"<p>Settings key</p>\n","type":"text/plain"},"key":"settingsKey","value":"string"},{"description":{"content":"<p>Settings value</p>\n","type":"text/plain"},"key":"value","value":"string"}],"variable":[]}},"response":[{"id":"ba41e49b-26b9-4504-a53d-e2dfff2179a6","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/settings?featureKey=string&settingsKey=string&value=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","settings"],"query":[{"description":"Key of the feature","key":"featureKey","value":"string"},{"description":"Settings key","key":"settingsKey","value":"string"},{"description":"Settings value","key":"value","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"value\": \"string\",\n  \"settingsKey\": \"string\",\n  \"featureKey\": \"string\"\n}"}],"_postman_id":"ca9e47c4-51ee-4c2f-bcfd-1d6376519635"}],"id":"e99dfc10-ecea-4910-9276-36a9590d8724","_postman_id":"e99dfc10-ecea-4910-9276-36a9590d8724","description":""},{"name":"settings-multiple","item":[{"name":"Update multiple user settings","id":"cb895a51-9aa1-42e9-b5e2-01f36b7f283b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"featureKey\": \"string\",\n    \"settingsKey\": \"string\",\n    \"value\": \"string\"\n  },\n  {\n    \"featureKey\": \"string\",\n    \"settingsKey\": \"string\",\n    \"value\": \"string\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/settings-multiple","description":"<p>REQUIRED SCOPES <code>['users:write']</code><br />Update multiple user settings</p>\n","urlObject":{"path":["users","settings-multiple"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"319a85c1-c776-477f-ae23-fdcdc768d92f","name":"Settings updated successfully","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"featureKey\": \"string\",\n    \"settingsKey\": \"string\",\n    \"value\": \"string\"\n  },\n  {\n    \"featureKey\": \"string\",\n    \"settingsKey\": \"string\",\n    \"value\": \"string\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/settings-multiple"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"featureKey\": \"string\",\n    \"settingsKey\": \"string\",\n    \"value\": \"string\"\n  },\n  {\n    \"featureKey\": \"string\",\n    \"settingsKey\": \"string\",\n    \"value\": \"string\"\n  }\n]"},{"id":"e0f90a84-8098-4939-be05-5889a5114c58","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"featureKey\": \"string\",\n    \"settingsKey\": \"string\",\n    \"value\": \"string\"\n  },\n  {\n    \"featureKey\": \"string\",\n    \"settingsKey\": \"string\",\n    \"value\": \"string\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/settings-multiple"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"261b24a7-c186-49ac-bd8e-09c051588377","name":"Validation error or incorrect settings","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"featureKey\": \"string\",\n    \"settingsKey\": \"string\",\n    \"value\": \"string\"\n  },\n  {\n    \"featureKey\": \"string\",\n    \"settingsKey\": \"string\",\n    \"value\": \"string\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/settings-multiple"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Incorrect settings\"\n}"}],"_postman_id":"cb895a51-9aa1-42e9-b5e2-01f36b7f283b"}],"id":"b2bece91-e943-44bc-8dce-85f9e3e93e05","_postman_id":"b2bece91-e943-44bc-8dce-85f9e3e93e05","description":""},{"name":"team","item":[{"name":"Update user's team","id":"b5c3800a-46a6-4cee-b5da-a6e06c71c49d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/team?id=2491","description":"<p>REQUIRED SCOPES <code>['users:write']</code><br />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.3"],"query":[{"description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"key":"id","value":"2491"}],"variable":[]}},"response":[{"id":"e91a0441-02b8-4121-958b-cbe4eac14602","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/team?id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","team"],"query":[{"description":"Team ID","key":"id","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"string\",\n  \"currentInboxId\": 2950,\n  \"currentInboxTypeId\": 9305,\n  \"currentInboxType\": \"string\",\n  \"unread\": 8433,\n  \"unread_calls\": 9479,\n  \"unread_messages_count\": 4107,\n  \"unread_mentions_count\": 1845\n}"}],"_postman_id":"b5c3800a-46a6-4cee-b5da-a6e06c71c49d"}],"id":"e400902c-cc9d-43f4-ae36-173597040db3","_postman_id":"e400902c-cc9d-43f4-ae36-173597040db3","description":""},{"name":"toggle-record-automatically","item":[{"name":"Update users toggle record automatically","id":"a05b9c03-f1f2-418f-aeed-5fccf4a4f5b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isRecordAutomatically\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/toggle-record-automatically","description":"<p>REQUIRED SCOPES <code>['users:write']</code><br />Update users toggle record automatically</p>\n","urlObject":{"path":["users","toggle-record-automatically"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"91bd3e2c-3107-4786-8710-b3a1419c13d9","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"isRecordAutomatically\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/toggle-record-automatically"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a05b9c03-f1f2-418f-aeed-5fccf4a4f5b8"}],"id":"fafcf85f-29a0-4feb-b42a-1ef14d18e6f9","_postman_id":"fafcf85f-29a0-4feb-b42a-1ef14d18e6f9","description":""},{"name":"ui-settings","item":[{"name":"{type}","item":[{"name":"Get User's UI Settings For The Provided Type","id":"c96615e8-e315-41f0-a024-1084ed63302a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/ui-settings/:type","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get user's UI settings for the provided type</p>\n","urlObject":{"path":["users","ui-settings",":type"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"8dbddbb6-ac81-436b-b622-369135cce11f","description":{"content":"<p>UI Settings Type</p>\n","type":"text/plain"},"type":"any","value":"contacts-table-columns","key":"type"}]}},"response":[{"id":"26d4d0df-de63-4d92-9047-7a2e5b29f708","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/users/ui-settings/:type","host":["https://api.salesmessage.com/pub/v2.3"],"path":["users","ui-settings",":type"],"variable":[{"key":"type","value":"contacts-table-columns","description":"UI Settings Type"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 138,\n    \"user_id\": 7884,\n    \"organization_id\": 3570,\n    \"items\": [\n      \"\",\n      \"\"\n    ]\n  }\n}"}],"_postman_id":"c96615e8-e315-41f0-a024-1084ed63302a"}],"id":"08c3320d-bf3d-416e-95f9-7b937ae87273","_postman_id":"08c3320d-bf3d-416e-95f9-7b937ae87273","description":""},{"name":"sync","item":[{"name":"Sync User's UI Settings.","id":"085a82eb-a5a7-4686-8049-31ef6ebba174","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"source_type\": \"contacts-table-columns\",\n  \"items\": [\n    \"\",\n    \"\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/ui-settings/sync","description":"<p>REQUIRED SCOPES <code>['users:write']</code><br />Sync User's UI Settings: Create OR Update.</p>\n","urlObject":{"path":["users","ui-settings","sync"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"95e36635-5368-4a97-8987-ce44ebdb133c","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"source_type\": \"contacts-table-columns\",\n  \"items\": [\n    \"\",\n    \"\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/ui-settings/sync"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 138,\n    \"user_id\": 7884,\n    \"organization_id\": 3570,\n    \"items\": [\n      \"\",\n      \"\"\n    ]\n  }\n}"},{"id":"e9959ca6-acb5-4d58-97db-051d2e27af05","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"source_type\": \"contacts-table-columns\",\n  \"items\": [\n    \"\",\n    \"\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/users/ui-settings/sync"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\",\n  \"code\": \"string\"\n}"}],"_postman_id":"085a82eb-a5a7-4686-8049-31ef6ebba174"}],"id":"28a94af2-8072-4b1a-9ebf-783716965cae","_postman_id":"28a94af2-8072-4b1a-9ebf-783716965cae","description":""},{"name":"Get List Of User's UI Settings","id":"a71a501d-9c82-437c-ae43-095f2731028b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users/ui-settings","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get list of user's UI settings</p>\n","urlObject":{"path":["users","ui-settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"513fc5ea-1af3-49c6-a6f8-a2bb79667e8f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users/ui-settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 4853,\n      \"user_id\": 9167,\n      \"organization_id\": 512,\n      \"items\": [\n        \"\",\n        \"\"\n      ]\n    },\n    {\n      \"id\": 5165,\n      \"user_id\": 8759,\n      \"organization_id\": 400,\n      \"items\": [\n        \"\",\n        \"\"\n      ]\n    }\n  ]\n}"}],"_postman_id":"a71a501d-9c82-437c-ae43-095f2731028b"}],"id":"2eaa5923-3834-45fe-a21a-ecc089a31d73","_postman_id":"2eaa5923-3834-45fe-a21a-ecc089a31d73","description":""},{"name":"Get Users","id":"500a7864-b2a8-494f-8fd3-05aeb7dc0303","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/users","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get users</p>\n","urlObject":{"path":["users"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"9ae5db9b-7ea2-408e-a45e-611b52939627","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"\": [\n    {\n      \"id\": 9498,\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"photo_url\": \"string\",\n      \"email\": \"string\",\n      \"timezone\": \"string\",\n      \"role\": \"string\",\n      \"role_label\": \"string\",\n      \"number\": \"string\",\n      \"two_fa_enabled\": false,\n      \"has_change_role_request\": true,\n      \"has_inbox_access_request\": false,\n      \"disabled\": false,\n      \"default_team_id\": 2749,\n      \"member_teams_count\": 7500,\n      \"permissions\": [\n        {\n          \"billing\": false,\n          \"members\": false,\n          \"dataAndSecurity\": true,\n          \"inbox\": false,\n          \"broadcasts\": false,\n          \"triggers\": true,\n          \"reportingAndAnalytics\": false\n        },\n        {\n          \"billing\": false,\n          \"members\": false,\n          \"dataAndSecurity\": false,\n          \"inbox\": true,\n          \"broadcasts\": false,\n          \"triggers\": false,\n          \"reportingAndAnalytics\": true\n        }\n      ]\n    },\n    {\n      \"id\": 4917,\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"photo_url\": \"string\",\n      \"email\": \"string\",\n      \"timezone\": \"string\",\n      \"role\": \"string\",\n      \"role_label\": \"string\",\n      \"number\": \"string\",\n      \"two_fa_enabled\": false,\n      \"has_change_role_request\": true,\n      \"has_inbox_access_request\": true,\n      \"disabled\": true,\n      \"default_team_id\": 3357,\n      \"member_teams_count\": 1739,\n      \"permissions\": [\n        {\n          \"billing\": false,\n          \"members\": true,\n          \"dataAndSecurity\": false,\n          \"inbox\": true,\n          \"broadcasts\": false,\n          \"triggers\": true,\n          \"reportingAndAnalytics\": false\n        },\n        {\n          \"billing\": false,\n          \"members\": true,\n          \"dataAndSecurity\": true,\n          \"inbox\": true,\n          \"broadcasts\": true,\n          \"triggers\": true,\n          \"reportingAndAnalytics\": false\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"500a7864-b2a8-494f-8fd3-05aeb7dc0303"}],"id":"c6f166d3-43fb-4796-9613-e7b5a0496b79","_postman_id":"c6f166d3-43fb-4796-9613-e7b5a0496b79","description":""},{"name":"attachments","item":[{"name":"upload-info","item":[{"name":"Get attachments size-limits","id":"8f95c363-df10-43d7-9a3f-9222bc22278f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/attachments/upload-info","description":"<p>REQUIRED SCOPES <code>['attachments:read']</code><br />Get attachments size-limits</p>\n","urlObject":{"path":["attachments","upload-info"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"25b0d857-5fbb-4a0c-b60f-e35ae060c602","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/attachments/upload-info"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"size_limit\": [\n    {\n      \"default\": 3322,\n      \"video\": 8208,\n      \"vcard\": 9906,\n      \"image\": 2122,\n      \"audio\": 8450\n    },\n    {\n      \"default\": 3825,\n      \"video\": 4424,\n      \"vcard\": 2532,\n      \"image\": 6450,\n      \"audio\": 3967\n    }\n  ]\n}"}],"_postman_id":"8f95c363-df10-43d7-9a3f-9222bc22278f"}],"id":"a2e6d3fd-f3f6-497a-8c85-714b00fd0b25","_postman_id":"a2e6d3fd-f3f6-497a-8c85-714b00fd0b25","description":""},{"name":"download","item":[{"name":"link","item":[{"name":"Download selected attachments by link","id":"a3c03bdb-4eec-4c80-927a-cf5c261ce63b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/attachments/download/link?attachment_ids[]=1786&attachment_ids[]=1861","description":"<p>REQUIRED SCOPES <code>['attachments:write']</code><br />Download selected attachments by link</p>\n","urlObject":{"path":["attachments","download","link"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The IDs of the Attachments</p>\n","type":"text/plain"},"key":"attachment_ids[]","value":"1786"},{"description":{"content":"<p>The IDs of the Attachments</p>\n","type":"text/plain"},"key":"attachment_ids[]","value":"1861"}],"variable":[]}},"response":[{"id":"55a54679-5c07-4f44-89ce-136f6f9c6261","name":"Ok","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/download/link?attachment_ids[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","download","link"],"query":[{"description":"The IDs of the Attachments","key":"attachment_ids[]","value":"1861"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"link\": \"string\"\n}"},{"id":"ca3a34c3-4ce3-4a25-bbee-c2c9792d5c94","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.3/attachments/download/link?attachment_ids[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","download","link"],"query":[{"description":"The IDs of the Attachments","key":"attachment_ids[]","value":"1861"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"065aed1d-8df4-48fe-9827-435f815641d3","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/download/link?attachment_ids[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","download","link"],"query":[{"description":"The IDs of the Attachments","key":"attachment_ids[]","value":"1861"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"a3c03bdb-4eec-4c80-927a-cf5c261ce63b"}],"id":"4da100e3-4aff-465c-86e5-6fabc6e4342a","_postman_id":"4da100e3-4aff-465c-86e5-6fabc6e4342a","description":""},{"name":"Download selected attachments","id":"6bee1288-8fdd-4ca0-8bab-c11b5847ad92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/zip"}],"url":"https://api.salesmessage.com/pub/v2.3/attachments/download?attachment_ids[]=1786&attachment_ids[]=1861","description":"<p>REQUIRED SCOPES <code>['attachments:write']</code><br />Download selected attachments</p>\n","urlObject":{"path":["attachments","download"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The IDs of the Attachments</p>\n","type":"text/plain"},"key":"attachment_ids[]","value":"1786"},{"description":{"content":"<p>The IDs of the Attachments</p>\n","type":"text/plain"},"key":"attachment_ids[]","value":"1861"}],"variable":[]}},"response":[{"id":"63a5370a-69cb-4523-ba7d-dc476cea72d1","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/zip"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/download?attachment_ids[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","download"],"query":[{"description":"The IDs of the Attachments","key":"attachment_ids[]","value":"1861"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/zip"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"cccf2491-f530-44cf-822a-512492056e98","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.3/attachments/download?attachment_ids[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","download"],"query":[{"description":"The IDs of the Attachments","key":"attachment_ids[]","value":"1861"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7c5d6325-49a6-4af9-80d1-b3f90412ba35","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/download?attachment_ids[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","download"],"query":[{"description":"The IDs of the Attachments","key":"attachment_ids[]","value":"1861"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"6bee1288-8fdd-4ca0-8bab-c11b5847ad92"}],"id":"d184054e-86d1-4d43-a538-e5bed40cd603","_postman_id":"d184054e-86d1-4d43-a538-e5bed40cd603","description":""},{"name":"convert","item":[{"name":"Convert attachment file","id":"7e51dfee-5e89-479e-89c2-5bb18a6be390","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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.3/attachments/convert","description":"<p>REQUIRED SCOPES <code>['attachments:write']</code><br />Convert attachment file</p>\n","urlObject":{"path":["attachments","convert"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"6797a5c1-98ab-4551-9f6b-d1a10b158d51","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"https://api.salesmessage.com/pub/v2.3/attachments/convert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"source\": \"string\",\n  \"source_short\": \"string\",\n  \"content_type\": \"string\"\n}"},{"id":"93dc6f37-2a3d-489a-9022-10adf7b332bf","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"https://api.salesmessage.com/pub/v2.3/attachments/convert"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7e51dfee-5e89-479e-89c2-5bb18a6be390"}],"id":"ed1408b1-d9bf-4ecf-95d2-5c44771497f3","_postman_id":"ed1408b1-d9bf-4ecf-95d2-5c44771497f3","description":""},{"name":"list","item":[{"name":"Get all attachments","id":"60dda4ab-18b5-489a-a3b0-6dcc45e7684f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/attachments/list?term=string&per_page=428&page=428&type=string","description":"<p>REQUIRED SCOPES <code>['attachments:read']</code><br />Get all attachments with pagination and filtering options</p>\n","urlObject":{"path":["attachments","list"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Search term to filter attachments</p>\n","type":"text/plain"},"key":"term","value":"string"},{"description":{"content":"<p>Number of attachments per page</p>\n","type":"text/plain"},"key":"per_page","value":"428"},{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"428"},{"description":{"content":"<p>Filter attachments by type</p>\n","type":"text/plain"},"key":"type","value":"string"}],"variable":[]}},"response":[{"id":"a5e3c799-2c27-4c21-97e3-059f7c98bcbb","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/list?term=string&per_page=428&page=428&type=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","list"],"query":[{"description":"Search term to filter attachments","key":"term","value":"string"},{"description":"Number of attachments per page","key":"per_page","value":"428"},{"description":"Page number","key":"page","value":"428"},{"description":"Filter attachments by type","key":"type","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"attachments\": [\n    {\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"content_type\": \"string\"\n    },\n    {\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"content_type\": \"string\"\n    }\n  ],\n  \"space_used\": 1931,\n  \"page\": 6464,\n  \"per_page\": 6879,\n  \"total\": 2881\n}"},{"id":"bfbe9f5e-8e8c-45ec-8fcc-302c517668a8","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.3/attachments/list?term=string&per_page=428&page=428&type=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","list"],"query":[{"description":"Search term to filter attachments","key":"term","value":"string"},{"description":"Number of attachments per page","key":"per_page","value":"428"},{"description":"Page number","key":"page","value":"428"},{"description":"Filter attachments by type","key":"type","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"60dda4ab-18b5-489a-a3b0-6dcc45e7684f"}],"id":"5a5ec0e3-89bb-4172-aad8-86c7a461f27e","_postman_id":"5a5ec0e3-89bb-4172-aad8-86c7a461f27e","description":""},{"name":"preview","item":[{"name":"Get preview file","id":"2f60c86d-ea79-426a-af9a-37a79bdebdd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/attachments/preview?urls[]=string&urls[]=string","description":"<p>REQUIRED SCOPES <code>['attachments:read']</code><br />Get preview file</p>\n","urlObject":{"path":["attachments","preview"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Short Urls</p>\n","type":"text/plain"},"key":"urls[]","value":"string"},{"description":{"content":"<p>Short Urls</p>\n","type":"text/plain"},"key":"urls[]","value":"string"}],"variable":[]}},"response":[{"id":"3a1a0ba5-4990-427c-848c-e2c311d6e3f0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/preview?urls[]=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","preview"],"query":[{"description":"Short Urls","key":"urls[]","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"source\": \"string\",\n  \"source_short\": \"string\",\n  \"content_type\": \"string\"\n}"},{"id":"15187970-3c62-4e63-949d-4ae082fa1fc0","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.3/attachments/preview?urls[]=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","preview"],"query":[{"description":"Short Urls","key":"urls[]","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f00f6c02-2977-487e-8a7c-59ca0b74efc1","name":"Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/preview?urls[]=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","preview"],"query":[{"description":"Short Urls","key":"urls[]","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"2f60c86d-ea79-426a-af9a-37a79bdebdd0"}],"id":"2af18e43-4273-4124-b684-de608ca5a317","_postman_id":"2af18e43-4273-4124-b684-de608ca5a317","description":""},{"name":"recently","item":[{"name":"Get Recently attachments","id":"e4a9f9b6-556f-4982-9428-ae75c306eb30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/attachments/recently","description":"<p>REQUIRED SCOPES <code>['attachments:read']</code><br />Get Recently attachments</p>\n","urlObject":{"path":["attachments","recently"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"8dd920a6-8fa8-4556-b4b1-2bc3846b8d65","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/attachments/recently"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"attachments\": [\n    {\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"content_type\": \"string\"\n    },\n    {\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"content_type\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"e4a9f9b6-556f-4982-9428-ae75c306eb30"}],"id":"dfba73f6-05dd-4984-b9bc-60a057234cc6","_postman_id":"dfba73f6-05dd-4984-b9bc-60a057234cc6","description":""},{"name":"search","item":[{"name":"Search attachments","id":"9a0624f1-adb6-485e-896d-18a17c0ae47d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/attachments/search?limit=100&is_aircall=true&term=string","description":"<p>REQUIRED SCOPES <code>['attachments:read']</code><br />Search attachments</p>\n","urlObject":{"path":["attachments","search"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Number of attachments to return</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>Filter for Aircall attachments</p>\n","type":"text/plain"},"key":"is_aircall","value":"true"},{"description":{"content":"<p>Search term</p>\n","type":"text/plain"},"key":"term","value":"string"}],"variable":[]}},"response":[{"id":"70f620a3-db1e-447b-b5dc-87ac5fb2ced1","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/search?limit=100&is_aircall=true&term=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","search"],"query":[{"description":"Number of attachments to return","key":"limit","value":"100"},{"description":"Filter for Aircall attachments","key":"is_aircall","value":"true"},{"description":"Search term","key":"term","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"source\": \"string\",\n    \"source_short\": \"string\",\n    \"content_type\": \"string\"\n  },\n  {\n    \"source\": \"string\",\n    \"source_short\": \"string\",\n    \"content_type\": \"string\"\n  }\n]"},{"id":"8dbc384f-810c-4cc5-8713-f7a701b72b2a","name":"Unauthenticated","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.3/attachments/search?limit=100&is_aircall=true&term=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","search"],"query":[{"description":"Number of attachments to return","key":"limit","value":"100"},{"description":"Filter for Aircall attachments","key":"is_aircall","value":"true"},{"description":"Search term","key":"term","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"dfb4056a-42e6-470e-9155-542c1a96b5da","name":"Forbidden","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.3/attachments/search?limit=100&is_aircall=true&term=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments","search"],"query":[{"description":"Number of attachments to return","key":"limit","value":"100"},{"description":"Filter for Aircall attachments","key":"is_aircall","value":"true"},{"description":"Search term","key":"term","value":"string"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9a0624f1-adb6-485e-896d-18a17c0ae47d"}],"id":"ad6824f3-d952-4b05-bfc7-8fbd942f63ba","_postman_id":"ad6824f3-d952-4b05-bfc7-8fbd942f63ba","description":""},{"name":"{attachment}","item":[{"name":"Update an attachment","id":"927de38c-9aa6-437d-9ef2-b590d6c19191","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/attachments/:attachment","description":"<p>REQUIRED SCOPES <code>['attachments:write']</code><br />Update an attachment</p>\n","urlObject":{"path":["attachments",":attachment"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"5db41944-54d3-4fda-9fe0-fe78c650fc23","description":{"content":"<p>ID of the attachment to update</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"attachment"}]}},"response":[{"id":"98e029ec-197a-4e11-98fe-f24317d9d1e7","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/:attachment","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments",":attachment"],"variable":[{"key":"attachment","value":"2491","description":"ID of the attachment to update"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"source\": \"string\",\n  \"source_short\": \"string\",\n  \"content_type\": \"string\"\n}"},{"id":"4ab9a386-fc55-4ee4-9f59-e2c16107e689","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/:attachment","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments",":attachment"],"variable":[{"key":"attachment","value":"2491","description":"ID of the attachment to update"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0395eec4-6b5e-4a6c-8123-4092e1c237b6","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/:attachment","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments",":attachment"],"variable":[{"key":"attachment","value":"2491","description":"ID of the attachment to update"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7168d146-42f6-449e-9364-ce8f04a4b69f","name":"Attachment not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/:attachment","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments",":attachment"],"variable":[{"key":"attachment","value":"2491","description":"ID of the attachment to update"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ecc3a79a-5bcd-409a-a150-13900dfa8b0a","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments/:attachment","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments",":attachment"],"variable":[{"key":"attachment","value":"2491","description":"ID of the attachment to update"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"927de38c-9aa6-437d-9ef2-b590d6c19191"}],"id":"29fd71c9-71d3-4859-8540-930481d8b077","_postman_id":"29fd71c9-71d3-4859-8540-930481d8b077","description":""},{"name":"upload","item":[{"name":"Upload attachments","id":"4cacba6e-2eda-475d-acd8-c817cd2ab145","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":"string,string","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/attachments/upload","description":"<p>REQUIRED SCOPES <code>['attachments:write']</code><br />Upload attachment</p>\n","urlObject":{"path":["attachments","upload"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"c6f0de31-c64a-4064-90ef-243f99267f28","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"string,string","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/attachments/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"source\": \"string\",\n  \"source_short\": \"string\",\n  \"content_type\": \"string\"\n}"},{"id":"9d2babd9-8d33-4aec-858a-bbd7f18a83fe","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"string,string","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/attachments/upload"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fa3a90d1-7818-4340-8774-56808208803f","name":"Unprocessable Content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"string,string","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/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":"4cacba6e-2eda-475d-acd8-c817cd2ab145"}],"id":"0461f177-4423-417d-b1d2-98f57213d5fd","_postman_id":"0461f177-4423-417d-b1d2-98f57213d5fd","description":""},{"name":"Delete selected attachments","id":"4153b509-c30b-474a-8e1b-4507f11cae37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/attachments?attachment_ids[]=1786&attachment_ids[]=1861","description":"<p>REQUIRED SCOPES <code>['attachments:write']</code><br />Delete selected attachments</p>\n","urlObject":{"path":["attachments"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The IDs of the Attachments</p>\n","type":"text/plain"},"key":"attachment_ids[]","value":"1786"},{"description":{"content":"<p>The IDs of the Attachments</p>\n","type":"text/plain"},"key":"attachment_ids[]","value":"1861"}],"variable":[]}},"response":[{"id":"adc2f278-cd5f-4b8e-b159-20b4f9346f81","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/attachments?attachment_ids[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments"],"query":[{"description":"The IDs of the Attachments","key":"attachment_ids[]","value":"1861"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\"\n}"},{"id":"b6daa76a-396a-436c-8230-5e976ea1ab04","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.3/attachments?attachment_ids[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["attachments"],"query":[{"description":"The IDs of the Attachments","key":"attachment_ids[]","value":"1861"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4153b509-c30b-474a-8e1b-4507f11cae37"}],"id":"1d0b324c-11b3-489b-bdb4-997b404c3496","_postman_id":"1d0b324c-11b3-489b-bdb4-997b404c3496","description":""},{"name":"oauth","item":[{"name":"token","item":[{"name":"refresh","item":[{"name":"Refresh access token","id":"94d92caf-806c-4a76-85c6-caf91b8171a3","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":[{"description":"<p>Must be set to <code>refresh_token</code>.</p>\n","key":"grant_type","value":"refresh_token"},{"description":"<p>The client_id is the identifier for the app. Find it on the OAuth Applications page.</p>\n","key":"client_id","value":""},{"description":"<p>The client_id is the secret of the app. Find it on the OAuth Applications page.</p>\n","key":"client_secret","value":""},{"description":"<p>The refresh token to refresh.</p>\n","key":"refresh_token","value":""}]},"url":"https://api.salesmessage.com/pub/v2.3/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.3"],"query":[],"variable":[]}},"response":[{"id":"4264acea-692e-40fc-839a-9e432383adf7","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"Must be set to `refresh_token`.","key":"grant_type","value":"refresh_token"},{"description":"The client_id is the identifier for the app. Find it on the OAuth Applications page.","key":"client_id","value":""},{"description":"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":""}]},"url":"https://api.salesmessage.com/pub/v2.3/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":"94d92caf-806c-4a76-85c6-caf91b8171a3"}],"id":"e5825ae5-d775-41df-8a84-7f1c6e270960","_postman_id":"e5825ae5-d775-41df-8a84-7f1c6e270960","description":""},{"name":"Request access token","id":"54678b26-a253-4d64-86af-5d9e2ac62f54","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":[{"description":"<p>Must be set to <code>authorization_code</code>.</p>\n","key":"grant_type","value":"authorization_code"},{"description":"<p>The authorization code returned from the Get the User’s Permission request.</p>\n","key":"code","value":""},{"description":"<p>The client_id is the identifier for the app. Find it on the OAuth Applications page.</p>\n","key":"client_id","value":""},{"description":"<p>The client_secret is the secret of the app. Find it on the OAuth Applications page.</p>\n","key":"client_secret","value":""},{"description":"<p>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","key":"redirect_uri","value":""}]},"url":"https://api.salesmessage.com/pub/v2.3/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.3"],"query":[],"variable":[]}},"response":[{"id":"b6d3fd3d-af8f-469e-bf21-af66c8e7ecb2","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"Must be set to `authorization_code`.","key":"grant_type","value":"authorization_code"},{"description":"The authorization code returned from the Get the User’s Permission request.","key":"code","value":""},{"description":"The client_id is the identifier for the app. Find it on the OAuth Applications page.","key":"client_id","value":""},{"description":"The client_secret is the secret of the app. Find it on the OAuth Applications page.","key":"client_secret","value":""},{"description":"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.3/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":"54678b26-a253-4d64-86af-5d9e2ac62f54"}],"id":"37469ce2-9b72-4a9e-b5ea-c1c78b262e8c","_postman_id":"37469ce2-9b72-4a9e-b5ea-c1c78b262e8c","description":""},{"name":"personal-token","item":[{"name":"refresh","item":[{"name":"Refresh personal access token","id":"85945886-f64d-470f-9320-a69260fef650","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/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_token_0b1z}} token</code> in the headers.</p>\n","urlObject":{"path":["oauth","personal-token","refresh"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"c137fc27-06d3-48f5-b6d5-0a2f8046faa7","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/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":"85945886-f64d-470f-9320-a69260fef650"}],"id":"6b4ae4f8-f735-4f39-9e92-acc7d42ec8fd","_postman_id":"6b4ae4f8-f735-4f39-9e92-acc7d42ec8fd","description":""}],"id":"aff5d32d-e170-4dad-91c3-c2ed207eb665","_postman_id":"aff5d32d-e170-4dad-91c3-c2ed207eb665","description":""}],"id":"63974f48-ded1-4a43-b6e6-2e913a1c1bb7","_postman_id":"63974f48-ded1-4a43-b6e6-2e913a1c1bb7","description":""},{"name":"billing","item":[{"name":"auto-recharge","item":[{"name":"Get auto recharge configuration for the authenticated user","id":"384bfe26-5676-4a3d-af9d-ace3e627570b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/billing/auto-recharge","description":"<p>REQUIRED SCOPES <code>['billing:read']</code><br />Get auto recharge configuration for the authenticated user</p>\n","urlObject":{"path":["billing","auto-recharge"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"a3a8c4ee-ec17-4b40-99ae-79b33de0dff8","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/billing/auto-recharge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9264,\n  \"organization_id\": 2254,\n  \"is_active\": false,\n  \"amount\": 5073,\n  \"amount_in_credits\": 7665,\n  \"threshold\": 7023,\n  \"threshold_in_credits\": 1616,\n  \"source\": \"string\",\n  \"backup\": \"string\",\n  \"failure\": 8478,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\"\n}"}],"_postman_id":"384bfe26-5676-4a3d-af9d-ace3e627570b"}],"id":"3bc80572-def7-45d7-be17-478b25d28b41","_postman_id":"3bc80572-def7-45d7-be17-478b25d28b41","description":""}],"id":"d33e0d8b-40f4-4ab5-a714-2a83a6bf7de1","_postman_id":"d33e0d8b-40f4-4ab5-a714-2a83a6bf7de1","description":""},{"name":"broadcasts","item":[{"name":"filters","item":[{"name":"all","item":[{"name":"Get all broadcasts filters","id":"73ed6a0a-7db7-414f-ac48-6c639000a75e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/filters/all","description":"<p>REQUIRED SCOPES <code>['broadcasts:read']</code><br />Get all broadcasts filters</p>\n","urlObject":{"path":["broadcasts","filters","all"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"fd825b4c-fbcb-4711-b8f6-5b9d45368d2e","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.3/broadcasts/filters/all"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"73ed6a0a-7db7-414f-ac48-6c639000a75e"}],"id":"df98e40f-cc22-4d25-91c5-9747b1fc9dda","_postman_id":"df98e40f-cc22-4d25-91c5-9747b1fc9dda","description":""},{"name":"Get all broadcasts filters","id":"d1356296-ba38-41ac-8c35-0a5d03b7aa30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/filters","description":"<p>REQUIRED SCOPES <code>['broadcasts:read']</code><br />Get all broadcasts filters</p>\n","urlObject":{"path":["broadcasts","filters"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"f67759b7-e5fe-4beb-9118-917e1a1f8ad4","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.3/broadcasts/filters"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d1356296-ba38-41ac-8c35-0a5d03b7aa30"}],"id":"4d54ea37-3121-47eb-8e9e-393b299d3dca","_postman_id":"4d54ea37-3121-47eb-8e9e-393b299d3dca","description":""},{"name":"all","item":[{"name":"Get all broadcasts","id":"bb1ba280-1ae5-4a1d-b384-6ba68f41b68c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/all?sortBy=string&sortOrder=string&page=1&search=string&length=10","description":"<p>REQUIRED SCOPES <code>['broadcasts:write']</code><br />Get all broadcasts</p>\n","urlObject":{"path":["broadcasts","all"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Sort by</p>\n","type":"text/plain"},"key":"sortBy","value":"string"},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"sortOrder","value":"string"},{"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":"string"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"length","value":"10"}],"variable":[]}},"response":[{"id":"571ac126-501b-43df-9010-555ba569426f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/all?sortBy=string&sortOrder=string&page=1&search=string&length=10","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","all"],"query":[{"description":"Sort by","key":"sortBy","value":"string"},{"description":"Sort order","key":"sortOrder","value":"string"},{"description":"The page of a collection to return.","key":"page","value":"1"},{"description":"The string to search for..","key":"search","value":"string"},{"description":"The number of items to return per page.","key":"length","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"\",\n  \"\"\n]"}],"_postman_id":"bb1ba280-1ae5-4a1d-b384-6ba68f41b68c"}],"id":"855e6a0b-a84a-4eae-892e-0f90c3465ac3","_postman_id":"855e6a0b-a84a-4eae-892e-0f90c3465ac3","description":""},{"name":"{broadcast}","item":[{"name":"{status}","item":[{"name":"Change status of a broadcast","id":"ec01c17c-00c1-4ca3-ba44-9fc6b9c0b92b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/:broadcast/:status","description":"<p>REQUIRED SCOPES <code>['broadcasts:write']</code><br />Change status of a broadcast</p>\n","urlObject":{"path":["broadcasts",":broadcast",":status"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"f835e282-61a2-485f-ab10-209d7fb4a80b","description":{"content":"<p>ID of the broadcast</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"broadcast"},{"id":"72ea06a1-f33f-4ab6-ada7-050fc985feb2","description":{"content":"<p>New status for the broadcast</p>\n","type":"text/plain"},"type":"any","value":"string","key":"status"}]}},"response":[{"id":"22c3fdff-fc56-4423-8bb5-ccc5f3700e9f","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/:broadcast/:status","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":broadcast",":status"],"variable":[{"key":"broadcast","value":"2491","description":"ID of the broadcast"},{"key":"status","value":"string","description":"New status for the broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1717,\n  \"organization_id\": 731,\n  \"owner_id\": \"string\",\n  \"number_id\": \"string\",\n  \"team_id\": \"string\",\n  \"is_send_now\": \"string\",\n  \"name\": \"string\",\n  \"status\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"send_at\": \"string\",\n  \"contacts\": [\n    {\n      \"id\": 3011,\n      \"owner_id\": 1137,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 933\n        },\n        {\n          \"number_id\": 9465\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 3443,\n          \"number_id\": 9943,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 3585,\n          \"number_id\": 1549,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 8,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4943,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1929,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 8544,\n          \"custom_field_id\": 8717,\n          \"contact_id\": 1418,\n          \"field_key\": \"string\",\n          \"organization_id\": 9389,\n          \"text\": \"string\",\n          \"number\": 6640,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 6834,\n          \"custom_field_id\": 4950,\n          \"contact_id\": 247,\n          \"field_key\": \"string\",\n          \"organization_id\": 4928,\n          \"text\": \"string\",\n          \"number\": 2704,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 8039,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 9750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4531,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 1191,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 2554,\n      \"owner_id\": 496,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 6334\n        },\n        {\n          \"number_id\": 3937\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 20,\n          \"number_id\": 7894,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 8058,\n          \"number_id\": 1793,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 4928,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9986,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 6283,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 1296,\n          \"custom_field_id\": 9635,\n          \"contact_id\": 2709,\n          \"field_key\": \"string\",\n          \"organization_id\": 7063,\n          \"text\": \"string\",\n          \"number\": 6282,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 682,\n          \"custom_field_id\": 968,\n          \"contact_id\": 9909,\n          \"field_key\": \"string\",\n          \"organization_id\": 9582,\n          \"text\": \"string\",\n          \"number\": 8431,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 8482,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 2073,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 1528,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5261,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"8ee52d02-8c2b-4f11-bc03-e7f8a61f567d","name":"Unauthenticated","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.3/broadcasts/:broadcast/:status","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":broadcast",":status"],"variable":[{"key":"broadcast","value":"2491","description":"ID of the broadcast"},{"key":"status","value":"string","description":"New status for the broadcast"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"523e3022-c5b8-49a5-a5ee-91f5a67dcdff","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.3/broadcasts/:broadcast/:status","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":broadcast",":status"],"variable":[{"key":"broadcast","value":"2491","description":"ID of the broadcast"},{"key":"status","value":"string","description":"New status for the broadcast"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"030bb196-e47a-4587-a535-80ee8146edca","name":"Broadcast 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.3/broadcasts/:broadcast/:status","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":broadcast",":status"],"variable":[{"key":"broadcast","value":"2491","description":"ID of the broadcast"},{"key":"status","value":"string","description":"New status for the broadcast"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ad4e1c03-504c-4c41-b3a1-351216487dbc","name":"Validation 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.3/broadcasts/:broadcast/:status","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":broadcast",":status"],"variable":[{"key":"broadcast","value":"2491","description":"ID of the broadcast"},{"key":"status","value":"string","description":"New status for the broadcast"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ec01c17c-00c1-4ca3-ba44-9fc6b9c0b92b"}],"id":"1e9996a9-1636-465c-b04f-866417960615","_postman_id":"1e9996a9-1636-465c-b04f-866417960615","description":""}],"id":"d8499047-1bca-4bbb-97d1-db09b71d8dc3","_postman_id":"d8499047-1bca-4bbb-97d1-db09b71d8dc3","description":""},{"name":"contacts","item":[{"name":"{broadcast}","item":[{"name":"export","item":[{"name":"Export broadcast contacts","id":"5868b26e-9b9e-41cc-a354-0bfef0ad46cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/contacts/:broadcast/export?filter=string","description":"<p>REQUIRED SCOPES <code>['broadcasts:read']</code><br />Export broadcast contacts</p>\n","urlObject":{"path":["broadcasts","contacts",":broadcast","export"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Filter</p>\n","type":"text/plain"},"key":"filter","value":"string"}],"variable":[{"id":"0654534d-e58f-47f4-bddb-a449e5cf8218","description":{"content":"<p>The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"broadcast"}]}},"response":[{"id":"1f4e2beb-ee4b-4641-bad4-989e421a3e0d","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/contacts/:broadcast/export?filter=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","contacts",":broadcast","export"],"query":[{"description":"Filter","key":"filter","value":"string"}],"variable":[{"key":"broadcast","value":"","description":"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":"5868b26e-9b9e-41cc-a354-0bfef0ad46cc"}],"id":"cc409a20-6663-4894-9be1-21559568e06d","_postman_id":"cc409a20-6663-4894-9be1-21559568e06d","description":""},{"name":"Get contacts broadcasts","id":"8371e0bd-42b7-4150-afa9-c003787fe4b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/contacts/:broadcast?filter=string&page=1&length=10","description":"<p>REQUIRED SCOPES <code>['broadcasts:read']</code><br />Get contacts broadcasts</p>\n","urlObject":{"path":["broadcasts","contacts",":broadcast"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Filter</p>\n","type":"text/plain"},"key":"filter","value":"string"},{"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":"ed5ad655-7fd6-428f-b130-553df56a6294","description":{"content":"<p>The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"broadcast"}]}},"response":[{"id":"b64a309c-d873-44a3-b237-c17a3928ecf1","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/contacts/:broadcast?filter=string&page=1&length=10","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","contacts",":broadcast"],"query":[{"description":"Filter","key":"filter","value":"string"},{"description":"The page of a collection to return.","key":"page","value":"1"},{"description":"The number of items to return per page.","key":"length","value":"10"}],"variable":[{"key":"broadcast","value":"","description":"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\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"8371e0bd-42b7-4150-afa9-c003787fe4b0"}],"id":"473d318b-345d-46f0-bde1-8ea64f54f551","_postman_id":"473d318b-345d-46f0-bde1-8ea64f54f551","description":""}],"id":"33dc0d88-909e-4e0b-ad9f-8d4c1b0b4475","_postman_id":"33dc0d88-909e-4e0b-ad9f-8d4c1b0b4475","description":""},{"name":"count-estimated-credits","item":[{"name":"Count Estimated Credits","id":"c92faa0e-30fe-4585-9b11-57dbb9c35060","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"segments_count\": 7135,\n  \"type\": \"string\",\n  \"filtersList\": [\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/count-estimated-credits","description":"<p>REQUIRED SCOPES <code>['broadcasts:write']</code></p>\n","urlObject":{"path":["broadcasts","count-estimated-credits"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"aedb472d-3e9a-42a8-a7a8-9b3e245b3750","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"segments_count\": 7135,\n  \"type\": \"string\",\n  \"filtersList\": [\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"filters\": [\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"0\": [\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"key\": \"string\",\n                  \"operator\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/count-estimated-credits"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 7922\n}"}],"_postman_id":"c92faa0e-30fe-4585-9b11-57dbb9c35060"}],"id":"0ca5e1da-4847-4c23-9491-395f0d33d661","_postman_id":"0ca5e1da-4847-4c23-9491-395f0d33d661","description":""},{"name":"schedule","item":[{"name":"Get broadcast by start and finish date","id":"66f6387a-262e-4f6d-a892-3a998ca3b40d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/schedule?packages=2491&start_date=&schedule=&package_count=2491","description":"<p>REQUIRED SCOPES <code>['broadcasts:read']</code><br />Get broadcast by start and finish date</p>\n","urlObject":{"path":["broadcasts","schedule"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Packages</p>\n","type":"text/plain"},"key":"packages","value":"2491"},{"description":{"content":"<p>Start date</p>\n","type":"text/plain"},"key":"start_date","value":""},{"description":{"content":"<p>Days for the broadcast to run</p>\n","type":"text/plain"},"key":"schedule","value":""},{"description":{"content":"<p>Count of package</p>\n","type":"text/plain"},"key":"package_count","value":"2491"}],"variable":[]}},"response":[{"id":"f00fc6c1-53e7-49e3-a2ac-24bd165de46e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/schedule?packages=2491&start_date=&schedule=&package_count=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","schedule"],"query":[{"description":"Packages","key":"packages","value":"2491"},{"description":"Start date","key":"start_date","value":""},{"description":"Days for the broadcast to run","key":"schedule","value":""},{"description":"Count of package","key":"package_count","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"string\",\n  \"string\"\n]"},{"id":"40cd013d-093b-4d2f-add4-82e618d85867","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.3/broadcasts/schedule?packages=2491&start_date=&schedule=&package_count=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","schedule"],"query":[{"description":"Packages","key":"packages","value":"2491"},{"description":"Start date","key":"start_date","value":""},{"description":"Days for the broadcast to run","key":"schedule","value":""},{"description":"Count of package","key":"package_count","value":"2491"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"66f6387a-262e-4f6d-a892-3a998ca3b40d"}],"id":"81f76112-c479-48c8-bc7a-bb7792bb7ab6","_postman_id":"81f76112-c479-48c8-bc7a-bb7792bb7ab6","description":""},{"name":"{id}","item":[{"name":"Get broadcast","id":"86e8876b-d626-4cce-ae37-d2f292b3cdd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/:id","description":"<p>REQUIRED SCOPES <code>['broadcasts:read']</code><br />Get broadcast</p>\n","urlObject":{"path":["broadcasts",":id"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"416e156e-a1ef-4012-87ca-bc470843fbae","description":{"content":"<p>The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"56110328-93a5-4ad8-9de6-588d46583f52","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/:id","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":id"],"variable":[{"key":"id","value":"","description":"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\": 1717,\n  \"organization_id\": 731,\n  \"owner_id\": \"string\",\n  \"number_id\": \"string\",\n  \"team_id\": \"string\",\n  \"is_send_now\": \"string\",\n  \"name\": \"string\",\n  \"status\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"send_at\": \"string\",\n  \"contacts\": [\n    {\n      \"id\": 3011,\n      \"owner_id\": 1137,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 933\n        },\n        {\n          \"number_id\": 9465\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 3443,\n          \"number_id\": 9943,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 3585,\n          \"number_id\": 1549,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 8,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4943,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1929,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 8544,\n          \"custom_field_id\": 8717,\n          \"contact_id\": 1418,\n          \"field_key\": \"string\",\n          \"organization_id\": 9389,\n          \"text\": \"string\",\n          \"number\": 6640,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 6834,\n          \"custom_field_id\": 4950,\n          \"contact_id\": 247,\n          \"field_key\": \"string\",\n          \"organization_id\": 4928,\n          \"text\": \"string\",\n          \"number\": 2704,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 8039,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 9750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4531,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 1191,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 2554,\n      \"owner_id\": 496,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 6334\n        },\n        {\n          \"number_id\": 3937\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 20,\n          \"number_id\": 7894,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 8058,\n          \"number_id\": 1793,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 4928,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9986,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 6283,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 1296,\n          \"custom_field_id\": 9635,\n          \"contact_id\": 2709,\n          \"field_key\": \"string\",\n          \"organization_id\": 7063,\n          \"text\": \"string\",\n          \"number\": 6282,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 682,\n          \"custom_field_id\": 968,\n          \"contact_id\": 9909,\n          \"field_key\": \"string\",\n          \"organization_id\": 9582,\n          \"text\": \"string\",\n          \"number\": 8431,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 8482,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 2073,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 1528,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5261,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"86e8876b-d626-4cce-ae37-d2f292b3cdd8"},{"name":"Delete broadcast","id":"a9b4cb16-cdc6-4b15-baee-440a7ce07ba1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/:id","description":"<p>REQUIRED SCOPES <code>['broadcasts:write']</code><br />Delete broadcast</p>\n","urlObject":{"path":["broadcasts",":id"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"da937b7e-6620-4a37-b80f-0d97c26a2b27","description":{"content":"<p>The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"006a7886-3126-418a-9fac-f2f71f88ae8f","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/:id","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":id"],"variable":[{"key":"id","value":"","description":"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\": \"string\"\n}"},{"id":"9cc04cbe-0f2b-4f93-bcbf-de69f0d1615a","name":"Error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/:id","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":id"],"variable":[{"key":"id","value":"","description":"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\": \"string\"\n}"}],"_postman_id":"a9b4cb16-cdc6-4b15-baee-440a7ce07ba1"}],"id":"a0fe051d-397e-4756-a0e0-a15a49dcbf6e","_postman_id":"a0fe051d-397e-4756-a0e0-a15a49dcbf6e","description":""},{"name":"failed","item":[{"name":"{broadcastId}","item":[{"name":"Get failed broadcasts","id":"47a0c9dd-5a8f-4d1c-88c2-97d307f717cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/failed/:broadcastId","description":"<p>REQUIRED SCOPES <code>['broadcasts:read']</code><br />Get failed broadcasts</p>\n","urlObject":{"path":["broadcasts","failed",":broadcastId"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"44893a63-4984-4df3-8980-8d163d232ee9","description":{"content":"<p>The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"broadcastId"}]}},"response":[{"id":"646d0480-9a0d-46b2-8799-6cc19f4c6533","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/failed/:broadcastId","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","failed",":broadcastId"],"variable":[{"key":"broadcastId","value":"","description":"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\": 5061\n  },\n  {\n    \"id\": 196\n  }\n]"}],"_postman_id":"47a0c9dd-5a8f-4d1c-88c2-97d307f717cc"}],"id":"60582ec3-9572-4b54-a855-64211cb86c21","_postman_id":"60582ec3-9572-4b54-a855-64211cb86c21","description":""}],"id":"204ea2dd-6341-40e0-8c94-4754002d3218","_postman_id":"204ea2dd-6341-40e0-8c94-4754002d3218","description":""},{"name":"fields","item":[{"name":"Update broadcast fields settings","id":"91c834b1-5d02-4655-8118-6acceeb55f82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"broadcast_fields\": [\n    \"string\",\n    \"string\"\n  ],\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/fields","description":"<p>REQUIRED SCOPES <code>['broadcasts:write']</code><br />Update broadcast fields settings</p>\n","urlObject":{"path":["broadcasts","fields"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"a447bc4a-8aea-4ebd-8638-decc2a5552e3","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"broadcast_fields\": [\n    \"string\",\n    \"string\"\n  ],\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"broadcastFields\": {\n    \"key_0\": true\n  }\n}"},{"id":"bfb209ea-c699-4bee-9365-105c00a61ada","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"broadcast_fields\": [\n    \"string\",\n    \"string\"\n  ],\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/fields"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1dfd9050-fec9-4403-ade9-d3d0279e6605","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"broadcast_fields\": [\n    \"string\",\n    \"string\"\n  ],\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/fields"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"048ae667-ce48-4b45-aade-78ca59db8ef7","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"broadcast_fields\": [\n    \"string\",\n    \"string\"\n  ],\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/fields"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"91c834b1-5d02-4655-8118-6acceeb55f82"}],"id":"a6aa458e-d12c-4181-aabe-1b8f8324ef0e","_postman_id":"a6aa458e-d12c-4181-aabe-1b8f8324ef0e","description":""},{"name":"recurring","item":[{"name":"{templateBroadcast}","item":[{"name":"active","item":[{"name":"Activate recurring template","id":"183ff643-d21b-40f4-9529-a516ca25ffae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/recurring/:templateBroadcast/active","description":"<p>REQUIRED SCOPES <code>['broadcasts-recurring:write']</code><br />Activate recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcast","active"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"a02ceac9-f4ed-4707-875e-fa76f5f0b0b0","description":{"content":"<p>The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"templateBroadcast"}]}},"response":[{"id":"116e3a00-065e-45b5-8eee-524f71f6c631","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.3/broadcasts/recurring/:templateBroadcast/active","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring",":templateBroadcast","active"],"variable":[{"key":"templateBroadcast","value":"","description":"The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"183ff643-d21b-40f4-9529-a516ca25ffae"}],"id":"d84b66cf-9769-4eb1-b378-b5a2f84f9048","_postman_id":"d84b66cf-9769-4eb1-b378-b5a2f84f9048","description":""},{"name":"delete","item":[{"name":"Delete recurring template","id":"069f20d0-13de-4a3b-95a7-6badb833740b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/recurring/:templateBroadcast/delete","description":"<p>REQUIRED SCOPES <code>['broadcasts-recurring:write']</code><br />Delete recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcast","delete"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"d90bcd48-0b7b-482f-b892-08844b1a09b3","description":{"content":"<p>The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"templateBroadcast"}]}},"response":[{"id":"92a3b8fb-b999-43e1-adb8-d2bbdd44298d","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.3/broadcasts/recurring/:templateBroadcast/delete","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring",":templateBroadcast","delete"],"variable":[{"key":"templateBroadcast","value":"","description":"The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"069f20d0-13de-4a3b-95a7-6badb833740b"}],"id":"b636ff42-6d15-4b98-ba17-7d92a8eed1a5","_postman_id":"b636ff42-6d15-4b98-ba17-7d92a8eed1a5","description":""},{"name":"finish","item":[{"name":"Finish recurring template","id":"00cb23da-e9a1-4d0f-acfb-0d76c0770b73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/recurring/:templateBroadcast/finish","description":"<p>REQUIRED SCOPES <code>['broadcasts-recurring:write']</code><br />Finish recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcast","finish"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"d0034184-2173-4f3a-b4da-10bc40c89a87","description":{"content":"<p>The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"templateBroadcast"}]}},"response":[{"id":"f0a586cb-fe70-4a36-9782-305cb1db2b2e","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.3/broadcasts/recurring/:templateBroadcast/finish","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring",":templateBroadcast","finish"],"variable":[{"key":"templateBroadcast","value":"","description":"The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"00cb23da-e9a1-4d0f-acfb-0d76c0770b73"}],"id":"02a25a2f-7189-438e-be56-b35a64fb2b1d","_postman_id":"02a25a2f-7189-438e-be56-b35a64fb2b1d","description":""},{"name":"inactive","item":[{"name":"Inactivate recurring template","id":"38b6466c-8f11-4d0d-a3d4-fc95b03f30c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/recurring/:templateBroadcast/inactive","description":"<p>REQUIRED SCOPES <code>['broadcasts-recurring:write']</code><br />Inactivate recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcast","inactive"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"50b72339-d912-48e1-89ec-af7f2b25f240","description":{"content":"<p>The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"templateBroadcast"}]}},"response":[{"id":"8e4a1d77-37c9-4884-b2f4-dced45da956d","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.3/broadcasts/recurring/:templateBroadcast/inactive","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring",":templateBroadcast","inactive"],"variable":[{"key":"templateBroadcast","value":"","description":"The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"38b6466c-8f11-4d0d-a3d4-fc95b03f30c7"}],"id":"6db3ec80-aa76-48a1-936d-0f08384a76de","_postman_id":"6db3ec80-aa76-48a1-936d-0f08384a76de","description":""},{"name":"rename","item":[{"name":"Rename recurring template","id":"d2f943b8-b726-435e-92f5-9bc0925d3a76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/recurring/:templateBroadcast/rename?name=string","description":"<p>REQUIRED SCOPES <code>['broadcasts-recurring:write']</code><br />Rename recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcast","rename"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Name</p>\n","type":"text/plain"},"key":"name","value":"string"}],"variable":[{"id":"95c0bf3d-22ea-4b4c-a32e-d7490884a9fb","description":{"content":"<p>The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"templateBroadcast"}]}},"response":[{"id":"aa68671b-668d-448c-b0c9-1b5b98d0bccd","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.3/broadcasts/recurring/:templateBroadcast/rename?name=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring",":templateBroadcast","rename"],"query":[{"description":"Name","key":"name","value":"string"}],"variable":[{"key":"templateBroadcast","value":"","description":"The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d2f943b8-b726-435e-92f5-9bc0925d3a76"}],"id":"3b567491-7959-4262-a02f-e97b91dd9f82","_postman_id":"3b567491-7959-4262-a02f-e97b91dd9f82","description":""}],"id":"16733b82-e0c2-41cb-81a4-554276bda24d","_postman_id":"16733b82-e0c2-41cb-81a4-554276bda24d","description":""},{"name":"filters","item":[{"name":"Get all recurring broadcasts filters","id":"06d0149d-13c4-4b47-8d9a-c20b22388509","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/recurring/filters","description":"<p>REQUIRED SCOPES <code>['broadcasts-recurring:read']</code><br />Get all recurring broadcasts filters</p>\n","urlObject":{"path":["broadcasts","recurring","filters"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"627277e3-f176-4c21-a831-57831781b833","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.3/broadcasts/recurring/filters"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"06d0149d-13c4-4b47-8d9a-c20b22388509"}],"id":"f0effc67-f9af-4c5d-8e2e-898d75d371de","_postman_id":"f0effc67-f9af-4c5d-8e2e-898d75d371de","description":""},{"name":"{broadcast}","item":[{"name":"stop-all-future","item":[{"name":"Stop all future recurring broadcasts","id":"4087fe0c-d47f-470b-a181-e348f92210a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/recurring/:broadcast/stop-all-future","description":"<p>REQUIRED SCOPES <code>['broadcasts-recurring:write']</code><br />Stop all future recurring broadcasts</p>\n","urlObject":{"path":["broadcasts","recurring",":broadcast","stop-all-future"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"9316cf9c-24b4-4261-a842-f7a0d2b4a89d","description":{"content":"<p>ID of the broadcast</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"broadcast"}]}},"response":[{"id":"d398d40a-577a-4ad7-96dc-f830fef9e9c3","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/recurring/:broadcast/stop-all-future","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring",":broadcast","stop-all-future"],"variable":[{"key":"broadcast","value":"2491","description":"ID of the broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1717,\n  \"organization_id\": 731,\n  \"owner_id\": \"string\",\n  \"number_id\": \"string\",\n  \"team_id\": \"string\",\n  \"is_send_now\": \"string\",\n  \"name\": \"string\",\n  \"status\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"send_at\": \"string\",\n  \"contacts\": [\n    {\n      \"id\": 3011,\n      \"owner_id\": 1137,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 933\n        },\n        {\n          \"number_id\": 9465\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 3443,\n          \"number_id\": 9943,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 3585,\n          \"number_id\": 1549,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 8,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4943,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1929,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 8544,\n          \"custom_field_id\": 8717,\n          \"contact_id\": 1418,\n          \"field_key\": \"string\",\n          \"organization_id\": 9389,\n          \"text\": \"string\",\n          \"number\": 6640,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 6834,\n          \"custom_field_id\": 4950,\n          \"contact_id\": 247,\n          \"field_key\": \"string\",\n          \"organization_id\": 4928,\n          \"text\": \"string\",\n          \"number\": 2704,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 8039,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 9750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4531,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 1191,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 2554,\n      \"owner_id\": 496,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 6334\n        },\n        {\n          \"number_id\": 3937\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 20,\n          \"number_id\": 7894,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 8058,\n          \"number_id\": 1793,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 4928,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9986,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 6283,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 1296,\n          \"custom_field_id\": 9635,\n          \"contact_id\": 2709,\n          \"field_key\": \"string\",\n          \"organization_id\": 7063,\n          \"text\": \"string\",\n          \"number\": 6282,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 682,\n          \"custom_field_id\": 968,\n          \"contact_id\": 9909,\n          \"field_key\": \"string\",\n          \"organization_id\": 9582,\n          \"text\": \"string\",\n          \"number\": 8431,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 8482,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 2073,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 1528,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5261,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"fbfe5bef-0bef-4b1c-9b6a-52f084932062","name":"Unauthenticated","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.3/broadcasts/recurring/:broadcast/stop-all-future","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring",":broadcast","stop-all-future"],"variable":[{"key":"broadcast","value":"2491","description":"ID of the broadcast"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"569f54f9-cd1f-4ea0-98dc-0cd279007764","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.3/broadcasts/recurring/:broadcast/stop-all-future","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring",":broadcast","stop-all-future"],"variable":[{"key":"broadcast","value":"2491","description":"ID of the broadcast"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"be8565cc-99db-4636-902a-a5e04c2aad00","name":"Broadcast 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.3/broadcasts/recurring/:broadcast/stop-all-future","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring",":broadcast","stop-all-future"],"variable":[{"key":"broadcast","value":"2491","description":"ID of the broadcast"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4087fe0c-d47f-470b-a181-e348f92210a5"}],"id":"2fecd3c0-45be-4955-817c-0d2eab1f4668","_postman_id":"2fecd3c0-45be-4955-817c-0d2eab1f4668","description":""}],"id":"16336fe9-6b9e-4755-a876-9a0992cf3a39","_postman_id":"16336fe9-6b9e-4755-a876-9a0992cf3a39","description":""},{"name":"{templateBroadcastId}","item":[{"name":"details","item":[{"name":"Get broadcasts list related to recurring template","id":"c761754e-9685-4c84-ad9c-815b2b140f93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/recurring/:templateBroadcastId/details?page=1","description":"<p>REQUIRED SCOPES <code>['broadcasts-recurring:read']</code><br />Get broadcasts list related to recurring template</p>\n","urlObject":{"path":["broadcasts","recurring",":templateBroadcastId","details"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The page of a collection to return.</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[{"id":"d39643dc-da33-405c-abfe-aec57eee1c97","description":{"content":"<p>The ID of the Recurring Template Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"templateBroadcastId"}]}},"response":[{"id":"acb11882-53ab-405f-a753-a55510dae4a8","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.3/broadcasts/recurring/:templateBroadcastId/details?page=1","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring",":templateBroadcastId","details"],"query":[{"description":"The page of a collection to return.","key":"page","value":"1"}],"variable":[{"key":"templateBroadcastId","value":"","description":"The ID of the Recurring Template Broadcast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c761754e-9685-4c84-ad9c-815b2b140f93"}],"id":"1feb7ac5-d9dd-4362-a3f0-8bf25562c6f8","_postman_id":"1feb7ac5-d9dd-4362-a3f0-8bf25562c6f8","description":""}],"id":"d40b2990-95ce-40d3-8d2a-abc5d2e08fb5","_postman_id":"d40b2990-95ce-40d3-8d2a-abc5d2e08fb5","description":""},{"name":"Get all recurring templates","id":"d477b562-d4a0-429d-9dd2-78fbb9c7b1cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/recurring?page=1&search=string&length=10","description":"<p>REQUIRED SCOPES <code>['broadcasts-recurring:read']</code><br />Get all recurring templates</p>\n","urlObject":{"path":["broadcasts","recurring"],"host":["https://api.salesmessage.com/pub/v2.3"],"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":"string"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"length","value":"10"}],"variable":[]}},"response":[{"id":"c0986e56-7024-4677-a735-96366953aa77","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.3/broadcasts/recurring?page=1&search=string&length=10","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","recurring"],"query":[{"description":"The page of a collection to return.","key":"page","value":"1"},{"description":"The string to search for..","key":"search","value":"string"},{"description":"The number of items to return per page.","key":"length","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d477b562-d4a0-429d-9dd2-78fbb9c7b1cf"}],"id":"ed414c80-1a94-4883-bcb9-90b7bd5fe9a5","_postman_id":"ed414c80-1a94-4883-bcb9-90b7bd5fe9a5","description":""},{"name":"test","item":[{"name":"Broadcast test","id":"dc506393-e3d2-4816-a314-d04812571929","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/test?number=string&number_id=2491&message=string&media_url[]=string&media_url[]=string","description":"<p>REQUIRED SCOPES <code>['broadcasts:write']</code><br />Broadcast test</p>\n","urlObject":{"path":["broadcasts","test"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Number</p>\n","type":"text/plain"},"key":"number","value":"string"},{"description":{"content":"<p>The ID of the Number</p>\n","type":"text/plain"},"key":"number_id","value":"2491"},{"description":{"content":"<p>Message</p>\n","type":"text/plain"},"key":"message","value":"string"},{"description":{"content":"<p>The url of the media</p>\n","type":"text/plain"},"key":"media_url[]","value":"string"},{"description":{"content":"<p>The url of the media</p>\n","type":"text/plain"},"key":"media_url[]","value":"string"}],"variable":[]}},"response":[{"id":"854161b5-552e-43a5-88a5-8a2df11be3ee","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/test?number=string&number_id=2491&message=string&media_url[]=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts","test"],"query":[{"description":"Number","key":"number","value":"string"},{"description":"The ID of the Number","key":"number_id","value":"2491"},{"description":"Message","key":"message","value":"string"},{"description":"The url of the media","key":"media_url[]","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\",\n  \"message\": \"string\"\n}"}],"_postman_id":"dc506393-e3d2-4816-a314-d04812571929"}],"id":"f934fa30-f75d-42eb-a096-35453c580f4f","_postman_id":"f934fa30-f75d-42eb-a096-35453c580f4f","description":""},{"name":"{broadcastId}","item":[{"name":"Update broadcast","id":"aa1b700e-56ba-43ed-bac3-498e516c845c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": 1,\n  \"number_id\": 1,\n  \"package_count\": 10,\n  \"name\": \"Test Broadcast\",\n  \"message\": \"Broadcast Message\",\n  \"media_url\": [\n    \"https://test.com/test.png\",\n    \"https://test.com/test.png\"\n  ],\n  \"send_at\": \"1981-04-03\",\n  \"is_cloned\": false,\n  \"is_draft\": false,\n  \"is_rvm\": false,\n  \"numbers_check_type\": null,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"string\",\n      \"string\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"restrict_hours\": {\n    \"start\": \"09:00:00\",\n    \"stop\": \"18:00:00\",\n    \"action\": \"continue|skip\"\n  },\n  \"assignee\": {\n    \"type\": \"default|member|contact_owner|unassigned\",\n    \"member_id\": 1\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        3398,\n        7599\n      ],\n      \"contacts\": [\n        1445,\n        5293\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        3067,\n        3924\n      ]\n    }\n  },\n  \"chatbot\": {\n    \"id\": 1\n  },\n  \"enable_quiet_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts/:broadcastId","description":"<p>REQUIRED SCOPES <code>['broadcasts:write']</code><br />Update broadcast</p>\n","urlObject":{"path":["broadcasts",":broadcastId"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"daa163d1-17a2-4305-b48c-bf25ae36446c","description":{"content":"<p>The ID of the Broadcast</p>\n","type":"text/plain"},"type":"any","value":"","key":"broadcastId"}]}},"response":[{"id":"105622aa-44ec-4cfc-8308-558ed0c9c172","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": 1,\n  \"number_id\": 1,\n  \"package_count\": 10,\n  \"name\": \"Test Broadcast\",\n  \"message\": \"Broadcast Message\",\n  \"media_url\": [\n    \"https://test.com/test.png\",\n    \"https://test.com/test.png\"\n  ],\n  \"send_at\": \"1981-04-03\",\n  \"is_cloned\": false,\n  \"is_draft\": false,\n  \"is_rvm\": false,\n  \"numbers_check_type\": null,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"string\",\n      \"string\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"restrict_hours\": {\n    \"start\": \"09:00:00\",\n    \"stop\": \"18:00:00\",\n    \"action\": \"continue|skip\"\n  },\n  \"assignee\": {\n    \"type\": \"default|member|contact_owner|unassigned\",\n    \"member_id\": 1\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        3398,\n        7599\n      ],\n      \"contacts\": [\n        1445,\n        5293\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        3067,\n        3924\n      ]\n    }\n  },\n  \"chatbot\": {\n    \"id\": 1\n  },\n  \"enable_quiet_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/:broadcastId","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":broadcastId"],"variable":[{"key":"broadcastId","value":"","description":"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\": 1717,\n  \"organization_id\": 731,\n  \"owner_id\": \"string\",\n  \"number_id\": \"string\",\n  \"team_id\": \"string\",\n  \"is_send_now\": \"string\",\n  \"name\": \"string\",\n  \"status\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"send_at\": \"string\",\n  \"contacts\": [\n    {\n      \"id\": 3011,\n      \"owner_id\": 1137,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 933\n        },\n        {\n          \"number_id\": 9465\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 3443,\n          \"number_id\": 9943,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 3585,\n          \"number_id\": 1549,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 8,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4943,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1929,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 8544,\n          \"custom_field_id\": 8717,\n          \"contact_id\": 1418,\n          \"field_key\": \"string\",\n          \"organization_id\": 9389,\n          \"text\": \"string\",\n          \"number\": 6640,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 6834,\n          \"custom_field_id\": 4950,\n          \"contact_id\": 247,\n          \"field_key\": \"string\",\n          \"organization_id\": 4928,\n          \"text\": \"string\",\n          \"number\": 2704,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 8039,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 9750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4531,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 1191,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 2554,\n      \"owner_id\": 496,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 6334\n        },\n        {\n          \"number_id\": 3937\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 20,\n          \"number_id\": 7894,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 8058,\n          \"number_id\": 1793,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 4928,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9986,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 6283,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 1296,\n          \"custom_field_id\": 9635,\n          \"contact_id\": 2709,\n          \"field_key\": \"string\",\n          \"organization_id\": 7063,\n          \"text\": \"string\",\n          \"number\": 6282,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 682,\n          \"custom_field_id\": 968,\n          \"contact_id\": 9909,\n          \"field_key\": \"string\",\n          \"organization_id\": 9582,\n          \"text\": \"string\",\n          \"number\": 8431,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 8482,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 2073,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 1528,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5261,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"706e5268-8ef7-4a09-837a-c14758836d6c","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": 1,\n  \"number_id\": 1,\n  \"package_count\": 10,\n  \"name\": \"Test Broadcast\",\n  \"message\": \"Broadcast Message\",\n  \"media_url\": [\n    \"https://test.com/test.png\",\n    \"https://test.com/test.png\"\n  ],\n  \"send_at\": \"1981-04-03\",\n  \"is_cloned\": false,\n  \"is_draft\": false,\n  \"is_rvm\": false,\n  \"numbers_check_type\": null,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"string\",\n      \"string\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"restrict_hours\": {\n    \"start\": \"09:00:00\",\n    \"stop\": \"18:00:00\",\n    \"action\": \"continue|skip\"\n  },\n  \"assignee\": {\n    \"type\": \"default|member|contact_owner|unassigned\",\n    \"member_id\": 1\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        3398,\n        7599\n      ],\n      \"contacts\": [\n        1445,\n        5293\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        3067,\n        3924\n      ]\n    }\n  },\n  \"chatbot\": {\n    \"id\": 1\n  },\n  \"enable_quiet_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/:broadcastId","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":broadcastId"],"variable":[{"key":"broadcastId","value":"","description":"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\": \"string\",\n  \"code\": \"string\"\n}"},{"id":"5bb16dcf-9c93-47b4-bb44-12c7b0f69a7f","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": 1,\n  \"number_id\": 1,\n  \"package_count\": 10,\n  \"name\": \"Test Broadcast\",\n  \"message\": \"Broadcast Message\",\n  \"media_url\": [\n    \"https://test.com/test.png\",\n    \"https://test.com/test.png\"\n  ],\n  \"send_at\": \"1981-04-03\",\n  \"is_cloned\": false,\n  \"is_draft\": false,\n  \"is_rvm\": false,\n  \"numbers_check_type\": null,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"string\",\n      \"string\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"restrict_hours\": {\n    \"start\": \"09:00:00\",\n    \"stop\": \"18:00:00\",\n    \"action\": \"continue|skip\"\n  },\n  \"assignee\": {\n    \"type\": \"default|member|contact_owner|unassigned\",\n    \"member_id\": 1\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        3398,\n        7599\n      ],\n      \"contacts\": [\n        1445,\n        5293\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        3067,\n        3924\n      ]\n    }\n  },\n  \"chatbot\": {\n    \"id\": 1\n  },\n  \"enable_quiet_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts/:broadcastId","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts",":broadcastId"],"variable":[{"key":"broadcastId","value":"","description":"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\": \"string\"\n}"}],"_postman_id":"aa1b700e-56ba-43ed-bac3-498e516c845c"}],"id":"2657ec91-0fec-4a47-bdc8-7ca25423046c","_postman_id":"2657ec91-0fec-4a47-bdc8-7ca25423046c","description":""},{"name":"Get all broadcasts","id":"1180bcda-8f4d-4b57-bfa7-068f36c05734","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/broadcasts?sortBy=string&sortOrder=string&page=1&search=string&length=10","description":"<p>REQUIRED SCOPES <code>['broadcasts:read']</code><br />Get all broadcasts</p>\n","urlObject":{"path":["broadcasts"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Sort by</p>\n","type":"text/plain"},"key":"sortBy","value":"string"},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"sortOrder","value":"string"},{"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":"string"},{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"length","value":"10"}],"variable":[]}},"response":[{"id":"75c6b765-e2a6-440c-89a5-f8c06c4c1fac","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/broadcasts?sortBy=string&sortOrder=string&page=1&search=string&length=10","host":["https://api.salesmessage.com/pub/v2.3"],"path":["broadcasts"],"query":[{"description":"Sort by","key":"sortBy","value":"string"},{"description":"Sort order","key":"sortOrder","value":"string"},{"description":"The page of a collection to return.","key":"page","value":"1"},{"description":"The string to search for..","key":"search","value":"string"},{"description":"The number of items to return per page.","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\": 9231,\n    \"organization_id\": 9685,\n    \"owner_id\": \"string\",\n    \"number_id\": \"string\",\n    \"team_id\": \"string\",\n    \"is_send_now\": \"string\",\n    \"name\": \"string\",\n    \"status\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"sent_at\": \"string\",\n    \"send_at\": \"string\",\n    \"contacts\": [\n      {\n        \"id\": 9503,\n        \"owner_id\": 767,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 913\n          },\n          {\n            \"number_id\": 4625\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 533,\n            \"number_id\": 4176,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 4310,\n            \"number_id\": 4410,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 1542,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": 972,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 3985,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 7404,\n            \"custom_field_id\": 381,\n            \"contact_id\": 5892,\n            \"field_key\": \"string\",\n            \"organization_id\": 1524,\n            \"text\": \"string\",\n            \"number\": 7753,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 7696,\n            \"custom_field_id\": 9844,\n            \"contact_id\": 5089,\n            \"field_key\": \"string\",\n            \"organization_id\": 9872,\n            \"text\": \"string\",\n            \"number\": 5880,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 1691,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 3902,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 1525,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 7378,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 3438,\n        \"owner_id\": 6380,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 5563\n          },\n          {\n            \"number_id\": 304\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 1831,\n            \"number_id\": 3029,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 5436,\n            \"number_id\": 954,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 5606,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 1533,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 8762,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 4762,\n            \"custom_field_id\": 7676,\n            \"contact_id\": 707,\n            \"field_key\": \"string\",\n            \"organization_id\": 1148,\n            \"text\": \"string\",\n            \"number\": 794,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 8138,\n            \"custom_field_id\": 7047,\n            \"contact_id\": 638,\n            \"field_key\": \"string\",\n            \"organization_id\": 7430,\n            \"text\": \"string\",\n            \"number\": 6187,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 2857,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 4327,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 558,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 104,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"id\": 9089,\n    \"organization_id\": 7585,\n    \"owner_id\": \"string\",\n    \"number_id\": \"string\",\n    \"team_id\": \"string\",\n    \"is_send_now\": \"string\",\n    \"name\": \"string\",\n    \"status\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"sent_at\": \"string\",\n    \"send_at\": \"string\",\n    \"contacts\": [\n      {\n        \"id\": 9607,\n        \"owner_id\": 515,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": true,\n        \"opt_out\": true,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 3048\n          },\n          {\n            \"number_id\": 584\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 1221,\n            \"number_id\": 9300,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 2309,\n            \"number_id\": 9818,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 3657,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": 7040,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 2670,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 3945,\n            \"custom_field_id\": 5995,\n            \"contact_id\": 9007,\n            \"field_key\": \"string\",\n            \"organization_id\": 4037,\n            \"text\": \"string\",\n            \"number\": 8035,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 6683,\n            \"custom_field_id\": 5909,\n            \"contact_id\": 8203,\n            \"field_key\": \"string\",\n            \"organization_id\": 8505,\n            \"text\": \"string\",\n            \"number\": 8632,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 3230,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 7350,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 563,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 7642,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 1329,\n        \"owner_id\": 1748,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 6300\n          },\n          {\n            \"number_id\": 4113\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 5654,\n            \"number_id\": 8746,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 3597,\n            \"number_id\": 1812,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 4471,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 1521,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 3670,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 8084,\n            \"custom_field_id\": 6323,\n            \"contact_id\": 2801,\n            \"field_key\": \"string\",\n            \"organization_id\": 5581,\n            \"text\": \"string\",\n            \"number\": 6581,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 3499,\n            \"custom_field_id\": 5001,\n            \"contact_id\": 3615,\n            \"field_key\": \"string\",\n            \"organization_id\": 903,\n            \"text\": \"string\",\n            \"number\": 4684,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 9728,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 8074,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 4002,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 308,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      }\n    ]\n  }\n]"}],"_postman_id":"1180bcda-8f4d-4b57-bfa7-068f36c05734"},{"name":"Create broadcast","id":"4a2890f8-e004-40a4-8058-ffb0741b6f9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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\": \"1985-04-11\",\n  \"is_draft\": false,\n  \"numbers_check_type\": null,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"string\",\n      \"string\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"restrict_hours\": {\n    \"start\": \"09:00:00\",\n    \"stop\": \"18:00:00\",\n    \"action\": \"continue|skip\"\n  },\n  \"assignee\": {\n    \"type\": \"default|member|contact_owner|unassigned\",\n    \"member_id\": 1\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        8301,\n        5134\n      ],\n      \"contacts\": [\n        1614,\n        3291\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        4623,\n        5986\n      ]\n    }\n  },\n  \"chatbot\": {\n    \"id\": 1\n  },\n  \"enable_quiet_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts","description":"<p>REQUIRED SCOPES <code>['broadcasts:write']</code><br />Create broadcast</p>\n","urlObject":{"path":["broadcasts"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"c414cd8a-994f-452b-b30b-33db70015ed0","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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\": \"1985-04-11\",\n  \"is_draft\": false,\n  \"numbers_check_type\": null,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"string\",\n      \"string\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"restrict_hours\": {\n    \"start\": \"09:00:00\",\n    \"stop\": \"18:00:00\",\n    \"action\": \"continue|skip\"\n  },\n  \"assignee\": {\n    \"type\": \"default|member|contact_owner|unassigned\",\n    \"member_id\": 1\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        8301,\n        5134\n      ],\n      \"contacts\": [\n        1614,\n        3291\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        4623,\n        5986\n      ]\n    }\n  },\n  \"chatbot\": {\n    \"id\": 1\n  },\n  \"enable_quiet_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1717,\n  \"organization_id\": 731,\n  \"owner_id\": \"string\",\n  \"number_id\": \"string\",\n  \"team_id\": \"string\",\n  \"is_send_now\": \"string\",\n  \"name\": \"string\",\n  \"status\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"send_at\": \"string\",\n  \"contacts\": [\n    {\n      \"id\": 3011,\n      \"owner_id\": 1137,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 933\n        },\n        {\n          \"number_id\": 9465\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 3443,\n          \"number_id\": 9943,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 3585,\n          \"number_id\": 1549,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 8,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4943,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1929,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 8544,\n          \"custom_field_id\": 8717,\n          \"contact_id\": 1418,\n          \"field_key\": \"string\",\n          \"organization_id\": 9389,\n          \"text\": \"string\",\n          \"number\": 6640,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 6834,\n          \"custom_field_id\": 4950,\n          \"contact_id\": 247,\n          \"field_key\": \"string\",\n          \"organization_id\": 4928,\n          \"text\": \"string\",\n          \"number\": 2704,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 8039,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 9750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 4531,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 1191,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 2554,\n      \"owner_id\": 496,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 6334\n        },\n        {\n          \"number_id\": 3937\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 20,\n          \"number_id\": 7894,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 8058,\n          \"number_id\": 1793,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 4928,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9986,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 6283,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 1296,\n          \"custom_field_id\": 9635,\n          \"contact_id\": 2709,\n          \"field_key\": \"string\",\n          \"organization_id\": 7063,\n          \"text\": \"string\",\n          \"number\": 6282,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 682,\n          \"custom_field_id\": 968,\n          \"contact_id\": 9909,\n          \"field_key\": \"string\",\n          \"organization_id\": 9582,\n          \"text\": \"string\",\n          \"number\": 8431,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 8482,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 2073,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 1528,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5261,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"2c410eaa-9aba-46b9-ac48-298f9afa651c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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\": \"1985-04-11\",\n  \"is_draft\": false,\n  \"numbers_check_type\": null,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"string\",\n      \"string\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"restrict_hours\": {\n    \"start\": \"09:00:00\",\n    \"stop\": \"18:00:00\",\n    \"action\": \"continue|skip\"\n  },\n  \"assignee\": {\n    \"type\": \"default|member|contact_owner|unassigned\",\n    \"member_id\": 1\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        8301,\n        5134\n      ],\n      \"contacts\": [\n        1614,\n        3291\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        4623,\n        5986\n      ]\n    }\n  },\n  \"chatbot\": {\n    \"id\": 1\n  },\n  \"enable_quiet_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\",\n  \"code\": \"string\",\n  \"amount\": \"string\"\n}"},{"id":"3605daab-1a0f-4cdf-baed-ed3136dcf8b6","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"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\": \"1985-04-11\",\n  \"is_draft\": false,\n  \"numbers_check_type\": null,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"string\",\n      \"string\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"restrict_hours\": {\n    \"start\": \"09:00:00\",\n    \"stop\": \"18:00:00\",\n    \"action\": \"continue|skip\"\n  },\n  \"assignee\": {\n    \"type\": \"default|member|contact_owner|unassigned\",\n    \"member_id\": 1\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        8301,\n        5134\n      ],\n      \"contacts\": [\n        1614,\n        3291\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        4623,\n        5986\n      ]\n    }\n  },\n  \"chatbot\": {\n    \"id\": 1\n  },\n  \"enable_quiet_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/broadcasts"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"40f27ce1-949c-4708-9de8-623db88ba32b","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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\": \"1985-04-11\",\n  \"is_draft\": false,\n  \"numbers_check_type\": null,\n  \"send_now\": true,\n  \"timezone\": \"America/New_York\",\n  \"schedule\": {\n    \"days\": [\n      \"string\",\n      \"string\"\n    ],\n    \"time\": \"09:00:00\"\n  },\n  \"restrict_hours\": {\n    \"start\": \"09:00:00\",\n    \"stop\": \"18:00:00\",\n    \"action\": \"continue|skip\"\n  },\n  \"assignee\": {\n    \"type\": \"default|member|contact_owner|unassigned\",\n    \"member_id\": 1\n  },\n  \"filters\": {\n    \"filtersListGroups\": {\n      \"tags\": [\n        8301,\n        5134\n      ],\n      \"contacts\": [\n        1614,\n        3291\n      ],\n      \"segments\": [\n        3,\n        3\n      ],\n      \"advanced\": [\n        4623,\n        5986\n      ]\n    }\n  },\n  \"chatbot\": {\n    \"id\": 1\n  },\n  \"enable_quiet_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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\": \"string\",\n  \"code\": \"string\",\n  \"amount\": \"string\"\n}"}],"_postman_id":"4a2890f8-e004-40a4-8058-ffb0741b6f9b"}],"id":"e57b144c-961f-434f-b963-8ddf2fbc59b7","_postman_id":"e57b144c-961f-434f-b963-8ddf2fbc59b7","description":""},{"name":"canned-messages","item":[{"name":"{cannedMessage}","item":[{"name":"favorite","item":[{"name":"Toggle favorite","id":"f1d396bb-e004-4510-897b-7883a588f700","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"favorite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/canned-messages/:cannedMessage/favorite","description":"<p>REQUIRED SCOPES <code>['saved-replies:write']</code><br />You can use this API endpoint to toggle favorite for reply.</p>\n","urlObject":{"path":["canned-messages",":cannedMessage","favorite"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"77242b5e-e875-47ee-89e0-0a4223bd6e30","description":{"content":"<p>Canned Message ID</p>\n","type":"text/plain"},"type":"any","value":"1","key":"cannedMessage"}]}},"response":[{"id":"e5d7f4aa-6682-4990-9f3f-506e40cfe21b","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"favorite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/canned-messages/:cannedMessage/favorite","host":["https://api.salesmessage.com/pub/v2.3"],"path":["canned-messages",":cannedMessage","favorite"],"variable":[{"key":"cannedMessage","value":"1","description":"Canned Message ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9418,\n  \"owner_id\": 4407,\n  \"organization_id\": 1715,\n  \"integration_id\": 7675,\n  \"public\": false,\n  \"title\": \"string\",\n  \"message\": \"string\",\n  \"shortcut\": \"string\",\n  \"media_url\": [\n    {\n      \"url\": \"string\",\n      \"content_type\": \"string\"\n    },\n    {\n      \"url\": \"string\",\n      \"content_type\": \"string\"\n    }\n  ]\n}"},{"id":"727d7cfb-b8bf-41d3-a26a-db45cdb7ed5e","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"favorite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/canned-messages/:cannedMessage/favorite","host":["https://api.salesmessage.com/pub/v2.3"],"path":["canned-messages",":cannedMessage","favorite"],"variable":[{"key":"cannedMessage","value":"1","description":"Canned Message ID"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"f1d396bb-e004-4510-897b-7883a588f700"}],"id":"a94ab511-30fa-4f6a-b7d7-4767f081f66a","_postman_id":"a94ab511-30fa-4f6a-b7d7-4767f081f66a","description":""},{"name":"Get saved reply","id":"0f4e8135-8416-4687-92fe-2f14cfe35d25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/canned-messages/:cannedMessage","description":"<p>REQUIRED SCOPES <code>['saved-replies:read']</code><br />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.3"],"query":[],"variable":[{"id":"b6b361e6-c4f1-4e16-a72c-fb9c88a166bb","description":{"content":"<p>Canned message id</p>\n","type":"text/plain"},"type":"any","value":"","key":"cannedMessage"}]}},"response":[{"id":"76bff3e4-cf6f-40c3-a878-c64e23395bc0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/canned-messages/:cannedMessage","host":["https://api.salesmessage.com/pub/v2.3"],"path":["canned-messages",":cannedMessage"],"variable":[{"key":"cannedMessage","value":"","description":"Canned message id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9418,\n  \"owner_id\": 4407,\n  \"organization_id\": 1715,\n  \"integration_id\": 7675,\n  \"public\": false,\n  \"title\": \"string\",\n  \"message\": \"string\",\n  \"shortcut\": \"string\",\n  \"media_url\": [\n    {\n      \"url\": \"string\",\n      \"content_type\": \"string\"\n    },\n    {\n      \"url\": \"string\",\n      \"content_type\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"0f4e8135-8416-4687-92fe-2f14cfe35d25"},{"name":"Update saved reply","id":"f9d90b3d-fd73-4d7f-a179-27e5e88be5fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/canned-messages/:cannedMessage?title=&message=&public=true&integration_id=&media_url=&contact_id=","description":"<p>REQUIRED SCOPES <code>['saved-replies:write']</code><br />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.3"],"query":[{"description":{"content":"<p>Title</p>\n","type":"text/plain"},"key":"title","value":""},{"description":{"content":"<p>Message</p>\n","type":"text/plain"},"key":"message","value":""},{"description":{"content":"<p>Public</p>\n","type":"text/plain"},"key":"public","value":"true"},{"description":{"content":"<p>Integration id</p>\n","type":"text/plain"},"key":"integration_id","value":""},{"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":""}],"variable":[{"id":"978f68ae-972d-4482-81c7-5bed03017535","description":{"content":"<p>Canned message id</p>\n","type":"text/plain"},"type":"any","value":"","key":"cannedMessage"}]}},"response":[{"id":"a53e7a9f-7173-4d34-a308-6aaf65bc7122","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/canned-messages/:cannedMessage?title=&message=&public=true&integration_id=&media_url=&contact_id=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["canned-messages",":cannedMessage"],"query":[{"description":"Title","key":"title","value":""},{"description":"Message","key":"message","value":""},{"description":"Public","key":"public","value":"true"},{"description":"Integration id","key":"integration_id","value":""},{"description":"Media url","key":"media_url","value":""},{"description":"Contact id","key":"contact_id","value":""}],"variable":[{"key":"cannedMessage","value":"","description":"Canned message id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9418,\n  \"owner_id\": 4407,\n  \"organization_id\": 1715,\n  \"integration_id\": 7675,\n  \"public\": false,\n  \"title\": \"string\",\n  \"message\": \"string\",\n  \"shortcut\": \"string\",\n  \"media_url\": [\n    {\n      \"url\": \"string\",\n      \"content_type\": \"string\"\n    },\n    {\n      \"url\": \"string\",\n      \"content_type\": \"string\"\n    }\n  ]\n}"},{"id":"87c6714b-ba90-4494-8f9f-29beb05d36cf","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/canned-messages/:cannedMessage?title=&message=&public=true&integration_id=&media_url=&contact_id=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["canned-messages",":cannedMessage"],"query":[{"description":"Title","key":"title","value":""},{"description":"Message","key":"message","value":""},{"description":"Public","key":"public","value":"true"},{"description":"Integration id","key":"integration_id","value":""},{"description":"Media url","key":"media_url","value":""},{"description":"Contact id","key":"contact_id","value":""}],"variable":[{"key":"cannedMessage","value":"","description":"Canned message id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"f9d90b3d-fd73-4d7f-a179-27e5e88be5fb"},{"name":"Delete saved reply","id":"0aa528b7-03d5-4dbb-b19c-d7a93047de10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/canned-messages/:cannedMessage","description":"<p>REQUIRED SCOPES <code>['saved-replies:write']</code><br />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.3"],"query":[],"variable":[{"id":"de64dcb6-5c8f-4afc-82ba-4bcf8360c199","description":{"content":"<p>Canned message id</p>\n","type":"text/plain"},"type":"any","value":"","key":"cannedMessage"}]}},"response":[{"id":"27d33d6a-4ef6-4394-bfd5-af9593c01410","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/canned-messages/:cannedMessage","host":["https://api.salesmessage.com/pub/v2.3"],"path":["canned-messages",":cannedMessage"],"variable":[{"key":"cannedMessage","value":"","description":"Canned message id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"0aa528b7-03d5-4dbb-b19c-d7a93047de10"}],"id":"077b8ef7-f56f-452a-a830-a91d36398918","_postman_id":"077b8ef7-f56f-452a-a830-a91d36398918","description":""},{"name":"search","item":[{"name":"Search for saved replies","id":"89836e0a-57e3-47b4-9b0b-f42feb39a888","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/canned-messages/search?integration_id=&search=&length=&page=&contact_id=","description":"<p>REQUIRED SCOPES <code>['saved-replies:read']</code><br />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.3"],"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":"c48a2538-2aec-4c06-8f6e-ffe9268ed6dd","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/canned-messages/search?integration_id=&search=&length=&page=&contact_id=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["canned-messages","search"],"query":[{"description":"Integration id","key":"integration_id","value":""},{"description":"Filter by title, message","key":"search","value":""},{"description":"Results per page","key":"length","value":""},{"description":"Page","key":"page","value":""},{"description":"Contact id","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\": 1422,\n    \"owner_id\": 8185,\n    \"organization_id\": 4522,\n    \"integration_id\": 4548,\n    \"public\": true,\n    \"title\": \"string\",\n    \"message\": \"string\",\n    \"shortcut\": \"string\",\n    \"media_url\": [\n      {\n        \"url\": \"string\",\n        \"content_type\": \"string\"\n      },\n      {\n        \"url\": \"string\",\n        \"content_type\": \"string\"\n      }\n    ]\n  }\n}"}],"_postman_id":"89836e0a-57e3-47b4-9b0b-f42feb39a888"}],"id":"dcfa53e1-d154-4e5c-b892-fae0012c3e1e","_postman_id":"dcfa53e1-d154-4e5c-b892-fae0012c3e1e","description":""},{"name":"Get user saved replies","id":"2759f422-73d6-43ba-8f98-3a31c28af811","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/canned-messages?integration_id=&search=&length=&page=&contact_id=","description":"<p>REQUIRED SCOPES <code>['saved-replies:read']</code><br />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.3"],"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":"bcd3211a-31d6-4e7a-b9a3-8ade730d4aa0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/canned-messages?integration_id=&search=&length=&page=&contact_id=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["canned-messages"],"query":[{"description":"Integration id","key":"integration_id","value":""},{"description":"Filter by title, message","key":"search","value":""},{"description":"Results per page","key":"length","value":""},{"description":"Page","key":"page","value":""},{"description":"Contact id","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\": 5336,\n    \"owner_id\": 2674,\n    \"organization_id\": 5767,\n    \"integration_id\": 3020,\n    \"public\": false,\n    \"title\": \"string\",\n    \"message\": \"string\",\n    \"shortcut\": \"string\",\n    \"media_url\": [\n      {\n        \"url\": \"string\",\n        \"content_type\": \"string\"\n      },\n      {\n        \"url\": \"string\",\n        \"content_type\": \"string\"\n      }\n    ]\n  },\n  {\n    \"id\": 8648,\n    \"owner_id\": 9393,\n    \"organization_id\": 4762,\n    \"integration_id\": 1628,\n    \"public\": false,\n    \"title\": \"string\",\n    \"message\": \"string\",\n    \"shortcut\": \"string\",\n    \"media_url\": [\n      {\n        \"url\": \"string\",\n        \"content_type\": \"string\"\n      },\n      {\n        \"url\": \"string\",\n        \"content_type\": \"string\"\n      }\n    ]\n  }\n]"}],"_postman_id":"2759f422-73d6-43ba-8f98-3a31c28af811"},{"name":"Create saved reply","id":"94f19ab5-9ada-486a-b44e-cdc6a9e8d7d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/canned-messages?title=&message=&public=true&integration_id=&media_url=&contact_id=","description":"<p>REQUIRED SCOPES <code>['saved-replies:write']</code><br />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.3"],"query":[{"description":{"content":"<p>Title</p>\n","type":"text/plain"},"key":"title","value":""},{"description":{"content":"<p>Message</p>\n","type":"text/plain"},"key":"message","value":""},{"description":{"content":"<p>Public</p>\n","type":"text/plain"},"key":"public","value":"true"},{"description":{"content":"<p>Interation id</p>\n","type":"text/plain"},"key":"integration_id","value":""},{"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":""}],"variable":[]}},"response":[{"id":"8946b204-61ec-40ac-8c31-270c24ba768e","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/canned-messages?title=&message=&public=true&integration_id=&media_url=&contact_id=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["canned-messages"],"query":[{"description":"Title","key":"title","value":""},{"description":"Message","key":"message","value":""},{"description":"Public","key":"public","value":"true"},{"description":"Interation id","key":"integration_id","value":""},{"description":"Url for media","key":"media_url","value":""},{"description":"Contact id","key":"contact_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9418,\n  \"owner_id\": 4407,\n  \"organization_id\": 1715,\n  \"integration_id\": 7675,\n  \"public\": false,\n  \"title\": \"string\",\n  \"message\": \"string\",\n  \"shortcut\": \"string\",\n  \"media_url\": [\n    {\n      \"url\": \"string\",\n      \"content_type\": \"string\"\n    },\n    {\n      \"url\": \"string\",\n      \"content_type\": \"string\"\n    }\n  ]\n}"},{"id":"fdd8e201-1555-48ce-97b5-e8a0a2a4f736","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/canned-messages?title=&message=&public=true&integration_id=&media_url=&contact_id=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["canned-messages"],"query":[{"description":"Title","key":"title","value":""},{"description":"Message","key":"message","value":""},{"description":"Public","key":"public","value":"true"},{"description":"Interation id","key":"integration_id","value":""},{"description":"Url for media","key":"media_url","value":""},{"description":"Contact id","key":"contact_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"94f19ab5-9ada-486a-b44e-cdc6a9e8d7d6"}],"id":"60c62abd-b616-4b4d-8130-2361a049ca77","_postman_id":"60c62abd-b616-4b4d-8130-2361a049ca77","description":""},{"name":"compliance","item":[{"name":"toll-free","item":[{"name":"{profile}","item":[{"name":"resubmit","item":[{"name":"Resubmit Toll Free verification","id":"4e238f78-4843-49e0-a7b7-188c9de4978a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number_id\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/compliance/toll-free/:profile/resubmit","description":"<p>REQUIRED SCOPES <code>['toll-free:write']</code><br />Resubmit verification for a Toll Free number profile</p>\n","urlObject":{"path":["compliance","toll-free",":profile","resubmit"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"e2527e50-f64c-4384-86d4-2134be5a5a9d","description":{"content":"<p>ID of the toll-free profile</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"profile"}]}},"response":[{"id":"05a18ef8-1304-4559-b136-c867ac639bf4","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number_id\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/compliance/toll-free/:profile/resubmit","host":["https://api.salesmessage.com/pub/v2.3"],"path":["compliance","toll-free",":profile","resubmit"],"variable":[{"key":"profile","value":"2491","description":"ID of the toll-free profile"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"ok\": \"ok\"\n}"},{"id":"ae16655f-e180-471d-8f14-5acc7b8f684c","name":"Bad request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number_id\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/compliance/toll-free/:profile/resubmit","host":["https://api.salesmessage.com/pub/v2.3"],"path":["compliance","toll-free",":profile","resubmit"],"variable":[{"key":"profile","value":"2491","description":"ID of the toll-free profile"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Failed to Re-submit Toll Free Verification\"\n}"}],"_postman_id":"4e238f78-4843-49e0-a7b7-188c9de4978a"}],"id":"41c82bfa-95c8-45f8-81b5-7c13ae965f1b","_postman_id":"41c82bfa-95c8-45f8-81b5-7c13ae965f1b","description":""}],"id":"48a87812-0e8d-4202-9ed4-bcdcde7d6dc5","_postman_id":"48a87812-0e8d-4202-9ed4-bcdcde7d6dc5","description":""}],"id":"836bd0b9-362d-4669-9f14-4eff8ae32f4f","_postman_id":"836bd0b9-362d-4669-9f14-4eff8ae32f4f","description":""}],"id":"d9f25e84-5e27-4354-80b5-1e0599da07d9","_postman_id":"d9f25e84-5e27-4354-80b5-1e0599da07d9","description":""},{"name":"conversations","item":[{"name":"{conversation}","item":[{"name":"close","item":[{"name":"Close conversation","id":"2243e0a6-d03e-4358-9b5a-0f66cd072fc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/close","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> 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.3"],"query":[],"variable":[{"id":"db00a3e2-0309-426e-88ca-b176914b4fed","description":{"content":"<p>Conversation id</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"conversation"}]}},"response":[{"id":"5d96f0af-692c-4bf3-8ca1-b19d9b420670","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/close","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","close"],"variable":[{"key":"conversation","value":"2491","description":"Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9437,\n  \"inbox_id\": 273,\n  \"contact_id\": 7582,\n  \"user_id\": 3404,\n  \"last_message_at\": \"string\",\n  \"last_manual_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"string\",\n  \"tagging_last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"owner\": {\n    \"id\": 4429,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 6496,\n    \"organization_id\": 302,\n    \"photo_url\": \"string\",\n    \"unread\": 5483,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 7228,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1752,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"number_id\": 5481,\n  \"number\": {\n    \"id\": 8893,\n    \"organization_id\": 5963,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 2353,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7516,\n    \"is_landline\": 7245,\n    \"is_toll_free\": false,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 8353,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 4563\n    },\n    \"landline\": {\n      \"id\": 8443,\n      \"number_id\": 1562,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2209,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 148,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 8960,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 318,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 5569,\n      \"number_id\": 966,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9658,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 6120,\n      \"organization_id\": 1238,\n      \"owner_id\": 3615,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"last_assigned_user_id\": 4713,\n      \"default_assigned_user_id\": 2080\n    }\n  },\n  \"allow_call\": false,\n  \"name\": \"string\",\n  \"group_name\": \"string\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 2837,\n      \"owner_id\": 3685,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9153\n        },\n        {\n          \"number_id\": 159\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2362,\n          \"number_id\": 3420,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 4895,\n          \"number_id\": 6254,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 2181,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 646,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8186,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6059,\n          \"custom_field_id\": 7308,\n          \"contact_id\": 4919,\n          \"field_key\": \"string\",\n          \"organization_id\": 9117,\n          \"text\": \"string\",\n          \"number\": 2185,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5732,\n          \"custom_field_id\": 7689,\n          \"contact_id\": 2502,\n          \"field_key\": \"string\",\n          \"organization_id\": 819,\n          \"text\": \"string\",\n          \"number\": 5702,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 5750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 958,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 706,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 8271,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 7628,\n      \"owner_id\": 4645,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 8265\n        },\n        {\n          \"number_id\": 5255\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5838,\n          \"number_id\": 5883,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 7877,\n          \"number_id\": 7240,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 5695,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4347,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1073,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 4134,\n          \"custom_field_id\": 2889,\n          \"contact_id\": 3268,\n          \"field_key\": \"string\",\n          \"organization_id\": 1578,\n          \"text\": \"string\",\n          \"number\": 6593,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9152,\n          \"custom_field_id\": 8265,\n          \"contact_id\": 527,\n          \"field_key\": \"string\",\n          \"organization_id\": 1622,\n          \"text\": \"string\",\n          \"number\": 20,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 376,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 3064,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3371,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3560,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 7083,\n      \"conversation_id\": 2091,\n      \"organization_id\": 1694,\n      \"changer_user\": [\n        {\n          \"user_id\": 3046,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 6426,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4621,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 3718,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 6776,\n      \"conversation_id\": 792,\n      \"organization_id\": 9091,\n      \"changer_user\": [\n        {\n          \"user_id\": 8037,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 2591,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4165,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 4025,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"2243e0a6-d03e-4358-9b5a-0f66cd072fc1"}],"id":"47125024-be9b-4131-823e-87bad43bb320","_postman_id":"47125024-be9b-4131-823e-87bad43bb320","description":""},{"name":"export","item":[{"name":"Export conversation messages","id":"8898f4a2-4e2c-4a35-9cae-016f44d2b8e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/export?format=csv&include_notes=true","description":"<p>REQUIRED SCOPES <code>['conversations:read']</code></p>\n","urlObject":{"path":["conversations",":conversation","export"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Export format</p>\n","type":"text/plain"},"key":"format","value":"csv"},{"description":{"content":"<p>Whether to include notes in the export</p>\n","type":"text/plain"},"key":"include_notes","value":"true"}],"variable":[{"id":"ef9f4fca-8c65-4956-ba43-24cb75e572d5","description":{"content":"<p>ID of the conversation to export</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"conversation"}]}},"response":[{"id":"73ff0bb8-af4b-4777-9585-385104b7e843","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/export?format=csv&include_notes=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","export"],"query":[{"description":"Export format","key":"format","value":"csv"},{"description":"Whether to include notes in the export","key":"include_notes","value":"true"}],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation to export"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"url\": \"string\"\n}"},{"id":"eb1bd5e6-f877-4cc9-9453-8a6bd2a2ca6b","name":"Unauthenticated","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.3/conversations/:conversation/export?format=csv&include_notes=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","export"],"query":[{"description":"Export format","key":"format","value":"csv"},{"description":"Whether to include notes in the export","key":"include_notes","value":"true"}],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation to export"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"21710c73-e23d-47e9-aa53-94b19251003f","name":"Forbidden","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.3/conversations/:conversation/export?format=csv&include_notes=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","export"],"query":[{"description":"Export format","key":"format","value":"csv"},{"description":"Whether to include notes in the export","key":"include_notes","value":"true"}],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation to export"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"20bd7e6b-ceb6-4ecc-88b7-a29a355abcf1","name":"Conversation 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.3/conversations/:conversation/export?format=csv&include_notes=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","export"],"query":[{"description":"Export format","key":"format","value":"csv"},{"description":"Whether to include notes in the export","key":"include_notes","value":"true"}],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation to export"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"07302e09-a99d-4c10-a528-3645221ba4f7","name":"Validation 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.3/conversations/:conversation/export?format=csv&include_notes=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","export"],"query":[{"description":"Export format","key":"format","value":"csv"},{"description":"Whether to include notes in the export","key":"include_notes","value":"true"}],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation to export"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8898f4a2-4e2c-4a35-9cae-016f44d2b8e3"}],"id":"b9701da9-deb3-4ba1-b393-4e2aab3a2380","_postman_id":"b9701da9-deb3-4ba1-b393-4e2aab3a2380","description":""},{"name":"need_response","item":[{"name":"Mark/unmark conversation as Needs Response","id":"79de8397-3e00-4390-b177-5f6e1d60aba0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"need_response\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/need_response","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> This endpoint changes the status of Needs Response in a given conversation.</p>\n","urlObject":{"path":["conversations",":conversation","need_response"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"21184850-8466-42e6-be82-aff678ae26a6","description":{"content":"<p>ID of conversation</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"conversation"}]}},"response":[{"id":"9d738679-4f12-4038-94cd-995a83c79a38","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"need_response\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/need_response","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","need_response"],"variable":[{"key":"conversation","value":"2491","description":"ID of conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9437,\n  \"inbox_id\": 273,\n  \"contact_id\": 7582,\n  \"user_id\": 3404,\n  \"last_message_at\": \"string\",\n  \"last_manual_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"string\",\n  \"tagging_last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"owner\": {\n    \"id\": 4429,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 6496,\n    \"organization_id\": 302,\n    \"photo_url\": \"string\",\n    \"unread\": 5483,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 7228,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1752,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"number_id\": 5481,\n  \"number\": {\n    \"id\": 8893,\n    \"organization_id\": 5963,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 2353,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7516,\n    \"is_landline\": 7245,\n    \"is_toll_free\": false,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 8353,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 4563\n    },\n    \"landline\": {\n      \"id\": 8443,\n      \"number_id\": 1562,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2209,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 148,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 8960,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 318,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 5569,\n      \"number_id\": 966,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9658,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 6120,\n      \"organization_id\": 1238,\n      \"owner_id\": 3615,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"last_assigned_user_id\": 4713,\n      \"default_assigned_user_id\": 2080\n    }\n  },\n  \"allow_call\": false,\n  \"name\": \"string\",\n  \"group_name\": \"string\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 2837,\n      \"owner_id\": 3685,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9153\n        },\n        {\n          \"number_id\": 159\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2362,\n          \"number_id\": 3420,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 4895,\n          \"number_id\": 6254,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 2181,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 646,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8186,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6059,\n          \"custom_field_id\": 7308,\n          \"contact_id\": 4919,\n          \"field_key\": \"string\",\n          \"organization_id\": 9117,\n          \"text\": \"string\",\n          \"number\": 2185,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5732,\n          \"custom_field_id\": 7689,\n          \"contact_id\": 2502,\n          \"field_key\": \"string\",\n          \"organization_id\": 819,\n          \"text\": \"string\",\n          \"number\": 5702,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 5750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 958,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 706,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 8271,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 7628,\n      \"owner_id\": 4645,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 8265\n        },\n        {\n          \"number_id\": 5255\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5838,\n          \"number_id\": 5883,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 7877,\n          \"number_id\": 7240,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 5695,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4347,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1073,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 4134,\n          \"custom_field_id\": 2889,\n          \"contact_id\": 3268,\n          \"field_key\": \"string\",\n          \"organization_id\": 1578,\n          \"text\": \"string\",\n          \"number\": 6593,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9152,\n          \"custom_field_id\": 8265,\n          \"contact_id\": 527,\n          \"field_key\": \"string\",\n          \"organization_id\": 1622,\n          \"text\": \"string\",\n          \"number\": 20,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 376,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 3064,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3371,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3560,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 7083,\n      \"conversation_id\": 2091,\n      \"organization_id\": 1694,\n      \"changer_user\": [\n        {\n          \"user_id\": 3046,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 6426,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4621,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 3718,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 6776,\n      \"conversation_id\": 792,\n      \"organization_id\": 9091,\n      \"changer_user\": [\n        {\n          \"user_id\": 8037,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 2591,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4165,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 4025,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"79de8397-3e00-4390-b177-5f6e1d60aba0"}],"id":"e6cd25ac-92dc-480a-9dc7-9ef131134cd2","_postman_id":"e6cd25ac-92dc-480a-9dc7-9ef131134cd2","description":""},{"name":"open","item":[{"name":"Open conversation","id":"79681b0f-1f8c-4216-8689-5662b7e73b12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/open","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code></p>\n","urlObject":{"path":["conversations",":conversation","open"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"bcac1893-c10f-4481-bf7f-d9815ce62765","description":{"content":"<p>Conversation id</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"conversation"}]}},"response":[{"id":"ff519225-c63f-4874-8669-975b36048275","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/open","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","open"],"variable":[{"key":"conversation","value":"2491","description":"Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9437,\n  \"inbox_id\": 273,\n  \"contact_id\": 7582,\n  \"user_id\": 3404,\n  \"last_message_at\": \"string\",\n  \"last_manual_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"string\",\n  \"tagging_last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"owner\": {\n    \"id\": 4429,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 6496,\n    \"organization_id\": 302,\n    \"photo_url\": \"string\",\n    \"unread\": 5483,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 7228,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1752,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"number_id\": 5481,\n  \"number\": {\n    \"id\": 8893,\n    \"organization_id\": 5963,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 2353,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7516,\n    \"is_landline\": 7245,\n    \"is_toll_free\": false,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 8353,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 4563\n    },\n    \"landline\": {\n      \"id\": 8443,\n      \"number_id\": 1562,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2209,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 148,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 8960,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 318,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 5569,\n      \"number_id\": 966,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9658,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 6120,\n      \"organization_id\": 1238,\n      \"owner_id\": 3615,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"last_assigned_user_id\": 4713,\n      \"default_assigned_user_id\": 2080\n    }\n  },\n  \"allow_call\": false,\n  \"name\": \"string\",\n  \"group_name\": \"string\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 2837,\n      \"owner_id\": 3685,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9153\n        },\n        {\n          \"number_id\": 159\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2362,\n          \"number_id\": 3420,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 4895,\n          \"number_id\": 6254,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 2181,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 646,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8186,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6059,\n          \"custom_field_id\": 7308,\n          \"contact_id\": 4919,\n          \"field_key\": \"string\",\n          \"organization_id\": 9117,\n          \"text\": \"string\",\n          \"number\": 2185,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5732,\n          \"custom_field_id\": 7689,\n          \"contact_id\": 2502,\n          \"field_key\": \"string\",\n          \"organization_id\": 819,\n          \"text\": \"string\",\n          \"number\": 5702,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 5750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 958,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 706,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 8271,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 7628,\n      \"owner_id\": 4645,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 8265\n        },\n        {\n          \"number_id\": 5255\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5838,\n          \"number_id\": 5883,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 7877,\n          \"number_id\": 7240,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 5695,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4347,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1073,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 4134,\n          \"custom_field_id\": 2889,\n          \"contact_id\": 3268,\n          \"field_key\": \"string\",\n          \"organization_id\": 1578,\n          \"text\": \"string\",\n          \"number\": 6593,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9152,\n          \"custom_field_id\": 8265,\n          \"contact_id\": 527,\n          \"field_key\": \"string\",\n          \"organization_id\": 1622,\n          \"text\": \"string\",\n          \"number\": 20,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 376,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 3064,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3371,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3560,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 7083,\n      \"conversation_id\": 2091,\n      \"organization_id\": 1694,\n      \"changer_user\": [\n        {\n          \"user_id\": 3046,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 6426,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4621,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 3718,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 6776,\n      \"conversation_id\": 792,\n      \"organization_id\": 9091,\n      \"changer_user\": [\n        {\n          \"user_id\": 8037,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 2591,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4165,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 4025,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"ccec5ffa-0db5-48a0-87f7-988d3429fe64","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/open","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","open"],"variable":[{"key":"conversation","value":"2491","description":"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\": \"string\",\n  \"conversation_id\": 5619\n}"}],"_postman_id":"79681b0f-1f8c-4216-8689-5662b7e73b12"}],"id":"cbb6d6ef-ace5-4ef8-ae6d-f49b05626946","_postman_id":"cbb6d6ef-ace5-4ef8-ae6d-f49b05626946","description":""},{"name":"read","item":[{"name":"Mark conversation as read","id":"80d8de38-4448-4070-bafd-54dc19acc974","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/read","description":"<p>REQUIRED SCOPES <code>[‘conversations:write’]</code><br /> 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.3"],"query":[],"variable":[{"id":"8ada4d9f-2914-4d2a-8e37-0a5f631c321d","description":{"content":"<p>ID of conversation</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"conversation"}]}},"response":[{"id":"2f7a2bf4-9186-43ea-b5ec-e3071e05eb85","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/read","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","read"],"variable":[{"key":"conversation","value":"2491","description":"ID of conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9437,\n  \"inbox_id\": 273,\n  \"contact_id\": 7582,\n  \"user_id\": 3404,\n  \"last_message_at\": \"string\",\n  \"last_manual_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"string\",\n  \"tagging_last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"owner\": {\n    \"id\": 4429,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 6496,\n    \"organization_id\": 302,\n    \"photo_url\": \"string\",\n    \"unread\": 5483,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 7228,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1752,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"number_id\": 5481,\n  \"number\": {\n    \"id\": 8893,\n    \"organization_id\": 5963,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 2353,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7516,\n    \"is_landline\": 7245,\n    \"is_toll_free\": false,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 8353,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 4563\n    },\n    \"landline\": {\n      \"id\": 8443,\n      \"number_id\": 1562,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2209,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 148,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 8960,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 318,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 5569,\n      \"number_id\": 966,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9658,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 6120,\n      \"organization_id\": 1238,\n      \"owner_id\": 3615,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"last_assigned_user_id\": 4713,\n      \"default_assigned_user_id\": 2080\n    }\n  },\n  \"allow_call\": false,\n  \"name\": \"string\",\n  \"group_name\": \"string\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 2837,\n      \"owner_id\": 3685,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9153\n        },\n        {\n          \"number_id\": 159\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2362,\n          \"number_id\": 3420,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 4895,\n          \"number_id\": 6254,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 2181,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 646,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8186,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6059,\n          \"custom_field_id\": 7308,\n          \"contact_id\": 4919,\n          \"field_key\": \"string\",\n          \"organization_id\": 9117,\n          \"text\": \"string\",\n          \"number\": 2185,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5732,\n          \"custom_field_id\": 7689,\n          \"contact_id\": 2502,\n          \"field_key\": \"string\",\n          \"organization_id\": 819,\n          \"text\": \"string\",\n          \"number\": 5702,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 5750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 958,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 706,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 8271,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 7628,\n      \"owner_id\": 4645,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 8265\n        },\n        {\n          \"number_id\": 5255\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5838,\n          \"number_id\": 5883,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 7877,\n          \"number_id\": 7240,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 5695,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4347,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1073,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 4134,\n          \"custom_field_id\": 2889,\n          \"contact_id\": 3268,\n          \"field_key\": \"string\",\n          \"organization_id\": 1578,\n          \"text\": \"string\",\n          \"number\": 6593,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9152,\n          \"custom_field_id\": 8265,\n          \"contact_id\": 527,\n          \"field_key\": \"string\",\n          \"organization_id\": 1622,\n          \"text\": \"string\",\n          \"number\": 20,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 376,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 3064,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3371,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3560,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 7083,\n      \"conversation_id\": 2091,\n      \"organization_id\": 1694,\n      \"changer_user\": [\n        {\n          \"user_id\": 3046,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 6426,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4621,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 3718,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 6776,\n      \"conversation_id\": 792,\n      \"organization_id\": 9091,\n      \"changer_user\": [\n        {\n          \"user_id\": 8037,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 2591,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4165,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 4025,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"80d8de38-4448-4070-bafd-54dc19acc974"}],"id":"0f629cb1-5b8d-4fea-a274-7c0caa2ffc7c","_postman_id":"0f629cb1-5b8d-4fea-a274-7c0caa2ffc7c","description":""},{"name":"reassign","item":[{"name":"Assign conversation to user","id":"268f7219-aec6-4da0-a26a-5e8f16d13ee0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/reassign?user_id=2904","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> 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.3"],"query":[{"description":{"content":"<p>User ID</p>\n","type":"text/plain"},"key":"user_id","value":"2904"}],"variable":[{"id":"ffac850a-9e28-4b30-b388-c073f118ebee","description":{"content":"<p>Conversation id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"conversation"}]}},"response":[{"id":"a82a7f2c-a006-4282-a183-f9730e8bc272","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/reassign?user_id=2904","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","reassign"],"query":[{"description":"User ID","key":"user_id","value":"2904"}],"variable":[{"key":"conversation","value":"1","description":"Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9437,\n  \"inbox_id\": 273,\n  \"contact_id\": 7582,\n  \"user_id\": 3404,\n  \"last_message_at\": \"string\",\n  \"last_manual_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"string\",\n  \"tagging_last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"owner\": {\n    \"id\": 4429,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 6496,\n    \"organization_id\": 302,\n    \"photo_url\": \"string\",\n    \"unread\": 5483,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 7228,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1752,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"number_id\": 5481,\n  \"number\": {\n    \"id\": 8893,\n    \"organization_id\": 5963,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 2353,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7516,\n    \"is_landline\": 7245,\n    \"is_toll_free\": false,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 8353,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 4563\n    },\n    \"landline\": {\n      \"id\": 8443,\n      \"number_id\": 1562,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2209,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 148,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 8960,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 318,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 5569,\n      \"number_id\": 966,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9658,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 6120,\n      \"organization_id\": 1238,\n      \"owner_id\": 3615,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"last_assigned_user_id\": 4713,\n      \"default_assigned_user_id\": 2080\n    }\n  },\n  \"allow_call\": false,\n  \"name\": \"string\",\n  \"group_name\": \"string\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 2837,\n      \"owner_id\": 3685,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9153\n        },\n        {\n          \"number_id\": 159\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2362,\n          \"number_id\": 3420,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 4895,\n          \"number_id\": 6254,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 2181,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 646,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8186,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6059,\n          \"custom_field_id\": 7308,\n          \"contact_id\": 4919,\n          \"field_key\": \"string\",\n          \"organization_id\": 9117,\n          \"text\": \"string\",\n          \"number\": 2185,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5732,\n          \"custom_field_id\": 7689,\n          \"contact_id\": 2502,\n          \"field_key\": \"string\",\n          \"organization_id\": 819,\n          \"text\": \"string\",\n          \"number\": 5702,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 5750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 958,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 706,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 8271,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 7628,\n      \"owner_id\": 4645,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 8265\n        },\n        {\n          \"number_id\": 5255\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5838,\n          \"number_id\": 5883,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 7877,\n          \"number_id\": 7240,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 5695,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4347,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1073,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 4134,\n          \"custom_field_id\": 2889,\n          \"contact_id\": 3268,\n          \"field_key\": \"string\",\n          \"organization_id\": 1578,\n          \"text\": \"string\",\n          \"number\": 6593,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9152,\n          \"custom_field_id\": 8265,\n          \"contact_id\": 527,\n          \"field_key\": \"string\",\n          \"organization_id\": 1622,\n          \"text\": \"string\",\n          \"number\": 20,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 376,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 3064,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3371,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3560,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 7083,\n      \"conversation_id\": 2091,\n      \"organization_id\": 1694,\n      \"changer_user\": [\n        {\n          \"user_id\": 3046,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 6426,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4621,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 3718,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 6776,\n      \"conversation_id\": 792,\n      \"organization_id\": 9091,\n      \"changer_user\": [\n        {\n          \"user_id\": 8037,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 2591,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4165,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 4025,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"268f7219-aec6-4da0-a26a-5e8f16d13ee0"}],"id":"0556ff53-cbd7-42d3-b589-4e0dfb9f6a46","_postman_id":"0556ff53-cbd7-42d3-b589-4e0dfb9f6a46","description":""},{"name":"switch","item":[{"name":"Switch conversation","id":"8ef675a4-703f-4148-80f0-58538613a637","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/switch","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> Switch conversation</p>\n","urlObject":{"path":["conversations",":conversation","switch"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"2198eea1-bd77-4740-a162-afa9cab742fe","description":{"content":"<p>The ID of the Conversation</p>\n","type":"text/plain"},"type":"any","value":"","key":"conversation"}]}},"response":[{"id":"8e16511a-fde8-43d9-b252-f0bda1a01e58","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/switch","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","switch"],"variable":[{"key":"conversation","value":"","description":"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\": 7327,\n  \"filter\": \"string\",\n  \"unread\": 2036\n}"}],"_postman_id":"8ef675a4-703f-4148-80f0-58538613a637"}],"id":"95f4abab-9e20-41c7-a2bb-5ed99dab80fa","_postman_id":"95f4abab-9e20-41c7-a2bb-5ed99dab80fa","description":""},{"name":"unread","item":[{"name":"Mark conversation as unread","id":"ea9833fd-7d80-4648-abbe-d654a99da73c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/unread","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> 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.3"],"query":[],"variable":[{"id":"c0d06d0b-de72-4290-be0b-783e7812ba95","description":{"content":"<p>Conversation id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"conversation"}]}},"response":[{"id":"1b69f7fd-e60a-498a-b899-701135bd353b","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/unread","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","unread"],"variable":[{"key":"conversation","value":"1","description":"Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9437,\n  \"inbox_id\": 273,\n  \"contact_id\": 7582,\n  \"user_id\": 3404,\n  \"last_message_at\": \"string\",\n  \"last_manual_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"string\",\n  \"tagging_last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"owner\": {\n    \"id\": 4429,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 6496,\n    \"organization_id\": 302,\n    \"photo_url\": \"string\",\n    \"unread\": 5483,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 7228,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1752,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"number_id\": 5481,\n  \"number\": {\n    \"id\": 8893,\n    \"organization_id\": 5963,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 2353,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7516,\n    \"is_landline\": 7245,\n    \"is_toll_free\": false,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 8353,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 4563\n    },\n    \"landline\": {\n      \"id\": 8443,\n      \"number_id\": 1562,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2209,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 148,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 8960,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 318,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 5569,\n      \"number_id\": 966,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9658,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 6120,\n      \"organization_id\": 1238,\n      \"owner_id\": 3615,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"last_assigned_user_id\": 4713,\n      \"default_assigned_user_id\": 2080\n    }\n  },\n  \"allow_call\": false,\n  \"name\": \"string\",\n  \"group_name\": \"string\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 2837,\n      \"owner_id\": 3685,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9153\n        },\n        {\n          \"number_id\": 159\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2362,\n          \"number_id\": 3420,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 4895,\n          \"number_id\": 6254,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 2181,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 646,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8186,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6059,\n          \"custom_field_id\": 7308,\n          \"contact_id\": 4919,\n          \"field_key\": \"string\",\n          \"organization_id\": 9117,\n          \"text\": \"string\",\n          \"number\": 2185,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5732,\n          \"custom_field_id\": 7689,\n          \"contact_id\": 2502,\n          \"field_key\": \"string\",\n          \"organization_id\": 819,\n          \"text\": \"string\",\n          \"number\": 5702,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 5750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 958,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 706,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 8271,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 7628,\n      \"owner_id\": 4645,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 8265\n        },\n        {\n          \"number_id\": 5255\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5838,\n          \"number_id\": 5883,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 7877,\n          \"number_id\": 7240,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 5695,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4347,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1073,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 4134,\n          \"custom_field_id\": 2889,\n          \"contact_id\": 3268,\n          \"field_key\": \"string\",\n          \"organization_id\": 1578,\n          \"text\": \"string\",\n          \"number\": 6593,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9152,\n          \"custom_field_id\": 8265,\n          \"contact_id\": 527,\n          \"field_key\": \"string\",\n          \"organization_id\": 1622,\n          \"text\": \"string\",\n          \"number\": 20,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 376,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 3064,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3371,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3560,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 7083,\n      \"conversation_id\": 2091,\n      \"organization_id\": 1694,\n      \"changer_user\": [\n        {\n          \"user_id\": 3046,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 6426,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4621,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 3718,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 6776,\n      \"conversation_id\": 792,\n      \"organization_id\": 9091,\n      \"changer_user\": [\n        {\n          \"user_id\": 8037,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 2591,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4165,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 4025,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"ea9833fd-7d80-4648-abbe-d654a99da73c"}],"id":"bc85bc7c-f728-4b11-a4ff-fea1b626ae9e","_postman_id":"bc85bc7c-f728-4b11-a4ff-fea1b626ae9e","description":""},{"name":"messages","item":[{"name":"mark-read","item":[{"name":"Mark specific messages as read in a conversation","id":"8406a0e9-ccf4-450e-8cca-2686036636be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    5663,\n    8227\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/messages/mark-read","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code></p>\n","urlObject":{"path":["conversations",":conversation","messages","mark-read"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"67fddc9b-3f83-49bf-81df-53f39820746b","description":{"content":"<p>ID of the conversation</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"conversation"}]}},"response":[{"id":"9ee75cd8-1e40-4859-9587-70b75eb3f11e","name":"Messages marked as read successfully","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    5663,\n    8227\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/messages/mark-read","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","messages","mark-read"],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"da9dc8c4-38c1-4666-9a66-25189332eb9c","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    5663,\n    8227\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/messages/mark-read","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","messages","mark-read"],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"eb918280-2e84-42ee-9e63-9edceaaed84e","name":"Forbidden","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    5663,\n    8227\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/messages/mark-read","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","messages","mark-read"],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"2fbb48e7-11bb-43f0-b4df-06b3d9f0f439","name":"Conversation not found","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    5663,\n    8227\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/messages/mark-read","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","messages","mark-read"],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"03ad058f-4ff6-4b61-97e2-14dd6576552f","name":"Validation error","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    5663,\n    8227\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation/messages/mark-read","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation","messages","mark-read"],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8406a0e9-ccf4-450e-8cca-2686036636be"}],"id":"0755ac84-3089-4654-a295-1d42facbbbbf","_postman_id":"0755ac84-3089-4654-a295-1d42facbbbbf","description":""}],"id":"7e0fe0ca-d394-42b4-aa4a-4fd4dee27d93","_postman_id":"7e0fe0ca-d394-42b4-aa4a-4fd4dee27d93","description":""},{"name":"Get conversation by id","id":"5fc70917-9039-46f5-8f32-6bdbcf93df27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation","description":"<p>REQUIRED SCOPES <code>['conversations:read']</code><br /> 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.3"],"query":[],"variable":[{"id":"1a3fc7b8-1d3b-4a0e-99b3-90d9c7960597","description":{"content":"<p>ID of conversation</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"conversation"}]}},"response":[{"id":"c2bdca40-09be-4d88-82b2-7fceec38082a","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation"],"variable":[{"key":"conversation","value":"2491","description":"ID of conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9437,\n  \"inbox_id\": 273,\n  \"contact_id\": 7582,\n  \"user_id\": 3404,\n  \"last_message_at\": \"string\",\n  \"last_manual_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"string\",\n  \"tagging_last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"owner\": {\n    \"id\": 4429,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 6496,\n    \"organization_id\": 302,\n    \"photo_url\": \"string\",\n    \"unread\": 5483,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 7228,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1752,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"number_id\": 5481,\n  \"number\": {\n    \"id\": 8893,\n    \"organization_id\": 5963,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 2353,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7516,\n    \"is_landline\": 7245,\n    \"is_toll_free\": false,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 8353,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 4563\n    },\n    \"landline\": {\n      \"id\": 8443,\n      \"number_id\": 1562,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2209,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 148,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 8960,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 318,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 5569,\n      \"number_id\": 966,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9658,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 6120,\n      \"organization_id\": 1238,\n      \"owner_id\": 3615,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"last_assigned_user_id\": 4713,\n      \"default_assigned_user_id\": 2080\n    }\n  },\n  \"allow_call\": false,\n  \"name\": \"string\",\n  \"group_name\": \"string\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 2837,\n      \"owner_id\": 3685,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9153\n        },\n        {\n          \"number_id\": 159\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2362,\n          \"number_id\": 3420,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 4895,\n          \"number_id\": 6254,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 2181,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 646,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8186,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6059,\n          \"custom_field_id\": 7308,\n          \"contact_id\": 4919,\n          \"field_key\": \"string\",\n          \"organization_id\": 9117,\n          \"text\": \"string\",\n          \"number\": 2185,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5732,\n          \"custom_field_id\": 7689,\n          \"contact_id\": 2502,\n          \"field_key\": \"string\",\n          \"organization_id\": 819,\n          \"text\": \"string\",\n          \"number\": 5702,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 5750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 958,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 706,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 8271,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 7628,\n      \"owner_id\": 4645,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 8265\n        },\n        {\n          \"number_id\": 5255\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5838,\n          \"number_id\": 5883,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 7877,\n          \"number_id\": 7240,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 5695,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4347,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1073,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 4134,\n          \"custom_field_id\": 2889,\n          \"contact_id\": 3268,\n          \"field_key\": \"string\",\n          \"organization_id\": 1578,\n          \"text\": \"string\",\n          \"number\": 6593,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9152,\n          \"custom_field_id\": 8265,\n          \"contact_id\": 527,\n          \"field_key\": \"string\",\n          \"organization_id\": 1622,\n          \"text\": \"string\",\n          \"number\": 20,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 376,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 3064,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3371,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3560,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 7083,\n      \"conversation_id\": 2091,\n      \"organization_id\": 1694,\n      \"changer_user\": [\n        {\n          \"user_id\": 3046,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 6426,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4621,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 3718,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 6776,\n      \"conversation_id\": 792,\n      \"organization_id\": 9091,\n      \"changer_user\": [\n        {\n          \"user_id\": 8037,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 2591,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4165,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 4025,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"5fc70917-9039-46f5-8f32-6bdbcf93df27"},{"name":"Update conversation","id":"c851845a-2d1c-48d7-b39b-d3ad43483bfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation?name=string","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> Update conversation</p>\n","urlObject":{"path":["conversations",":conversation"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Conversation name</p>\n","type":"text/plain"},"key":"name","value":"string"}],"variable":[{"id":"a49673db-9a4f-49ed-904c-5442c7068577","description":{"content":"<p>The ID of the Conversation</p>\n","type":"text/plain"},"type":"any","value":"","key":"conversation"}]}},"response":[{"id":"d13a4888-27ba-4908-83c0-b1c9888eb779","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/:conversation?name=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations",":conversation"],"query":[{"description":"Conversation name","key":"name","value":"string"}],"variable":[{"key":"conversation","value":"","description":"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\": 9437,\n  \"inbox_id\": 273,\n  \"contact_id\": 7582,\n  \"user_id\": 3404,\n  \"last_message_at\": \"string\",\n  \"last_manual_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"has_tagging\": true,\n  \"tagging_last_message_at\": \"string\",\n  \"tagging_last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"owner\": {\n    \"id\": 4429,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 6496,\n    \"organization_id\": 302,\n    \"photo_url\": \"string\",\n    \"unread\": 5483,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 7228,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1752,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"number_id\": 5481,\n  \"number\": {\n    \"id\": 8893,\n    \"organization_id\": 5963,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 2353,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7516,\n    \"is_landline\": 7245,\n    \"is_toll_free\": false,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\n    \"voice\": true,\n    \"use_organization_call_settings\": false,\n    \"voice_outbound\": false,\n    \"mms\": false,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 8353,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 4563\n    },\n    \"landline\": {\n      \"id\": 8443,\n      \"number_id\": 1562,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2209,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 148,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 8960,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 318,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 5569,\n      \"number_id\": 966,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9658,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 6120,\n      \"organization_id\": 1238,\n      \"owner_id\": 3615,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"last_assigned_user_id\": 4713,\n      \"default_assigned_user_id\": 2080\n    }\n  },\n  \"allow_call\": false,\n  \"name\": \"string\",\n  \"group_name\": \"string\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 2837,\n      \"owner_id\": 3685,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9153\n        },\n        {\n          \"number_id\": 159\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 2362,\n          \"number_id\": 3420,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 4895,\n          \"number_id\": 6254,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 2181,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 646,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 8186,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6059,\n          \"custom_field_id\": 7308,\n          \"contact_id\": 4919,\n          \"field_key\": \"string\",\n          \"organization_id\": 9117,\n          \"text\": \"string\",\n          \"number\": 2185,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5732,\n          \"custom_field_id\": 7689,\n          \"contact_id\": 2502,\n          \"field_key\": \"string\",\n          \"organization_id\": 819,\n          \"text\": \"string\",\n          \"number\": 5702,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 5750,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 958,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 706,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 8271,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 7628,\n      \"owner_id\": 4645,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 8265\n        },\n        {\n          \"number_id\": 5255\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5838,\n          \"number_id\": 5883,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 7877,\n          \"number_id\": 7240,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 5695,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 4347,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1073,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 4134,\n          \"custom_field_id\": 2889,\n          \"contact_id\": 3268,\n          \"field_key\": \"string\",\n          \"organization_id\": 1578,\n          \"text\": \"string\",\n          \"number\": 6593,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9152,\n          \"custom_field_id\": 8265,\n          \"contact_id\": 527,\n          \"field_key\": \"string\",\n          \"organization_id\": 1622,\n          \"text\": \"string\",\n          \"number\": 20,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 376,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 3064,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 3371,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 3560,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 7083,\n      \"conversation_id\": 2091,\n      \"organization_id\": 1694,\n      \"changer_user\": [\n        {\n          \"user_id\": 3046,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 6426,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4621,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 3718,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 6776,\n      \"conversation_id\": 792,\n      \"organization_id\": 9091,\n      \"changer_user\": [\n        {\n          \"user_id\": 8037,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 2591,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 4165,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 4025,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"c851845a-2d1c-48d7-b39b-d3ad43483bfb"}],"id":"afa3dfd2-48b4-4003-a9db-e882be537cf5","_postman_id":"afa3dfd2-48b4-4003-a9db-e882be537cf5","description":""},{"name":"batch","item":[{"name":"close","item":[{"name":"Close all failed conversations","id":"96af1f60-27c1-4180-a108-0bb76f979335","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch/close?team_id=2491&team_type=2491","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> Close all failed conversations</p>\n","urlObject":{"path":["conversations","batch","close"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The ID of the Team</p>\n","type":"text/plain"},"key":"team_id","value":"2491"},{"description":{"content":"<p>The type of the Team</p>\n","type":"text/plain"},"key":"team_type","value":"2491"}],"variable":[]}},"response":[{"id":"1aaa7c6b-6571-47dd-900f-e7a685db1471","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/batch/close?team_id=2491&team_type=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations","batch","close"],"query":[{"description":"The ID of the Team","key":"team_id","value":"2491"},{"description":"The type of the Team","key":"team_type","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 3643,\n    \"inbox_id\": 7536,\n    \"contact_id\": 9571,\n    \"user_id\": 4041,\n    \"last_message_at\": \"string\",\n    \"last_manual_message_at\": \"string\",\n    \"last_read_at\": \"string\",\n    \"has_tagging\": false,\n    \"tagging_last_message_at\": \"string\",\n    \"tagging_last_read_at\": \"string\",\n    \"started_at\": \"string\",\n    \"closed_at\": \"string\",\n    \"owner\": {\n      \"id\": 8527,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 4292,\n      \"organization_id\": 8646,\n      \"photo_url\": \"string\",\n      \"unread\": 6773,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": true,\n      \"organizationNumber\": [\n        {\n          \"id\": 9809,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 9057,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    \"number_id\": 6195,\n    \"number\": {\n      \"id\": 672,\n      \"organization_id\": 9328,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 3888,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5419,\n      \"is_landline\": 2978,\n      \"is_toll_free\": false,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 4133,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5623\n      },\n      \"landline\": {\n        \"id\": 8193,\n        \"number_id\": 9913,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 960,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8138,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4583,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 114,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 9970,\n        \"number_id\": 6142,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 5480,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 3539,\n        \"organization_id\": 4014,\n        \"owner_id\": 1423,\n        \"team_id\": 6536,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"allow_call\": true,\n    \"name\": \"string\",\n    \"group_name\": \"string\",\n    \"is_group\": true,\n    \"participants\": [\n      {\n        \"id\": 8588,\n        \"owner_id\": 456,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": false,\n        \"opt_out\": false,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 1534\n          },\n          {\n            \"number_id\": 233\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 3912,\n            \"number_id\": 3799,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 2427,\n            \"number_id\": 551,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 1365,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": 6597,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 6304,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 4371,\n            \"custom_field_id\": 6356,\n            \"contact_id\": 6922,\n            \"field_key\": \"string\",\n            \"organization_id\": 2913,\n            \"text\": \"string\",\n            \"number\": 423,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 6019,\n            \"custom_field_id\": 7276,\n            \"contact_id\": 5705,\n            \"field_key\": \"string\",\n            \"organization_id\": 3614,\n            \"text\": \"string\",\n            \"number\": 8095,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 2720,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 243,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 2420,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 5916,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 429,\n        \"owner_id\": 8948,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 3900\n          },\n          {\n            \"number_id\": 85\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 1681,\n            \"number_id\": 9629,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 6199,\n            \"number_id\": 2919,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 5299,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 783,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 3571,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 4709,\n            \"custom_field_id\": 5035,\n            \"contact_id\": 2013,\n            \"field_key\": \"string\",\n            \"organization_id\": 5155,\n            \"text\": \"string\",\n            \"number\": 4554,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 4731,\n            \"custom_field_id\": 5829,\n            \"contact_id\": 546,\n            \"field_key\": \"string\",\n            \"organization_id\": 5184,\n            \"text\": \"string\",\n            \"number\": 2631,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 216,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 1790,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 8121,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 120,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"reassign_logs\": [\n      {\n        \"id\": 1631,\n        \"conversation_id\": 4194,\n        \"organization_id\": 5599,\n        \"changer_user\": [\n          {\n            \"user_id\": 9980,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 1899,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 1820,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 9445,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 1583,\n        \"conversation_id\": 5383,\n        \"organization_id\": 7195,\n        \"changer_user\": [\n          {\n            \"user_id\": 2416,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 5994,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 1276,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 2740,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"created_at\": \"string\"\n      }\n    ]\n  },\n  {\n    \"id\": 9088,\n    \"inbox_id\": 1092,\n    \"contact_id\": 5152,\n    \"user_id\": 5721,\n    \"last_message_at\": \"string\",\n    \"last_manual_message_at\": \"string\",\n    \"last_read_at\": \"string\",\n    \"has_tagging\": true,\n    \"tagging_last_message_at\": \"string\",\n    \"tagging_last_read_at\": \"string\",\n    \"started_at\": \"string\",\n    \"closed_at\": \"string\",\n    \"owner\": {\n      \"id\": 454,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 6383,\n      \"organization_id\": 8521,\n      \"photo_url\": \"string\",\n      \"unread\": 2532,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": true,\n      \"organizationNumber\": [\n        {\n          \"id\": 7683,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 9783,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    \"number_id\": 2234,\n    \"number\": {\n      \"id\": 6484,\n      \"organization_id\": 1868,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 4496,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5065,\n      \"is_landline\": 6806,\n      \"is_toll_free\": true,\n      \"is_mobile\": false,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 1505,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7991\n      },\n      \"landline\": {\n        \"id\": 5541,\n        \"number_id\": 4504,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 2276,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 6960,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 5728,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 5963,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 7642,\n        \"number_id\": 7569,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 8569,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 6308,\n        \"organization_id\": 34,\n        \"owner_id\": 9489,\n        \"team_id\": 2949,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"allow_call\": false,\n    \"name\": \"string\",\n    \"group_name\": \"string\",\n    \"is_group\": true,\n    \"participants\": [\n      {\n        \"id\": 6435,\n        \"owner_id\": 4401,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": true,\n        \"opt_out\": true,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 8620\n          },\n          {\n            \"number_id\": 5041\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 7923,\n            \"number_id\": 3784,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": false\n          },\n          {\n            \"id\": 4106,\n            \"number_id\": 3455,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 2795,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 7710,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 2040,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 9512,\n            \"custom_field_id\": 2167,\n            \"contact_id\": 7089,\n            \"field_key\": \"string\",\n            \"organization_id\": 2439,\n            \"text\": \"string\",\n            \"number\": 2489,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 5724,\n            \"custom_field_id\": 5799,\n            \"contact_id\": 73,\n            \"field_key\": \"string\",\n            \"organization_id\": 6179,\n            \"text\": \"string\",\n            \"number\": 8765,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 8505,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 4587,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 8843,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 3793,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 4912,\n        \"owner_id\": 3567,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 4838\n          },\n          {\n            \"number_id\": 5483\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 6668,\n            \"number_id\": 8821,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 2217,\n            \"number_id\": 5022,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 7577,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 9035,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 2326,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 8118,\n            \"custom_field_id\": 8342,\n            \"contact_id\": 9884,\n            \"field_key\": \"string\",\n            \"organization_id\": 3384,\n            \"text\": \"string\",\n            \"number\": 5343,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 6628,\n            \"custom_field_id\": 5959,\n            \"contact_id\": 3822,\n            \"field_key\": \"string\",\n            \"organization_id\": 3120,\n            \"text\": \"string\",\n            \"number\": 4919,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 401,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 1122,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 8704,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 7756,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"reassign_logs\": [\n      {\n        \"id\": 665,\n        \"conversation_id\": 5856,\n        \"organization_id\": 2556,\n        \"changer_user\": [\n          {\n            \"user_id\": 5720,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 6190,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 4358,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 3857,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7085,\n        \"conversation_id\": 1383,\n        \"organization_id\": 4251,\n        \"changer_user\": [\n          {\n            \"user_id\": 6116,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 8912,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 9072,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 9862,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"created_at\": \"string\"\n      }\n    ]\n  }\n]"}],"_postman_id":"96af1f60-27c1-4180-a108-0bb76f979335"}],"id":"cc140944-6570-4e8d-aa12-2d78fe10df38","_postman_id":"cc140944-6570-4e8d-aa12-2d78fe10df38","description":""}],"id":"e44094c2-f7fe-40f3-b793-7dec8d68bab0","_postman_id":"e44094c2-f7fe-40f3-b793-7dec8d68bab0","description":""},{"name":"batch-queue","item":[{"name":"close","item":[{"name":"Close conversations for the given team/inbox","id":"fcca0e7f-9d49-4d83-9e07-c638cc193916","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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  \"conversation_filter\": \"open\",\n  \"ids\": [\n    1,\n    1\n  ],\n  \"delete_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/close","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> Close conversations for the given team/inbox</p>\n","urlObject":{"path":["conversations","batch-queue","close"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"8ccabfd4-4e19-4ff9-a4f9-4386063e5764","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 1,\n  \"conversation_filter\": \"open\",\n  \"ids\": [\n    1,\n    1\n  ],\n  \"delete_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/close"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b51d39ed-23da-4abd-a026-5735db992c86","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 1,\n  \"conversation_filter\": \"open\",\n  \"ids\": [\n    1,\n    1\n  ],\n  \"delete_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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\": \"string\"\n}"}],"_postman_id":"fcca0e7f-9d49-4d83-9e07-c638cc193916"}],"id":"dd990eb9-7e8f-4a11-a661-dcd4247e1752","_postman_id":"dd990eb9-7e8f-4a11-a661-dcd4247e1752","description":""},{"name":"favorite","item":[{"name":"make favorite conversations for the given team/inbox","id":"3f8478f3-e601-462f-a339-db6035e543cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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  \"all\": false,\n  \"favorite\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/favorite","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> make favorite conversations for the given team/inbox</p>\n","urlObject":{"path":["conversations","batch-queue","favorite"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"f9bcad02-277c-44a8-8110-8e255c897707","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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  \"all\": false,\n  \"favorite\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/favorite"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b0ad6d29-ae09-4e82-8ef9-bb4e8642d80c","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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  \"all\": false,\n  \"favorite\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/favorite"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"3f8478f3-e601-462f-a339-db6035e543cf"}],"id":"4a26ccb7-5b98-4759-89ae-a50ea89b74d0","_postman_id":"4a26ccb7-5b98-4759-89ae-a50ea89b74d0","description":""},{"name":"need_response","item":[{"name":"Bulk mark/unmark conversations as Needs Response","id":"6fe60c40-7ca8-409a-a4c6-2daa56177e04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    1,\n    1\n  ],\n  \"need_response\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/need_response","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> Bulk mark/unmark conversations as Needs Response</p>\n","urlObject":{"path":["conversations","batch-queue","need_response"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"caa51334-3b2b-420b-bf60-676a58c15128","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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  \"need_response\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/need_response"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fe593215-9b73-4213-950c-315610833234","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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  \"need_response\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/need_response"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"6fe60c40-7ca8-409a-a4c6-2daa56177e04"}],"id":"84a4b46f-0d80-49a3-9493-47ab4a5b2804","_postman_id":"84a4b46f-0d80-49a3-9493-47ab4a5b2804","description":""},{"name":"open","item":[{"name":"make open conversations for the given team/inbox","id":"377484e6-49d2-4918-a505-290a13257b8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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  \"conversation_filter\": \"open\",\n  \"open_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/open","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> make open conversations for the given team/inbox</p>\n","urlObject":{"path":["conversations","batch-queue","open"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"32578421-4d3c-494f-8a1a-0408f0dbb6be","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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  \"conversation_filter\": \"open\",\n  \"open_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/open"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"53d768f2-2d5e-4a65-af94-93aa6d9bf0a5","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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  \"conversation_filter\": \"open\",\n  \"open_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/open"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"377484e6-49d2-4918-a505-290a13257b8a"}],"id":"46c9c9a3-598b-4ccf-87f4-6343d9439484","_postman_id":"46c9c9a3-598b-4ccf-87f4-6343d9439484","description":""},{"name":"read","item":[{"name":"read conversations for the given team/inbox","id":"70c7cbcb-bee3-47f7-8f89-95d817a6b764","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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  \"read_all\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/read","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> read conversations for the given team/inbox</p>\n","urlObject":{"path":["conversations","batch-queue","read"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"43a032b6-4f1a-4478-b020-571b50899bd4","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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  \"read_all\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/read"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"db068819-0420-4c22-910e-f6551c194a2a","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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  \"read_all\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/read"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"70c7cbcb-bee3-47f7-8f89-95d817a6b764"}],"id":"c510025a-52cd-41e6-a8df-951aa41210a0","_postman_id":"c510025a-52cd-41e6-a8df-951aa41210a0","description":""},{"name":"reassign","item":[{"name":"Bulk Assign conversation to users","id":"18094f5a-0ec1-44ba-90c3-6bc3396122e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 1,\n  \"conversations_ids\": [\n    1,\n    1\n  ],\n  \"members_ids\": [\n    1,\n    1\n  ],\n  \"reassign_all\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/reassign","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code></p>\n","urlObject":{"path":["conversations","batch-queue","reassign"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"f3de29ea-ff02-4cd0-bb82-0c0dfaba5935","name":"Ok","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 1,\n  \"conversations_ids\": [\n    1,\n    1\n  ],\n  \"members_ids\": [\n    1,\n    1\n  ],\n  \"reassign_all\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/reassign"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"18094f5a-0ec1-44ba-90c3-6bc3396122e5"}],"id":"21f4b978-a360-4163-97be-044c814aeb9d","_postman_id":"21f4b978-a360-4163-97be-044c814aeb9d","description":""},{"name":"unread","item":[{"name":"make unread conversations for the given team/inbox","id":"2261589c-0d8a-45d4-82ab-e31e4d7d2b34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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  \"unread_all\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/unread","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> make unread conversations for the given team/inbox</p>\n","urlObject":{"path":["conversations","batch-queue","unread"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"cbbfd65d-d8fe-4251-80f5-ddf523010360","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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  \"unread_all\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/unread"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f9a26e09-3486-40f7-ab30-a19845f34d74","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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  \"unread_all\": false,\n  \"conversation_filter\": \"open\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/batch-queue/unread"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"2261589c-0d8a-45d4-82ab-e31e4d7d2b34"}],"id":"d16fa2dc-3437-4358-ac79-6e0af255842a","_postman_id":"d16fa2dc-3437-4358-ac79-6e0af255842a","description":""}],"id":"590e03f1-9879-44ef-b520-a8d032413ea0","_postman_id":"590e03f1-9879-44ef-b520-a8d032413ea0","description":""},{"name":"downgrade-statistic","item":[{"name":"Get statistics for downgrade plan","id":"4aea9046-c7c2-49e6-87bf-01de423c7205","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/downgrade-statistic","description":"<p>REQUIRED SCOPES <code>['conversations:read']</code></p>\n","urlObject":{"path":["conversations","downgrade-statistic"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"cf9735a0-bd9b-4316-a459-d00f0efef60e","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/downgrade-statistic"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"conversation_closed_count\": 662\n}"},{"id":"80963356-f4fd-4e89-a31f-c7071b9168a7","name":"Unauthenticated","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.3/conversations/downgrade-statistic"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5c516b7d-4d58-4973-8a7f-7b3609cc7f45","name":"Forbidden","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.3/conversations/downgrade-statistic"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4aea9046-c7c2-49e6-87bf-01de423c7205"}],"id":"0d286083-e987-467c-9fe0-ba14ff87f5c5","_postman_id":"0d286083-e987-467c-9fe0-ba14ff87f5c5","description":""},{"name":"favorite","item":[{"name":"Mark a conversation as favorite or unfavorite","id":"c861df92-3ba2-408f-a55e-4c09f412c256","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"conversation_id\": 273,\n  \"favorite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/favorite","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code></p>\n","urlObject":{"path":["conversations","favorite"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"590a6bab-4da9-4192-868c-0c6dee61f31a","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"conversation_id\": 273,\n  \"favorite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/favorite"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"status\",\n  \"message\": \"Successfully updated.\"\n}"},{"id":"18936621-f5c9-4c40-b70b-3a45611bbba3","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"conversation_id\": 273,\n  \"favorite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/favorite"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7ec90b6c-9c4c-4921-80be-1d748d222896","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"conversation_id\": 273,\n  \"favorite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/favorite"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"da637bdf-9ba8-4782-bd8b-23191865c224","name":"Conversation not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"conversation_id\": 273,\n  \"favorite\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/favorite"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c861df92-3ba2-408f-a55e-4c09f412c256"}],"id":"c7d681d6-429d-46d7-8bcb-a17856b7ed3a","_postman_id":"c7d681d6-429d-46d7-8bcb-a17856b7ed3a","description":""},{"name":"find-by-contacts","item":[{"name":"Find a conversation by contacts","id":"4a8ac61c-0df5-4083-b853-dbf45ed8d539","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"contacts\": [\n    1552,\n    194\n  ],\n  \"team_id\": 4860\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/find-by-contacts","description":"<p>REQUIRED SCOPES <code>['conversations:read']</code></p>\n","urlObject":{"path":["conversations","find-by-contacts"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"7a05e16d-eaab-4b4a-b993-7a38516d3927","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/find-by-contacts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 5076,\n  \"inbox_id\": 2747,\n  \"contact_id\": 2168,\n  \"user_id\": 3326,\n  \"last_message_at\": \"string\",\n  \"last_manual_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"has_tagging\": false,\n  \"tagging_last_message_at\": \"string\",\n  \"tagging_last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"owner\": {\n    \"id\": 2021,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8923,\n    \"organization_id\": 4404,\n    \"photo_url\": \"string\",\n    \"unread\": 3986,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": true,\n    \"organizationNumber\": [\n      {\n        \"id\": 7866,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 6762,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"number_id\": 5944,\n  \"number\": {\n    \"id\": 8678,\n    \"organization_id\": 5196,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 8128,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 9750,\n    \"is_landline\": 2683,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": \"string\",\n    \"area_code\": {\n      \"id\": 5537,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 2133\n    },\n    \"landline\": {\n      \"id\": 4248,\n      \"number_id\": 5210,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 4350,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 8302,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 2435,\n      \"is_active\": true,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 6808,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 6157,\n      \"number_id\": 5786,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 1268,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 189,\n      \"organization_id\": 4142,\n      \"owner_id\": 5300,\n      \"team_id\": 8125,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"allow_call\": false,\n  \"name\": \"string\",\n  \"group_name\": \"string\",\n  \"is_group\": false,\n  \"participants\": [\n    {\n      \"id\": 8833,\n      \"owner_id\": 6723,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 2560\n        },\n        {\n          \"number_id\": 9770\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5871,\n          \"number_id\": 4460,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 1852,\n          \"number_id\": 6510,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": true\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 649,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 5498,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 9815,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6112,\n          \"custom_field_id\": 8119,\n          \"contact_id\": 1630,\n          \"field_key\": \"string\",\n          \"organization_id\": 5621,\n          \"text\": \"string\",\n          \"number\": 2840,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 8012,\n          \"custom_field_id\": 9653,\n          \"contact_id\": 9835,\n          \"field_key\": \"string\",\n          \"organization_id\": 4099,\n          \"text\": \"string\",\n          \"number\": 1089,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 540,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 5751,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 2023,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 4802,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 9975,\n      \"owner_id\": 7465,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 3090\n        },\n        {\n          \"number_id\": 7453\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 316,\n          \"number_id\": 3327,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 8124,\n          \"number_id\": 5341,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 4755,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9113,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 1923,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 8491,\n          \"custom_field_id\": 2323,\n          \"contact_id\": 8867,\n          \"field_key\": \"string\",\n          \"organization_id\": 7506,\n          \"text\": \"string\",\n          \"number\": 96,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9353,\n          \"custom_field_id\": 6223,\n          \"contact_id\": 1112,\n          \"field_key\": \"string\",\n          \"organization_id\": 2595,\n          \"text\": \"string\",\n          \"number\": 8446,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 6717,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 2490,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 7579,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 4068,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"reassign_logs\": [\n    {\n      \"id\": 3687,\n      \"conversation_id\": 8874,\n      \"organization_id\": 8004,\n      \"changer_user\": [\n        {\n          \"user_id\": 9910,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 8409,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 3989,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 8181,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1416,\n      \"conversation_id\": 3202,\n      \"organization_id\": 2322,\n      \"changer_user\": [\n        {\n          \"user_id\": 599,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 2060,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"current_user\": [\n        {\n          \"user_id\": 6606,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        },\n        {\n          \"user_id\": 4409,\n          \"first_name\": \"string\",\n          \"last_name\": \"string\"\n        }\n      ],\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"4c76dcd3-1c97-4e0f-a256-ca3b517e4dc2","name":"No conversation found","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/find-by-contacts"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7a9d0e9b-bb5a-425f-a42a-a4825001327f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/find-by-contacts"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"bba4c584-abeb-4e80-a76e-85d198284aff","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/find-by-contacts"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6aa72e7a-3082-4f80-a987-3da7c12ccd45","name":"Validation error","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/find-by-contacts"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4a8ac61c-0df5-4083-b853-dbf45ed8d539"}],"id":"2724257f-f8d7-47d3-806e-13bf0945927c","_postman_id":"2724257f-f8d7-47d3-806e-13bf0945927c","description":""},{"name":"teams","item":[{"name":"number","item":[{"name":"Get By Contact Conversation Related Number","id":"198706c6-6cbd-4483-b37f-14d518fc745b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 7058,\n  \"team_type\": 7464,\n  \"contacts\": [\n    \"\",\n    \"\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/teams/number","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> Get By Contact Conversation Related Number</p>\n","urlObject":{"path":["conversations","teams","number"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"6f9fe2f6-8a9e-44a6-a04a-0a03eb745543","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 7058,\n  \"team_type\": 7464,\n  \"contacts\": [\n    \"\",\n    \"\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/conversations/teams/number"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9721,\n  \"organization_id\": 400,\n  \"country\": \"string\",\n  \"state\": \"string\",\n  \"city\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 2827,\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"short_code\": 9687,\n  \"is_landline\": 9017,\n  \"is_toll_free\": true,\n  \"is_mobile\": 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\": true,\n  \"verified_status\": \"string\",\n  \"area_code\": {\n    \"id\": 5112,\n    \"area_code\": \"string\",\n    \"state_code\": \"string\",\n    \"state_name\": \"string\",\n    \"country_code\": \"string\",\n    \"time_zone\": \"string\",\n    \"group_id\": 1436\n  },\n  \"landline\": {\n    \"id\": 1530,\n    \"number_id\": 9734,\n    \"address_sid\": \"string\",\n    \"sid\": \"string\",\n    \"document_sid\": \"string\",\n    \"status\": \"string\",\n    \"verification_attempts\": 7512,\n    \"last_verify_attempt_at\": \"string\",\n    \"landline_name\": \"string\",\n    \"street_address\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"zip_code\": \"string\",\n    \"completed\": 5065,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_vendor\": {\n    \"id\": 9738,\n    \"is_active\": false,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"credentials_prefix\": \"string\",\n    \"twilio_sid\": \"string\",\n    \"twilio_auth_token\": \"string\",\n    \"is_billable\": 3237,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_caller_id\": {\n    \"caller_id_sid\": \"string\",\n    \"verified\": true,\n    \"failed_reason\": \"string\"\n  },\n  \"call_forwarding\": {\n    \"id\": 9558,\n    \"number_id\": 1596,\n    \"is_active\": true,\n    \"is_screening\": false,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"string\",\n    \"country\": \"string\",\n    \"number\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"extension\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"numberable_id\": 8105,\n  \"numberable_type\": \"string\",\n  \"numberable\": {\n    \"id\": 3997,\n    \"organization_id\": 4826,\n    \"owner_id\": 5297,\n    \"team_id\": 5576,\n    \"name\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"}],"_postman_id":"198706c6-6cbd-4483-b37f-14d518fc745b"}],"id":"3fd9eb04-f64d-4e92-9db8-3def2297cbf2","_postman_id":"3fd9eb04-f64d-4e92-9db8-3def2297cbf2","description":""}],"id":"7056a0dc-8218-483f-a3e5-c635bf50287c","_postman_id":"7056a0dc-8218-483f-a3e5-c635bf50287c","description":""},{"name":"filters","item":[{"name":"list","item":[{"name":"Get list of available conversation filters","id":"3dadcfcd-c95c-445e-808c-6552ffcf9df0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/filters/list","description":"<p>REQUIRED SCOPES <code>['conversations:read']</code></p>\n","urlObject":{"path":["conversations","filters","list"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"08f17e9b-1424-4e59-beda-648f26642867","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/filters/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"key\": \"string\",\n    \"value\": \"string\"\n  },\n  {\n    \"key\": \"string\",\n    \"value\": \"string\"\n  }\n]"},{"id":"253e5385-5c68-461f-82a2-046c0305d85f","name":"Unauthenticated","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.3/conversations/filters/list"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"66d764e6-0a27-45c4-a0c6-ca6b5c6c55bb","name":"Forbidden","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.3/conversations/filters/list"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3dadcfcd-c95c-445e-808c-6552ffcf9df0"}],"id":"b1fad858-7c53-43fa-a647-1035427111d9","_postman_id":"b1fad858-7c53-43fa-a647-1035427111d9","description":""}],"id":"13eef8c8-850a-4950-b4af-abb247bb2a93","_postman_id":"13eef8c8-850a-4950-b4af-abb247bb2a93","description":""},{"name":"orders","item":[{"name":"list","item":[{"name":"Get list of available conversation order types","id":"26723547-97cb-44f3-a1c2-5f5d6ed08c49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/orders/list","description":"<p>REQUIRED SCOPES <code>['conversations:read']</code></p>\n","urlObject":{"path":["conversations","orders","list"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"ed7a9747-4040-4d5c-a477-341764b03c23","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/orders/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"key\": \"string\",\n    \"label\": \"string\"\n  },\n  {\n    \"key\": \"string\",\n    \"label\": \"string\"\n  }\n]"},{"id":"fba165dc-1f73-4786-8c36-904d782aa288","name":"Unauthenticated","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.3/conversations/orders/list"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fcb48931-832a-4f0b-a24c-2dcf91d01e8e","name":"Forbidden","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.3/conversations/orders/list"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"26723547-97cb-44f3-a1c2-5f5d6ed08c49"}],"id":"85d93e74-190d-40ca-bb62-e3dc01b2bba7","_postman_id":"85d93e74-190d-40ca-bb62-e3dc01b2bba7","description":""}],"id":"81795f94-72dd-42eb-b338-ab70d6ebaace","_postman_id":"81795f94-72dd-42eb-b338-ab70d6ebaace","description":""},{"name":"search","item":[{"name":"Search active conversations","id":"99273d76-4a4d-4cf5-99f1-796e964d50fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations/search?contacts=1786&contacts=1861&teams=1786&teams=1861&per_page=50&page=1","description":"<p>REQUIRED SCOPES <code>['conversations:read']</code><br /> Returns active conversations filtered by contacts and teams, with pagination.</p>\n","urlObject":{"path":["conversations","search"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Contact IDs</p>\n","type":"text/plain"},"key":"contacts","value":"1786"},{"description":{"content":"<p>Contact IDs</p>\n","type":"text/plain"},"key":"contacts","value":"1861"},{"description":{"content":"<p>Team IDs</p>\n","type":"text/plain"},"key":"teams","value":"1786"},{"description":{"content":"<p>Team IDs</p>\n","type":"text/plain"},"key":"teams","value":"1861"},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"per_page","value":"50"},{"description":{"content":"<p>Page</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"b102109c-9029-4def-92e3-9d18998a7c19","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations/search?contacts=1861&teams=1861&per_page=50&page=1","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations","search"],"query":[{"description":"Contact IDs","key":"contacts","value":"1861"},{"description":"Team IDs","key":"teams","value":"1861"},{"description":"Results per page","key":"per_page","value":"50"},{"description":"Page","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\": 7985,\n      \"inbox_id\": 412,\n      \"contact_id\": 7452,\n      \"user_id\": 556,\n      \"last_message_at\": \"string\",\n      \"last_manual_message_at\": \"string\",\n      \"last_read_at\": \"string\",\n      \"has_tagging\": false,\n      \"tagging_last_message_at\": \"string\",\n      \"tagging_last_read_at\": \"string\",\n      \"started_at\": \"string\",\n      \"closed_at\": \"string\",\n      \"owner\": {\n        \"id\": 5383,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 6045,\n        \"organization_id\": 9928,\n        \"photo_url\": \"string\",\n        \"unread\": 8395,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 3989,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 8531,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      \"number_id\": 6773,\n      \"number\": {\n        \"id\": 9172,\n        \"organization_id\": 6515,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 6258,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 604,\n        \"is_landline\": 3800,\n        \"is_toll_free\": true,\n        \"is_mobile\": 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\": \"string\",\n        \"area_code\": {\n          \"id\": 3314,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 6921\n        },\n        \"landline\": {\n          \"id\": 2419,\n          \"number_id\": 8835,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 2506,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 136,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 1623,\n          \"is_active\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 1676,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 6091,\n          \"number_id\": 1301,\n          \"is_active\": false,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 1769,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 9279,\n          \"organization_id\": 1892,\n          \"owner_id\": 5382,\n          \"team_id\": 6774,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      \"allow_call\": false,\n      \"name\": \"string\",\n      \"group_name\": \"string\",\n      \"is_group\": true,\n      \"participants\": [\n        {\n          \"id\": 3501,\n          \"owner_id\": 3000,\n          \"color\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"email\": \"string\",\n          \"photo_url\": \"string\",\n          \"number\": \"string\",\n          \"country\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"typeted_number\": \"string\",\n          \"is_blocked\": false,\n          \"opt_out\": true,\n          \"opt_out_at\": \"string\",\n          \"opt_in_request_at\": \"string\",\n          \"opt_in_requests\": [\n            {\n              \"number_id\": 1199\n            },\n            {\n              \"number_id\": 4548\n            }\n          ],\n          \"opt_in_at\": \"string\",\n          \"shortcode_opt_outs\": [\n            {\n              \"id\": 7375,\n              \"number_id\": 1521,\n              \"name\": \"string\",\n              \"disabled\": false,\n              \"timestamp\": \"string\",\n              \"value\": true\n            },\n            {\n              \"id\": 6451,\n              \"number_id\": 1506,\n              \"name\": \"string\",\n              \"disabled\": false,\n              \"timestamp\": \"string\",\n              \"value\": true\n            }\n          ],\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"integration_vendor_id\": 1221,\n          \"prevent_autolink\": true,\n          \"integration\": [\n            {\n              \"id\": 5444,\n              \"key\": \"string\",\n              \"name\": \"string\",\n              \"photo_url\": \"string\"\n            },\n            {\n              \"id\": 5722,\n              \"key\": \"string\",\n              \"name\": \"string\",\n              \"photo_url\": \"string\"\n            }\n          ],\n          \"custom_fields\": [\n            {\n              \"id\": 873,\n              \"custom_field_id\": 7973,\n              \"contact_id\": 865,\n              \"field_key\": \"string\",\n              \"organization_id\": 4657,\n              \"text\": \"string\",\n              \"number\": 3746,\n              \"date\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\",\n              \"value\": [\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"id\": 8082,\n              \"custom_field_id\": 2132,\n              \"contact_id\": 4850,\n              \"field_key\": \"string\",\n              \"organization_id\": 2182,\n              \"text\": \"string\",\n              \"number\": 8995,\n              \"date\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\",\n              \"value\": [\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ],\n          \"tags\": [\n            {\n              \"id\": 4147,\n              \"name\": \"string\",\n              \"label\": \"string\",\n              \"created_at\": \"string\"\n            },\n            {\n              \"id\": 1721,\n              \"name\": \"string\",\n              \"label\": \"string\",\n              \"created_at\": \"string\"\n            }\n          ],\n          \"notes\": [\n            {\n              \"id\": 2012,\n              \"text\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\"\n            },\n            {\n              \"id\": 2412,\n              \"text\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 5777,\n          \"owner_id\": 2979,\n          \"color\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"email\": \"string\",\n          \"photo_url\": \"string\",\n          \"number\": \"string\",\n          \"country\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"typeted_number\": \"string\",\n          \"is_blocked\": false,\n          \"opt_out\": false,\n          \"opt_out_at\": \"string\",\n          \"opt_in_request_at\": \"string\",\n          \"opt_in_requests\": [\n            {\n              \"number_id\": 8660\n            },\n            {\n              \"number_id\": 5800\n            }\n          ],\n          \"opt_in_at\": \"string\",\n          \"shortcode_opt_outs\": [\n            {\n              \"id\": 9414,\n              \"number_id\": 6773,\n              \"name\": \"string\",\n              \"disabled\": false,\n              \"timestamp\": \"string\",\n              \"value\": true\n            },\n            {\n              \"id\": 2704,\n              \"number_id\": 7203,\n              \"name\": \"string\",\n              \"disabled\": true,\n              \"timestamp\": \"string\",\n              \"value\": false\n            }\n          ],\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"integration_vendor_id\": 7694,\n          \"prevent_autolink\": true,\n          \"integration\": [\n            {\n              \"id\": 1542,\n              \"key\": \"string\",\n              \"name\": \"string\",\n              \"photo_url\": \"string\"\n            },\n            {\n              \"id\": 6491,\n              \"key\": \"string\",\n              \"name\": \"string\",\n              \"photo_url\": \"string\"\n            }\n          ],\n          \"custom_fields\": [\n            {\n              \"id\": 5950,\n              \"custom_field_id\": 8200,\n              \"contact_id\": 5993,\n              \"field_key\": \"string\",\n              \"organization_id\": 6866,\n              \"text\": \"string\",\n              \"number\": 3268,\n              \"date\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\",\n              \"value\": [\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"id\": 2495,\n              \"custom_field_id\": 6495,\n              \"contact_id\": 5399,\n              \"field_key\": \"string\",\n              \"organization_id\": 2164,\n              \"text\": \"string\",\n              \"number\": 3367,\n              \"date\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\",\n              \"value\": [\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ],\n          \"tags\": [\n            {\n              \"id\": 2658,\n              \"name\": \"string\",\n              \"label\": \"string\",\n              \"created_at\": \"string\"\n            },\n            {\n              \"id\": 7195,\n              \"name\": \"string\",\n              \"label\": \"string\",\n              \"created_at\": \"string\"\n            }\n          ],\n          \"notes\": [\n            {\n              \"id\": 7166,\n              \"text\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\"\n            },\n            {\n              \"id\": 362,\n              \"text\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"reassign_logs\": [\n        {\n          \"id\": 2332,\n          \"conversation_id\": 9059,\n          \"organization_id\": 8007,\n          \"changer_user\": [\n            {\n              \"user_id\": 156,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            },\n            {\n              \"user_id\": 1177,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            }\n          ],\n          \"current_user\": [\n            {\n              \"user_id\": 3067,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            },\n            {\n              \"user_id\": 6948,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            }\n          ],\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 6343,\n          \"conversation_id\": 2584,\n          \"organization_id\": 5470,\n          \"changer_user\": [\n            {\n              \"user_id\": 8221,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            },\n            {\n              \"user_id\": 5178,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            }\n          ],\n          \"current_user\": [\n            {\n              \"user_id\": 5209,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            },\n            {\n              \"user_id\": 5376,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            }\n          ],\n          \"created_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 9774,\n      \"inbox_id\": 2677,\n      \"contact_id\": 8809,\n      \"user_id\": 2568,\n      \"last_message_at\": \"string\",\n      \"last_manual_message_at\": \"string\",\n      \"last_read_at\": \"string\",\n      \"has_tagging\": true,\n      \"tagging_last_message_at\": \"string\",\n      \"tagging_last_read_at\": \"string\",\n      \"started_at\": \"string\",\n      \"closed_at\": \"string\",\n      \"owner\": {\n        \"id\": 8355,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 6120,\n        \"organization_id\": 5776,\n        \"photo_url\": \"string\",\n        \"unread\": 7009,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": false,\n        \"organizationNumber\": [\n          {\n            \"id\": 5651,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 7714,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      \"number_id\": 1216,\n      \"number\": {\n        \"id\": 2316,\n        \"organization_id\": 8914,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 8758,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 3137,\n        \"is_landline\": 3950,\n        \"is_toll_free\": false,\n        \"is_mobile\": true,\n        \"is_aircall\": true,\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\": \"string\",\n        \"area_code\": {\n          \"id\": 3859,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 1157\n        },\n        \"landline\": {\n          \"id\": 4876,\n          \"number_id\": 4033,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 4620,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 1072,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 9481,\n          \"is_active\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 328,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 2865,\n          \"number_id\": 8018,\n          \"is_active\": false,\n          \"is_screening\": false,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 8726,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 4,\n          \"organization_id\": 3438,\n          \"owner_id\": 1388,\n          \"team_id\": 544,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      \"allow_call\": true,\n      \"name\": \"string\",\n      \"group_name\": \"string\",\n      \"is_group\": true,\n      \"participants\": [\n        {\n          \"id\": 1026,\n          \"owner_id\": 8954,\n          \"color\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"email\": \"string\",\n          \"photo_url\": \"string\",\n          \"number\": \"string\",\n          \"country\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"typeted_number\": \"string\",\n          \"is_blocked\": false,\n          \"opt_out\": true,\n          \"opt_out_at\": \"string\",\n          \"opt_in_request_at\": \"string\",\n          \"opt_in_requests\": [\n            {\n              \"number_id\": 2370\n            },\n            {\n              \"number_id\": 1276\n            }\n          ],\n          \"opt_in_at\": \"string\",\n          \"shortcode_opt_outs\": [\n            {\n              \"id\": 8445,\n              \"number_id\": 2003,\n              \"name\": \"string\",\n              \"disabled\": false,\n              \"timestamp\": \"string\",\n              \"value\": false\n            },\n            {\n              \"id\": 8908,\n              \"number_id\": 6630,\n              \"name\": \"string\",\n              \"disabled\": true,\n              \"timestamp\": \"string\",\n              \"value\": true\n            }\n          ],\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"integration_vendor_id\": 354,\n          \"prevent_autolink\": false,\n          \"integration\": [\n            {\n              \"id\": 602,\n              \"key\": \"string\",\n              \"name\": \"string\",\n              \"photo_url\": \"string\"\n            },\n            {\n              \"id\": 2588,\n              \"key\": \"string\",\n              \"name\": \"string\",\n              \"photo_url\": \"string\"\n            }\n          ],\n          \"custom_fields\": [\n            {\n              \"id\": 4716,\n              \"custom_field_id\": 3431,\n              \"contact_id\": 790,\n              \"field_key\": \"string\",\n              \"organization_id\": 276,\n              \"text\": \"string\",\n              \"number\": 2560,\n              \"date\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\",\n              \"value\": [\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"id\": 8101,\n              \"custom_field_id\": 7818,\n              \"contact_id\": 5860,\n              \"field_key\": \"string\",\n              \"organization_id\": 5356,\n              \"text\": \"string\",\n              \"number\": 6227,\n              \"date\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\",\n              \"value\": [\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ],\n          \"tags\": [\n            {\n              \"id\": 8462,\n              \"name\": \"string\",\n              \"label\": \"string\",\n              \"created_at\": \"string\"\n            },\n            {\n              \"id\": 3920,\n              \"name\": \"string\",\n              \"label\": \"string\",\n              \"created_at\": \"string\"\n            }\n          ],\n          \"notes\": [\n            {\n              \"id\": 7053,\n              \"text\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\"\n            },\n            {\n              \"id\": 9921,\n              \"text\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 1112,\n          \"owner_id\": 4146,\n          \"color\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"email\": \"string\",\n          \"photo_url\": \"string\",\n          \"number\": \"string\",\n          \"country\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"typeted_number\": \"string\",\n          \"is_blocked\": true,\n          \"opt_out\": false,\n          \"opt_out_at\": \"string\",\n          \"opt_in_request_at\": \"string\",\n          \"opt_in_requests\": [\n            {\n              \"number_id\": 7980\n            },\n            {\n              \"number_id\": 2169\n            }\n          ],\n          \"opt_in_at\": \"string\",\n          \"shortcode_opt_outs\": [\n            {\n              \"id\": 4574,\n              \"number_id\": 5056,\n              \"name\": \"string\",\n              \"disabled\": true,\n              \"timestamp\": \"string\",\n              \"value\": true\n            },\n            {\n              \"id\": 3303,\n              \"number_id\": 7135,\n              \"name\": \"string\",\n              \"disabled\": false,\n              \"timestamp\": \"string\",\n              \"value\": false\n            }\n          ],\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"integration_vendor_id\": 1061,\n          \"prevent_autolink\": false,\n          \"integration\": [\n            {\n              \"id\": 2706,\n              \"key\": \"string\",\n              \"name\": \"string\",\n              \"photo_url\": \"string\"\n            },\n            {\n              \"id\": 7134,\n              \"key\": \"string\",\n              \"name\": \"string\",\n              \"photo_url\": \"string\"\n            }\n          ],\n          \"custom_fields\": [\n            {\n              \"id\": 2785,\n              \"custom_field_id\": 915,\n              \"contact_id\": 9893,\n              \"field_key\": \"string\",\n              \"organization_id\": 6215,\n              \"text\": \"string\",\n              \"number\": 4945,\n              \"date\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\",\n              \"value\": [\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            },\n            {\n              \"id\": 8578,\n              \"custom_field_id\": 3942,\n              \"contact_id\": 9244,\n              \"field_key\": \"string\",\n              \"organization_id\": 4486,\n              \"text\": \"string\",\n              \"number\": 2330,\n              \"date\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\",\n              \"value\": [\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                },\n                {\n                  \"type\": \"string\",\n                  \"value\": \"string\"\n                }\n              ]\n            }\n          ],\n          \"tags\": [\n            {\n              \"id\": 9581,\n              \"name\": \"string\",\n              \"label\": \"string\",\n              \"created_at\": \"string\"\n            },\n            {\n              \"id\": 2659,\n              \"name\": \"string\",\n              \"label\": \"string\",\n              \"created_at\": \"string\"\n            }\n          ],\n          \"notes\": [\n            {\n              \"id\": 8779,\n              \"text\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\"\n            },\n            {\n              \"id\": 7958,\n              \"text\": \"string\",\n              \"created_at\": \"string\",\n              \"updated_at\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"reassign_logs\": [\n        {\n          \"id\": 6456,\n          \"conversation_id\": 8036,\n          \"organization_id\": 1248,\n          \"changer_user\": [\n            {\n              \"user_id\": 5864,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            },\n            {\n              \"user_id\": 8435,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            }\n          ],\n          \"current_user\": [\n            {\n              \"user_id\": 985,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            },\n            {\n              \"user_id\": 2444,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            }\n          ],\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 4907,\n          \"conversation_id\": 3,\n          \"organization_id\": 1326,\n          \"changer_user\": [\n            {\n              \"user_id\": 1334,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            },\n            {\n              \"user_id\": 5518,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            }\n          ],\n          \"current_user\": [\n            {\n              \"user_id\": 3132,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            },\n            {\n              \"user_id\": 768,\n              \"first_name\": \"string\",\n              \"last_name\": \"string\"\n            }\n          ],\n          \"created_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"total\": 418,\n  \"errors\": [\n    \"string\",\n    \"string\"\n  ]\n}"}],"_postman_id":"99273d76-4a4d-4cf5-99f1-796e964d50fa"}],"id":"5d663fc3-1535-4ca7-a58c-7fc5df5f89bf","_postman_id":"5d663fc3-1535-4ca7-a58c-7fc5df5f89bf","description":""},{"name":"Get user`s conversations","id":"9b8ab756-7d75-4dcc-9478-1b7ec6020c6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations?filter=open&limit=10&offset=&before=&after=&exclude=&query=&grouped_response=","description":"<p>REQUIRED SCOPES <code>['conversations:read']</code><br /> 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.3"],"query":[{"description":{"content":"<p>Filter (assigned,unassigned only if current user is on team)</p>\n","type":"text/plain"},"key":"filter","value":"open"},{"description":{"content":"<p>Limit</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Offset</p>\n","type":"text/plain"},"key":"offset","value":""},{"description":{"content":"<p>Last message before</p>\n","type":"text/plain"},"key":"before","value":""},{"description":{"content":"<p>Last message after</p>\n","type":"text/plain"},"key":"after","value":""},{"description":{"content":"<p>Exclude conversation by id</p>\n","type":"text/plain"},"key":"exclude","value":""},{"description":{"content":"<p>Contact first_name, last_name, email, number</p>\n","type":"text/plain"},"key":"query","value":""},{"description":{"content":"<p>Is return grouped response</p>\n","type":"text/plain"},"key":"grouped_response","value":""}],"variable":[]}},"response":[{"id":"4d301f04-8838-4f61-a7c1-24db301908de","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations?filter=open&limit=10&offset=&before=&after=&exclude=&query=&grouped_response=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations"],"query":[{"description":"Filter (assigned,unassigned only if current user is on team)","key":"filter","value":"open"},{"description":"Limit","key":"limit","value":"10"},{"description":"Offset","key":"offset","value":""},{"description":"Last message before","key":"before","value":""},{"description":"Last message after","key":"after","value":""},{"description":"Exclude conversation by id","key":"exclude","value":""},{"description":"Contact first_name, last_name, email, number","key":"query","value":""},{"description":"Is return grouped response","key":"grouped_response","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 3643,\n    \"inbox_id\": 7536,\n    \"contact_id\": 9571,\n    \"user_id\": 4041,\n    \"last_message_at\": \"string\",\n    \"last_manual_message_at\": \"string\",\n    \"last_read_at\": \"string\",\n    \"has_tagging\": false,\n    \"tagging_last_message_at\": \"string\",\n    \"tagging_last_read_at\": \"string\",\n    \"started_at\": \"string\",\n    \"closed_at\": \"string\",\n    \"owner\": {\n      \"id\": 8527,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 4292,\n      \"organization_id\": 8646,\n      \"photo_url\": \"string\",\n      \"unread\": 6773,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": true,\n      \"organizationNumber\": [\n        {\n          \"id\": 9809,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 9057,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    \"number_id\": 6195,\n    \"number\": {\n      \"id\": 672,\n      \"organization_id\": 9328,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 3888,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5419,\n      \"is_landline\": 2978,\n      \"is_toll_free\": false,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 4133,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5623\n      },\n      \"landline\": {\n        \"id\": 8193,\n        \"number_id\": 9913,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 960,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8138,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4583,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 114,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 9970,\n        \"number_id\": 6142,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 5480,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 3539,\n        \"organization_id\": 4014,\n        \"owner_id\": 1423,\n        \"team_id\": 6536,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"allow_call\": true,\n    \"name\": \"string\",\n    \"group_name\": \"string\",\n    \"is_group\": true,\n    \"participants\": [\n      {\n        \"id\": 8588,\n        \"owner_id\": 456,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": false,\n        \"opt_out\": false,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 1534\n          },\n          {\n            \"number_id\": 233\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 3912,\n            \"number_id\": 3799,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 2427,\n            \"number_id\": 551,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 1365,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": 6597,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 6304,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 4371,\n            \"custom_field_id\": 6356,\n            \"contact_id\": 6922,\n            \"field_key\": \"string\",\n            \"organization_id\": 2913,\n            \"text\": \"string\",\n            \"number\": 423,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 6019,\n            \"custom_field_id\": 7276,\n            \"contact_id\": 5705,\n            \"field_key\": \"string\",\n            \"organization_id\": 3614,\n            \"text\": \"string\",\n            \"number\": 8095,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 2720,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 243,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 2420,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 5916,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 429,\n        \"owner_id\": 8948,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 3900\n          },\n          {\n            \"number_id\": 85\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 1681,\n            \"number_id\": 9629,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 6199,\n            \"number_id\": 2919,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 5299,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 783,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 3571,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 4709,\n            \"custom_field_id\": 5035,\n            \"contact_id\": 2013,\n            \"field_key\": \"string\",\n            \"organization_id\": 5155,\n            \"text\": \"string\",\n            \"number\": 4554,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 4731,\n            \"custom_field_id\": 5829,\n            \"contact_id\": 546,\n            \"field_key\": \"string\",\n            \"organization_id\": 5184,\n            \"text\": \"string\",\n            \"number\": 2631,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 216,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 1790,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 8121,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 120,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"reassign_logs\": [\n      {\n        \"id\": 1631,\n        \"conversation_id\": 4194,\n        \"organization_id\": 5599,\n        \"changer_user\": [\n          {\n            \"user_id\": 9980,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 1899,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 1820,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 9445,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 1583,\n        \"conversation_id\": 5383,\n        \"organization_id\": 7195,\n        \"changer_user\": [\n          {\n            \"user_id\": 2416,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 5994,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 1276,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 2740,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"created_at\": \"string\"\n      }\n    ]\n  },\n  {\n    \"id\": 9088,\n    \"inbox_id\": 1092,\n    \"contact_id\": 5152,\n    \"user_id\": 5721,\n    \"last_message_at\": \"string\",\n    \"last_manual_message_at\": \"string\",\n    \"last_read_at\": \"string\",\n    \"has_tagging\": true,\n    \"tagging_last_message_at\": \"string\",\n    \"tagging_last_read_at\": \"string\",\n    \"started_at\": \"string\",\n    \"closed_at\": \"string\",\n    \"owner\": {\n      \"id\": 454,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 6383,\n      \"organization_id\": 8521,\n      \"photo_url\": \"string\",\n      \"unread\": 2532,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": true,\n      \"organizationNumber\": [\n        {\n          \"id\": 7683,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 9783,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    \"number_id\": 2234,\n    \"number\": {\n      \"id\": 6484,\n      \"organization_id\": 1868,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 4496,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5065,\n      \"is_landline\": 6806,\n      \"is_toll_free\": true,\n      \"is_mobile\": false,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 1505,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7991\n      },\n      \"landline\": {\n        \"id\": 5541,\n        \"number_id\": 4504,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 2276,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 6960,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 5728,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 5963,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 7642,\n        \"number_id\": 7569,\n        \"is_active\": false,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 8569,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 6308,\n        \"organization_id\": 34,\n        \"owner_id\": 9489,\n        \"team_id\": 2949,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"allow_call\": false,\n    \"name\": \"string\",\n    \"group_name\": \"string\",\n    \"is_group\": true,\n    \"participants\": [\n      {\n        \"id\": 6435,\n        \"owner_id\": 4401,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": true,\n        \"opt_out\": true,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 8620\n          },\n          {\n            \"number_id\": 5041\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 7923,\n            \"number_id\": 3784,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": false\n          },\n          {\n            \"id\": 4106,\n            \"number_id\": 3455,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 2795,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 7710,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 2040,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 9512,\n            \"custom_field_id\": 2167,\n            \"contact_id\": 7089,\n            \"field_key\": \"string\",\n            \"organization_id\": 2439,\n            \"text\": \"string\",\n            \"number\": 2489,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 5724,\n            \"custom_field_id\": 5799,\n            \"contact_id\": 73,\n            \"field_key\": \"string\",\n            \"organization_id\": 6179,\n            \"text\": \"string\",\n            \"number\": 8765,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 8505,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 4587,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 8843,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 3793,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 4912,\n        \"owner_id\": 3567,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 4838\n          },\n          {\n            \"number_id\": 5483\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 6668,\n            \"number_id\": 8821,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 2217,\n            \"number_id\": 5022,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 7577,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 9035,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 2326,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 8118,\n            \"custom_field_id\": 8342,\n            \"contact_id\": 9884,\n            \"field_key\": \"string\",\n            \"organization_id\": 3384,\n            \"text\": \"string\",\n            \"number\": 5343,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 6628,\n            \"custom_field_id\": 5959,\n            \"contact_id\": 3822,\n            \"field_key\": \"string\",\n            \"organization_id\": 3120,\n            \"text\": \"string\",\n            \"number\": 4919,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 401,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 1122,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 8704,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 7756,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"reassign_logs\": [\n      {\n        \"id\": 665,\n        \"conversation_id\": 5856,\n        \"organization_id\": 2556,\n        \"changer_user\": [\n          {\n            \"user_id\": 5720,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 6190,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 4358,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 3857,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7085,\n        \"conversation_id\": 1383,\n        \"organization_id\": 4251,\n        \"changer_user\": [\n          {\n            \"user_id\": 6116,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 8912,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"current_user\": [\n          {\n            \"user_id\": 9072,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          },\n          {\n            \"user_id\": 9862,\n            \"first_name\": \"string\",\n            \"last_name\": \"string\"\n          }\n        ],\n        \"created_at\": \"string\"\n      }\n    ]\n  }\n]"}],"_postman_id":"9b8ab756-7d75-4dcc-9478-1b7ec6020c6e"},{"name":"Start a new conversation","id":"c8b1477b-9469-4bbf-babd-a5d837bc29ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversations?contact_id=1&team_id=0&number_id=0&smart_option=","description":"<p>REQUIRED SCOPES <code>['conversations:write']</code><br /> 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.3"],"query":[{"description":{"content":"<p>Contact ID</p>\n","type":"text/plain"},"key":"contact_id","value":"1"},{"description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"key":"team_id","value":"0"},{"description":{"content":"<p>Number ID</p>\n","type":"text/plain"},"key":"number_id","value":"0"},{"description":{"content":"<p>'scaler' or 'local_presence'</p>\n","type":"text/plain"},"key":"smart_option","value":""}],"variable":[]}},"response":[{"id":"44840dbc-75a8-4045-b691-56f142956a90","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversations?contact_id=1&team_id=0&number_id=0&smart_option=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations"],"query":[{"description":"Contact ID","key":"contact_id","value":"1"},{"description":"Team ID","key":"team_id","value":"0"},{"description":"Number ID","key":"number_id","value":"0"},{"description":"'scaler' or 'local_presence'","key":"smart_option","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 5149,\n  \"inbox_id\": 3011,\n  \"contact_id\": 5748,\n  \"user_id\": 824,\n  \"last_message_at\": \"string\",\n  \"last_read_at\": \"string\",\n  \"started_at\": \"string\",\n  \"closed_at\": \"string\",\n  \"contact\": {\n    \"id\": 9982,\n    \"owner_id\": 4713,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"opt_out\": \"string\",\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_at\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": \"string\",\n    \"prevent_autolink\": false,\n    \"integration\": {\n      \"id\": 4062,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    \"tags\": [\n      [\n        {\n          \"id\": 7541,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 787,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      [\n        {\n          \"id\": 7766,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 5713,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ]\n    ]\n  },\n  \"owner\": {\n    \"id\": 9858,\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"photo_url\": \"string\",\n    \"email\": \"string\"\n  },\n  \"recent_message\": [\n    {\n      \"id\": 7291,\n      \"body\": \"string\",\n      \"user_id\": 2554,\n      \"type\": \"string\",\n      \"sent_at\": \"string\",\n      \"status\": \"string\"\n    },\n    {\n      \"id\": 5409,\n      \"body\": \"string\",\n      \"user_id\": 7376,\n      \"type\": \"string\",\n      \"sent_at\": \"string\",\n      \"status\": \"string\"\n    }\n  ]\n}"},{"id":"2b713894-9636-46a3-b770-84fde35575d1","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.3/conversations?contact_id=1&team_id=0&number_id=0&smart_option=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversations"],"query":[{"description":"Contact ID","key":"contact_id","value":"1"},{"description":"Team ID","key":"team_id","value":"0"},{"description":"Number ID","key":"number_id","value":"0"},{"description":"'scaler' or 'local_presence'","key":"smart_option","value":""}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c8b1477b-9469-4bbf-babd-a5d837bc29ea"}],"id":"52b44c37-0c13-407f-81ab-789e812e6cc0","_postman_id":"52b44c37-0c13-407f-81ab-789e812e6cc0","description":""},{"name":"conversions","item":[{"name":"Get list conversions","id":"0e7ff7cf-5579-4bf7-85fb-6546e4ceff2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversions?sortOrder=asc&sortBy=string&page=2491&length=2491&search=string","description":"<p>REQUIRED SCOPES <code>['conversions:read']</code><br />Get list conversions</p>\n","urlObject":{"path":["conversions"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Sorting order</p>\n","type":"text/plain"},"key":"sortOrder","value":"asc"},{"description":{"content":"<p>Sort by field...</p>\n","type":"text/plain"},"key":"sortBy","value":"string"},{"description":{"content":"<p>Page</p>\n","type":"text/plain"},"key":"page","value":"2491"},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"length","value":"2491"},{"description":{"content":"<p>Filter by...</p>\n","type":"text/plain"},"key":"search","value":"string"}],"variable":[]}},"response":[{"id":"e11b789f-215c-4c18-b03d-5b302844ee45","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversions?sortOrder=asc&sortBy=string&page=2491&length=2491&search=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversions"],"query":[{"description":"Sorting order","key":"sortOrder","value":"asc"},{"description":"Sort by field...","key":"sortBy","value":"string"},{"description":"Page","key":"page","value":"2491"},{"description":"Results per page","key":"length","value":"2491"},{"description":"Filter by...","key":"search","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5576,\n    \"name\": \"string\",\n    \"currency\": \"string\",\n    \"verified_at\": \"string\",\n    \"default_value\": \"string\",\n    \"conversion_url\": \"string\",\n    \"conversion_attribution\": \"string\",\n    \"analytics\": {}\n  },\n  {\n    \"id\": 2307,\n    \"name\": \"string\",\n    \"currency\": \"string\",\n    \"verified_at\": \"string\",\n    \"default_value\": \"string\",\n    \"conversion_url\": \"string\",\n    \"conversion_attribution\": \"string\",\n    \"analytics\": {}\n  }\n]"}],"_postman_id":"0e7ff7cf-5579-4bf7-85fb-6546e4ceff2d"},{"name":"Create conversion","id":"23f8f21d-2136-450d-b054-c69a49c81956","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/conversions?name=string&conversion_url=string&currency=string&conversion_attribution=2491&default_value=2491","description":"<p>REQUIRED SCOPES <code>['conversions:write']</code><br />Create conversion</p>\n","urlObject":{"path":["conversions"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Conversion name</p>\n","type":"text/plain"},"key":"name","value":"string"},{"description":{"content":"<p>Conversion url</p>\n","type":"text/plain"},"key":"conversion_url","value":"string"},{"description":{"content":"<p>Currency</p>\n","type":"text/plain"},"key":"currency","value":"string"},{"description":{"content":"<p>Conversion attribution</p>\n","type":"text/plain"},"key":"conversion_attribution","value":"2491"},{"description":{"content":"<p>Conversion default value</p>\n","type":"text/plain"},"key":"default_value","value":"2491"}],"variable":[]}},"response":[{"id":"ade3530e-d3fb-47a5-88fa-1c361fe45ece","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/conversions?name=string&conversion_url=string&currency=string&conversion_attribution=2491&default_value=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["conversions"],"query":[{"description":"Conversion name","key":"name","value":"string"},{"description":"Conversion url","key":"conversion_url","value":"string"},{"description":"Currency","key":"currency","value":"string"},{"description":"Conversion attribution","key":"conversion_attribution","value":"2491"},{"description":"Conversion default value","key":"default_value","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9203,\n  \"name\": \"string\",\n  \"currency\": \"string\",\n  \"verified_at\": \"string\",\n  \"default_value\": \"string\",\n  \"conversion_url\": \"string\",\n  \"conversion_attribution\": \"string\",\n  \"analytics\": {}\n}"}],"_postman_id":"23f8f21d-2136-450d-b054-c69a49c81956"}],"id":"f65faade-7f1d-4927-a661-b043f0f68622","_postman_id":"f65faade-7f1d-4927-a661-b043f0f68622","description":""},{"name":"custom-fields","item":[{"name":"field","item":[{"name":"{customField}","item":[{"name":"Update custom field","id":"8df6efb0-3856-4e88-9f1b-696e10695134","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/custom-fields/field/:customField?name=First Name&type=text&visible=true","description":"<p>REQUIRED SCOPES <code>['custom-fields:write']</code><br />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.3"],"query":[{"description":{"content":"<p>Field name</p>\n","type":"text/plain"},"key":"name","value":"First Name"},{"description":{"content":"<p>Type</p>\n","type":"text/plain"},"key":"type","value":"text"},{"description":{"content":"<p>Show in сonversations</p>\n","type":"text/plain"},"key":"visible","value":"true"}],"variable":[{"id":"d84d294c-86f2-48c8-8224-e24770d9600e","description":{"content":"<p>Custom field id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"customField"}]}},"response":[{"id":"2765d9c7-595e-4a10-8ed2-924438e3b7e2","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/custom-fields/field/:customField?name=First Name&type=text&visible=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["custom-fields","field",":customField"],"query":[{"description":"Field name","key":"name","value":"First Name"},{"description":"Type","key":"type","value":"text"},{"description":"Show in сonversations","key":"visible","value":"true"}],"variable":[{"key":"customField","value":"1","description":"Custom field id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\",\n  \"data\": {\n    \"id\": 2315,\n    \"organization_id\": 7482,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"type\": \"string\",\n    \"visible\": 8553\n  }\n}"},{"id":"c0912344-977c-4b0d-a81d-2f277d44d575","name":"Error","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/custom-fields/field/:customField?name=First Name&type=text&visible=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["custom-fields","field",":customField"],"query":[{"description":"Field name","key":"name","value":"First Name"},{"description":"Type","key":"type","value":"text"},{"description":"Show in сonversations","key":"visible","value":"true"}],"variable":[{"key":"customField","value":"1","description":"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\": \"string\",\n  \"code\": \"string\",\n  \"message\": \"string\"\n}"}],"_postman_id":"8df6efb0-3856-4e88-9f1b-696e10695134"},{"name":"Delete custom field","id":"66b40cbc-ca67-4b31-81ea-7849b77ff4b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/custom-fields/field/:customField","description":"<p>REQUIRED SCOPES <code>['custom-fields:write']</code><br />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.3"],"query":[],"variable":[{"id":"8e650ba0-e3ec-47fc-b3a8-f40cd980bfd9","description":{"content":"<p>Custom field id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"customField"}]}},"response":[{"id":"10772314-aea7-4998-bbdd-575bdadc30f6","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/custom-fields/field/:customField","host":["https://api.salesmessage.com/pub/v2.3"],"path":["custom-fields","field",":customField"],"variable":[{"key":"customField","value":"1","description":"Custom field id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\",\n  \"data\": {\n    \"id\": 2315,\n    \"organization_id\": 7482,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"type\": \"string\",\n    \"visible\": 8553\n  }\n}"},{"id":"63748e91-8e99-4ef1-bfed-81e893bbe289","name":"Error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/custom-fields/field/:customField","host":["https://api.salesmessage.com/pub/v2.3"],"path":["custom-fields","field",":customField"],"variable":[{"key":"customField","value":"1","description":"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\": \"string\",\n  \"code\": \"string\",\n  \"message\": \"string\"\n}"}],"_postman_id":"66b40cbc-ca67-4b31-81ea-7849b77ff4b1"}],"id":"2b9e9890-14c7-4a8a-aafe-cb449eda6558","_postman_id":"2b9e9890-14c7-4a8a-aafe-cb449eda6558","description":""},{"name":"Create custom field","id":"4f65dc8e-dc66-4d5f-a918-7e11ed42c611","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/custom-fields/field?name=First Name&type=text&visible=true","description":"<p>REQUIRED SCOPES <code>['custom-fields:write']</code><br />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.3"],"query":[{"description":{"content":"<p>Field name</p>\n","type":"text/plain"},"key":"name","value":"First Name"},{"description":{"content":"<p>Type</p>\n","type":"text/plain"},"key":"type","value":"text"},{"description":{"content":"<p>Show in сonversations</p>\n","type":"text/plain"},"key":"visible","value":"true"}],"variable":[]}},"response":[{"id":"b466d66d-879a-4761-ae3b-2b7ed28c6408","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/custom-fields/field?name=First Name&type=text&visible=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["custom-fields","field"],"query":[{"description":"Field name","key":"name","value":"First Name"},{"description":"Type","key":"type","value":"text"},{"description":"Show in сonversations","key":"visible","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\",\n  \"data\": {\n    \"id\": 9934,\n    \"organization_id\": 6067,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"type\": \"string\",\n    \"visible\": 4430\n  }\n}"},{"id":"2e6bb37f-2950-4d50-87bd-745017efa18b","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/custom-fields/field?name=First Name&type=text&visible=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["custom-fields","field"],"query":[{"description":"Field name","key":"name","value":"First Name"},{"description":"Type","key":"type","value":"text"},{"description":"Show in сonversations","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\": \"string\",\n  \"code\": \"string\",\n  \"message\": \"string\"\n}"}],"_postman_id":"4f65dc8e-dc66-4d5f-a918-7e11ed42c611"}],"id":"04a99692-2d13-4823-a9e3-170259ee1966","_postman_id":"04a99692-2d13-4823-a9e3-170259ee1966","description":""},{"name":"types","item":[{"name":"Get available custom field types","id":"1dba8b26-069c-4d09-ac1d-ac5e2ebe68a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/custom-fields/types","description":"<p>REQUIRED SCOPES <code>['custom-fields:read']</code><br />Get available custom field types</p>\n","urlObject":{"path":["custom-fields","types"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"589a3f0f-1823-43f1-9346-b03bbd98ca10","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/custom-fields/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"types\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"f5853f88-00c8-489a-9445-55a901760e40","name":"Unauthenticated","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.3/custom-fields/types"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1cfa621f-bb31-4cee-9bc4-d9c5db3a08f0","name":"Forbidden","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.3/custom-fields/types"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1dba8b26-069c-4d09-ac1d-ac5e2ebe68a9"}],"id":"e9f9873f-ed15-4469-8cab-854fd0dbd94c","_postman_id":"e9f9873f-ed15-4469-8cab-854fd0dbd94c","description":""},{"name":"fields","item":[{"name":"Get custom fields","id":"059deb62-2870-4cc4-b2ca-484c820ab4dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/custom-fields/fields?search=&length=&page=","description":"<p>REQUIRED SCOPES <code>['custom-fields:read']</code><br />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.3"],"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":"0523a313-28bf-476a-830e-f3614884f475","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/custom-fields/fields?search=&length=&page=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["custom-fields","fields"],"query":[{"description":"Filter by name","key":"search","value":""},{"description":"Results per page","key":"length","value":""},{"description":"Page","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\": 1674,\n      \"organization_id\": 2623,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"visible\": 6298\n    },\n    {\n      \"id\": 2436,\n      \"organization_id\": 4940,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"visible\": 1674\n    }\n  ]\n}"},{"id":"6c6422f1-d9dc-4ecb-8caa-5a539e08ac99","name":"Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/custom-fields/fields?search=&length=&page=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["custom-fields","fields"],"query":[{"description":"Filter by name","key":"search","value":""},{"description":"Results per page","key":"length","value":""},{"description":"Page","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\": 7473,\n  \"message\": \"string\"\n}"}],"_postman_id":"059deb62-2870-4cc4-b2ca-484c820ab4dd"}],"id":"27aa5d6c-43b6-49bd-b15b-c7e7305ee4ee","_postman_id":"27aa5d6c-43b6-49bd-b15b-c7e7305ee4ee","description":""},{"name":"{customField}","item":[{"name":"Get custom field","id":"f7b8c95a-7ed2-4af2-bd9e-8459e32dd7e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/custom-fields/:customField","description":"<p>REQUIRED SCOPES <code>['custom-fields:read']</code><br />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.3"],"query":[],"variable":[{"id":"5c150d45-cd49-400e-8c08-af4cb7000422","description":{"content":"<p>Custom field id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"customField"}]}},"response":[{"id":"dddbaca4-538d-4265-b11a-aa34c2ae570f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/custom-fields/:customField","host":["https://api.salesmessage.com/pub/v2.3"],"path":["custom-fields",":customField"],"variable":[{"key":"customField","value":"1","description":"Custom field id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 5836,\n  \"organization_id\": 7761,\n  \"key\": \"string\",\n  \"name\": \"string\",\n  \"type\": \"string\",\n  \"visible\": 480\n}"}],"_postman_id":"f7b8c95a-7ed2-4af2-bd9e-8459e32dd7e0"}],"id":"3063f1fe-0503-4780-abb3-969155386e54","_postman_id":"3063f1fe-0503-4780-abb3-969155386e54","description":""}],"id":"4f2bd10f-cb00-436f-bd55-5b479bce7c61","_postman_id":"4f2bd10f-cb00-436f-bd55-5b479bce7c61","description":""},{"name":"followup","item":[{"name":"Update foolow up text","id":"d171af68-9727-4427-9166-68b9a49c7674","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 7341,\n  \"message\": \"string\",\n  \"is_active\": true,\n  \"media_url\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/followup","description":"<p>REQUIRED SCOPES <code>['follow-ups:write']</code><br />Update foolow up text</p>\n","urlObject":{"path":["followup"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"9c0aa323-392e-4ec0-86f1-68341ad8cadb","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 7341,\n  \"message\": \"string\",\n  \"is_active\": true,\n  \"media_url\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/followup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"7610bebe-e981-4c52-a9c9-b63f43be4471","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 7341,\n  \"message\": \"string\",\n  \"is_active\": true,\n  \"media_url\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/followup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"},{"id":"27b5416f-412a-46e3-8f0c-62914cb88a20","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 7341,\n  \"message\": \"string\",\n  \"is_active\": true,\n  \"media_url\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/followup"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d171af68-9727-4427-9166-68b9a49c7674"}],"id":"f57ed817-a5d8-4c65-b45f-d2547fe286a4","_postman_id":"f57ed817-a5d8-4c65-b45f-d2547fe286a4","description":""},{"name":"groups","item":[{"name":"create-integration-group","item":[{"name":"Create a new integration group","id":"7f30e7f8-e760-4e06-b467-35323ed498a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"integration_team_id\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/groups/create-integration-group","description":"<p>REQUIRED SCOPES <code>['groups:write']</code><br />Creates a new integration group and attaches all users of the organization to it.</p>\n","urlObject":{"path":["groups","create-integration-group"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"37c4908b-3968-4dad-9762-e1b1964fd0a4","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"integration_team_id\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/groups/create-integration-group"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1,\n  \"name\": \"Development Team\",\n  \"description\": \"This group handles all development tasks\",\n  \"members\": [\n    {\n      \"id\": 5209,\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"photo_url\": \"string\",\n      \"email\": \"string\"\n    },\n    {\n      \"id\": 760,\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"photo_url\": \"string\",\n      \"email\": \"string\"\n    }\n  ],\n  \"is_integration_team\": false,\n  \"integration_team\": {\n    \"id\": 10,\n    \"name\": \"Core Integration Team\"\n  }\n}"}],"_postman_id":"7f30e7f8-e760-4e06-b467-35323ed498a7"}],"id":"7d95c1c2-d7dd-4a2e-b127-f1a3d000713b","_postman_id":"7d95c1c2-d7dd-4a2e-b127-f1a3d000713b","description":""},{"name":"client-mapping","item":[{"name":"{organization}","item":[{"name":"Remove client team mapping","id":"189da711-3e11-4718-9337-e847281dce2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.3/groups/client-mapping/:organization","description":"<p>REQUIRED SCOPES <code>['groups:write']</code><br />Remove client team mapping</p>\n","urlObject":{"path":["groups","client-mapping",":organization"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"47a4ee0b-0fa9-4aec-89dc-b29f9c3f1238","description":{"content":"<p>The ID of the Organization</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"organization"}]}},"response":[{"id":"657b03a3-d5b5-49cc-b653-2f551735c06d","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.3/groups/client-mapping/:organization","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","client-mapping",":organization"],"variable":[{"key":"organization","value":"2491","description":"The ID of the Organization"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"189da711-3e11-4718-9337-e847281dce2b"}],"id":"d20701fe-a085-44ff-863e-337d13d00133","_postman_id":"d20701fe-a085-44ff-863e-337d13d00133","description":""}],"id":"2e4e1c48-fbe9-44f8-acdf-e39e7fddee08","_postman_id":"2e4e1c48-fbe9-44f8-acdf-e39e7fddee08","description":""},{"name":"{group_id}","item":[{"name":"Delete a group","id":"b42305a3-d0e6-440a-a336-708855846729","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.3/groups/:group_id","description":"<p>REQUIRED SCOPES <code>['groups:write']</code><br />Delete a specific group</p>\n","urlObject":{"path":["groups",":group_id"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"e1067172-e195-4d15-8b5b-30bd827405ad","description":{"content":"<p>ID of the group to delete</p>\n","type":"text/plain"},"type":"any","value":"9","key":"group_id"}]}},"response":[{"id":"4440ebba-7dec-4b59-b9e5-1c7815973510","name":"Group deleted successfully","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/groups/:group_id","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups",":group_id"],"variable":[{"key":"group_id","value":"9","description":"ID of the group to delete"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b42305a3-d0e6-440a-a336-708855846729"}],"id":"5e91a23d-baf6-4963-9104-740203316d11","_postman_id":"5e91a23d-baf6-4963-9104-740203316d11","description":""},{"name":"import-integration-teams","item":[{"name":"Import integration teams","id":"8d146aeb-7911-4255-99e9-b155d9ca1856","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/groups/import-integration-teams","description":"<p>REQUIRED SCOPES <code>['groups:read']</code><br />Imports integration teams from HubSpot</p>\n","urlObject":{"path":["groups","import-integration-teams"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"7f9802ff-64bc-4ee8-9aba-1fd3160c174d","name":"Success response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/groups/import-integration-teams"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": \"Integration teams imported successfully\"\n}"},{"id":"19677c3c-6403-42c3-8d37-144b9910695c","name":"Error response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/groups/import-integration-teams"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": {\n    \"message\": \"Can't import integration teams\"\n  }\n}"}],"_postman_id":"8d146aeb-7911-4255-99e9-b155d9ca1856"}],"id":"6b182d6f-6162-47b5-ba0f-828d9f8e852e","_postman_id":"6b182d6f-6162-47b5-ba0f-828d9f8e852e","description":""},{"name":"integration-teams","item":[{"name":"Get groups integrations teams","id":"a60cdfa2-5803-41dc-8b3d-355f05a8c8d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/groups/integration-teams?organization=2491","description":"<p>REQUIRED SCOPES <code>['groups:read']</code><br />Get groups integrations teams</p>\n","urlObject":{"path":["groups","integration-teams"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The ID of the Organization</p>\n","type":"text/plain"},"key":"organization","value":"2491"}],"variable":[]}},"response":[{"id":"86f2c62b-6eda-4f8a-a229-7f4554c78427","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/groups/integration-teams?organization=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","integration-teams"],"query":[{"description":"The ID of the Organization","key":"organization","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 3918,\n    \"name\": \"string\"\n  },\n  {\n    \"id\": 1959,\n    \"name\": \"string\"\n  }\n]"}],"_postman_id":"a60cdfa2-5803-41dc-8b3d-355f05a8c8d3"}],"id":"1610fba2-620c-499c-9311-7e19f822afef","_postman_id":"1610fba2-620c-499c-9311-7e19f822afef","description":""},{"name":"map-client","item":[{"name":"{organization}","item":[{"name":"Map client to teams","id":"ac18233d-efed-4a0b-a62e-17b30afdb3bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/groups/map-client/:organization?integration_team_ids[]=2491","description":"<p>REQUIRED SCOPES <code>['groups:write']</code><br />Map client to teams</p>\n","urlObject":{"path":["groups","map-client",":organization"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The IDs of the Teams</p>\n","type":"text/plain"},"key":"integration_team_ids[]","value":"2491"}],"variable":[{"id":"28d72cb2-6720-4645-9ae1-d9dd2d785f0c","description":{"content":"<p>The ID of the Organization</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"organization"}]}},"response":[{"id":"6f75e219-8ec4-4852-848a-7086e4194ea9","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/groups/map-client/:organization?integration_team_ids[]=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","map-client",":organization"],"query":[{"description":"The IDs of the Teams","key":"integration_team_ids[]","value":"2491"}],"variable":[{"key":"organization","value":"2491","description":"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\": \"string\",\n  \"info\": \"string\"\n}"}],"_postman_id":"ac18233d-efed-4a0b-a62e-17b30afdb3bd"}],"id":"41782870-3f5a-47fd-9270-22e4e41f3ac4","_postman_id":"41782870-3f5a-47fd-9270-22e4e41f3ac4","description":""}],"id":"f3ed218e-dc6f-4a1b-8de7-ca85a5de4ad1","_postman_id":"f3ed218e-dc6f-4a1b-8de7-ca85a5de4ad1","description":""},{"name":"refresh-integration-team-contacts","item":[{"name":"{group}","item":[{"name":"Refresh integration team contacts","id":"f7c0cb98-935b-498b-9f87-b8953042a4bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/groups/refresh-integration-team-contacts/:group","description":"<p>REQUIRED SCOPES <code>['groups:read']</code><br />Refresh integration team contacts</p>\n","urlObject":{"path":["groups","refresh-integration-team-contacts",":group"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"e49019f9-e7f3-4328-992e-16037968474e","description":{"content":"<p>Group ID</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"group"}]}},"response":[{"id":"b14e1db0-0da2-4270-ab7a-d8fdffc37d6d","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/groups/refresh-integration-team-contacts/:group","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","refresh-integration-team-contacts",":group"],"variable":[{"key":"group","value":"2491","description":"Group ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": \"success\"\n}"},{"id":"c2f105dd-c2c4-4204-a7e3-043dca10a964","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/groups/refresh-integration-team-contacts/:group","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","refresh-integration-team-contacts",":group"],"variable":[{"key":"group","value":"2491","description":"Group ID"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": {\n    \"message\": \"Can`t refresh Teams Contacts\"\n  }\n}"},{"id":"273a3cfb-70f4-4c07-8bcd-da7508735716","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/groups/refresh-integration-team-contacts/:group","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","refresh-integration-team-contacts",":group"],"variable":[{"key":"group","value":"2491","description":"Group ID"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": {\n    \"message\": \"User Integration Not Found\"\n  }\n}"}],"_postman_id":"f7c0cb98-935b-498b-9f87-b8953042a4bf"}],"id":"574dc865-46b1-48ce-8ad2-5587326c1e0b","_postman_id":"574dc865-46b1-48ce-8ad2-5587326c1e0b","description":""}],"id":"6c85dbe7-daaa-4a3e-9dee-0bccd7b90a68","_postman_id":"6c85dbe7-daaa-4a3e-9dee-0bccd7b90a68","description":""},{"name":"refresh-integration-teams-contacts","item":[{"name":"{organizationId}","item":[{"name":"Refresh teams contacts","id":"b82ea2ff-7302-44ca-9d1e-472a9119cd52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/groups/refresh-integration-teams-contacts/:organizationId","description":"<p>REQUIRED SCOPES <code>['groups:read']</code><br />Refresh teams contacts</p>\n","urlObject":{"path":["groups","refresh-integration-teams-contacts",":organizationId"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"6ce58aa5-d7bb-4785-a909-3c965390e97d","description":{"content":"<p>The ID of the organization</p>\n","type":"text/plain"},"type":"any","value":"","key":"organizationId"}]}},"response":[{"id":"b17a41f5-8848-4802-8ceb-4350398dec52","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.3/groups/refresh-integration-teams-contacts/:organizationId","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","refresh-integration-teams-contacts",":organizationId"],"variable":[{"key":"organizationId","value":"","description":"The ID of the organization"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"36db1957-b210-4114-ab71-9a6afe17063a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/groups/refresh-integration-teams-contacts/:organizationId","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","refresh-integration-teams-contacts",":organizationId"],"variable":[{"key":"organizationId","value":"","description":"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\": \"string\"\n}"},{"id":"ff0932cc-8ae8-42ba-8215-68ff2552ce39","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.3/groups/refresh-integration-teams-contacts/:organizationId","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","refresh-integration-teams-contacts",":organizationId"],"variable":[{"key":"organizationId","value":"","description":"The ID of the organization"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b82ea2ff-7302-44ca-9d1e-472a9119cd52"}],"id":"0ff3dd12-9740-45c9-8506-6ca47e4d443a","_postman_id":"0ff3dd12-9740-45c9-8506-6ca47e4d443a","description":""}],"id":"27f790fb-16c5-4593-977f-b21a315b566f","_postman_id":"27f790fb-16c5-4593-977f-b21a315b566f","description":""},{"name":"refresh-integration-teams","item":[{"name":"Refresh integration teams","id":"79dc99a8-7138-40a2-912a-ee0fd21a8cf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/groups/refresh-integration-teams?integration_team_id=11&client_id=11","description":"<p>REQUIRED SCOPES <code>['groups:read']</code><br />Refresh integration teams</p>\n","urlObject":{"path":["groups","refresh-integration-teams"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Describes team, wich members should be updated after syncing with integration</p>\n","type":"text/plain"},"key":"integration_team_id","value":"11"},{"description":{"content":"<p>client id</p>\n","type":"text/plain"},"key":"client_id","value":"11"}],"variable":[]}},"response":[{"id":"f4b2dfe0-b094-4202-8712-ea4bd5b1233b","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.3/groups/refresh-integration-teams?integration_team_id=11&client_id=11","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","refresh-integration-teams"],"query":[{"description":"Describes team, wich members should be updated after syncing with integration","key":"integration_team_id","value":"11"},{"description":"client id","key":"client_id","value":"11"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"c68052dc-bc96-49ed-8418-1972ed18d0fb","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/groups/refresh-integration-teams?integration_team_id=11&client_id=11","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","refresh-integration-teams"],"query":[{"description":"Describes team, wich members should be updated after syncing with integration","key":"integration_team_id","value":"11"},{"description":"client id","key":"client_id","value":"11"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"},{"id":"7ece80a4-4249-4c11-9f47-260738903441","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.3/groups/refresh-integration-teams?integration_team_id=11&client_id=11","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups","refresh-integration-teams"],"query":[{"description":"Describes team, wich members should be updated after syncing with integration","key":"integration_team_id","value":"11"},{"description":"client id","key":"client_id","value":"11"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"79dc99a8-7138-40a2-912a-ee0fd21a8cf9"}],"id":"3b85ccb2-ad71-4437-93d6-a3a4e666ac81","_postman_id":"3b85ccb2-ad71-4437-93d6-a3a4e666ac81","description":""},{"name":"update","item":[{"name":"Update a group","id":"5e37cf62-983f-4f3c-bfe3-f000e3bd9f4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"group_id\": 4952,\n  \"name\": \"Updated Group Name\",\n  \"description\": \"Updated group description\",\n  \"members\": [\n    1,\n    2,\n    3\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/groups/update","description":"<p>REQUIRED SCOPES <code>['groups:write']</code><br />Update details of a specific group</p>\n","urlObject":{"path":["groups","update"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"379c69d8-bdb8-445d-80ce-a88cf73e190b","name":"Group updated successfully","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"group_id\": 4952,\n  \"name\": \"Updated Group Name\",\n  \"description\": \"Updated group description\",\n  \"members\": [\n    1,\n    2,\n    3\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/groups/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1,\n  \"name\": \"Development Team\",\n  \"description\": \"This group handles all development tasks\",\n  \"members\": [\n    {\n      \"id\": 5209,\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"photo_url\": \"string\",\n      \"email\": \"string\"\n    },\n    {\n      \"id\": 760,\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"photo_url\": \"string\",\n      \"email\": \"string\"\n    }\n  ],\n  \"is_integration_team\": false,\n  \"integration_team\": {\n    \"id\": 10,\n    \"name\": \"Core Integration Team\"\n  }\n}"}],"_postman_id":"5e37cf62-983f-4f3c-bfe3-f000e3bd9f4b"}],"id":"7056df4d-b9e3-4b38-a512-f0774e4df1dc","_postman_id":"7056df4d-b9e3-4b38-a512-f0774e4df1dc","description":""},{"name":"List groups","id":"2a062d23-479b-4377-ab43-4190300066bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/groups?search=string&length=20&page=1","description":"<p>REQUIRED SCOPES <code>['groups:read']</code><br />Retrieve a list of groups based on query parameters</p>\n","urlObject":{"path":["groups"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Search term to filter groups by name or description</p>\n","type":"text/plain"},"key":"search","value":"string"},{"description":{"content":"<p>Number of groups to return per page</p>\n","type":"text/plain"},"key":"length","value":"20"},{"description":{"content":"<p>Page number to retrieve</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"92fe94ac-73f9-4571-8182-156e6bd06b0a","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/groups?search=string&length=20&page=1","host":["https://api.salesmessage.com/pub/v2.3"],"path":["groups"],"query":[{"description":"Search term to filter groups by name or description","key":"search","value":"string"},{"description":"Number of groups to return per page","key":"length","value":"20"},{"description":"Page number to retrieve","key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 1,\n    \"name\": \"Development Team\",\n    \"description\": \"This group handles all development tasks\",\n    \"members\": [\n      {\n        \"id\": 9401,\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"photo_url\": \"string\",\n        \"email\": \"string\"\n      },\n      {\n        \"id\": 1576,\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"photo_url\": \"string\",\n        \"email\": \"string\"\n      }\n    ],\n    \"is_integration_team\": false,\n    \"integration_team\": {\n      \"id\": 10,\n      \"name\": \"Core Integration Team\"\n    }\n  },\n  {\n    \"id\": 1,\n    \"name\": \"Development Team\",\n    \"description\": \"This group handles all development tasks\",\n    \"members\": [\n      {\n        \"id\": 5317,\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"photo_url\": \"string\",\n        \"email\": \"string\"\n      },\n      {\n        \"id\": 1954,\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"photo_url\": \"string\",\n        \"email\": \"string\"\n      }\n    ],\n    \"is_integration_team\": false,\n    \"integration_team\": {\n      \"id\": 10,\n      \"name\": \"Core Integration Team\"\n    }\n  }\n]"}],"_postman_id":"2a062d23-479b-4377-ab43-4190300066bb"},{"name":"Create a new group","id":"859b2085-35f9-456f-b31a-5aece7258977","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"New Group\",\n  \"members\": [\n    1,\n    2,\n    3\n  ],\n  \"description\": \"A description of the new group\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/groups","description":"<p>REQUIRED SCOPES <code>['groups:write']</code><br />Creates a new group with specified details and member associations.</p>\n","urlObject":{"path":["groups"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"bc5ce3d3-5b16-4d81-a219-1d62840b1cf7","name":"Group created successfully","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"New Group\",\n  \"members\": [\n    1,\n    2,\n    3\n  ],\n  \"description\": \"A description of the new group\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1,\n  \"name\": \"Development Team\",\n  \"description\": \"This group handles all development tasks\",\n  \"members\": [\n    {\n      \"id\": 5209,\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"photo_url\": \"string\",\n      \"email\": \"string\"\n    },\n    {\n      \"id\": 760,\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"photo_url\": \"string\",\n      \"email\": \"string\"\n    }\n  ],\n  \"is_integration_team\": false,\n  \"integration_team\": {\n    \"id\": 10,\n    \"name\": \"Core Integration Team\"\n  }\n}"}],"_postman_id":"859b2085-35f9-456f-b31a-5aece7258977"}],"id":"0d97a8fb-4505-4fae-a4c2-7d6cef82c1f6","_postman_id":"0d97a8fb-4505-4fae-a4c2-7d6cef82c1f6","description":""},{"name":"keywords","item":[{"name":"{keyword}","item":[{"name":"stats","item":[{"name":"Get keyword stats","id":"8e69f286-6969-451b-b8a8-aebcd1e8bf26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword/stats","description":"<p>REQUIRED SCOPES <code>['keywords:read']</code><br />Get keyword stats</p>\n","urlObject":{"path":["keywords",":keyword","stats"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"42f543e4-e485-4809-89bd-001abdee28e0","description":{"content":"<p>The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"1788d337-945e-4c16-a378-8955f42545a9","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword/stats","host":["https://api.salesmessage.com/pub/v2.3"],"path":["keywords",":keyword","stats"],"variable":[{"key":"keyword","value":"","description":"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":"8e69f286-6969-451b-b8a8-aebcd1e8bf26"}],"id":"4998979c-943e-4b9c-a1f7-bed89deb786b","_postman_id":"4998979c-943e-4b9c-a1f7-bed89deb786b","description":""},{"name":"contacts","item":[{"name":"Get keyword contacts","id":"1b2ec9a5-08b3-47a0-9282-233f2a7eff70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword/contacts?page=1&limit=10&term=string&filter=subscribed&from=1947-04-23&to=1947-04-23","description":"<p>REQUIRED SCOPES <code>['keywords:read']</code><br />Get keyword contacts</p>\n","urlObject":{"path":["keywords",":keyword","contacts"],"host":["https://api.salesmessage.com/pub/v2.3"],"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"},{"description":{"content":"<p>Search term</p>\n","type":"text/plain"},"key":"term","value":"string"},{"description":{"content":"<p>Filter</p>\n","type":"text/plain"},"key":"filter","value":"subscribed"},{"description":{"content":"<p>Start date for the statistics range (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"from","value":"1947-04-23"},{"description":{"content":"<p>Start date for the statistics range (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"to","value":"1947-04-23"}],"variable":[{"id":"4810ebf2-adc4-487c-ae65-258ec5889f2e","description":{"content":"<p>The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"7988fac7-0941-44ec-bf31-95fde664c1c0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword/contacts?page=1&limit=10&term=string&filter=subscribed&from=1947-04-23&to=1947-04-23","host":["https://api.salesmessage.com/pub/v2.3"],"path":["keywords",":keyword","contacts"],"query":[{"description":"The page of a collection to return.","key":"page","value":"1"},{"description":"The number of items to return per page.","key":"limit","value":"10"},{"description":"Search term","key":"term","value":"string"},{"description":"Filter","key":"filter","value":"subscribed"},{"description":"Start date for the statistics range (YYYY-MM-DD)","key":"from","value":"1947-04-23"},{"description":"Start date for the statistics range (YYYY-MM-DD)","key":"to","value":"1947-04-23"}],"variable":[{"key":"keyword","value":"","description":"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\": 4749,\n    \"owner_id\": 9004,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 6671\n      },\n      {\n        \"number_id\": 7804\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 9703,\n        \"number_id\": 563,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 8198,\n        \"number_id\": 7869,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": false\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 3850,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 9888,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 2730,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 1426,\n        \"custom_field_id\": 2845,\n        \"contact_id\": 968,\n        \"field_key\": \"string\",\n        \"organization_id\": 7012,\n        \"text\": \"string\",\n        \"number\": 4652,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 592,\n        \"custom_field_id\": 8190,\n        \"contact_id\": 297,\n        \"field_key\": \"string\",\n        \"organization_id\": 3116,\n        \"text\": \"string\",\n        \"number\": 2205,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 3865,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 905,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 9423,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 1542,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  {\n    \"id\": 4408,\n    \"owner_id\": 2491,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": false,\n    \"opt_out\": false,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 6619\n      },\n      {\n        \"number_id\": 3151\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 9594,\n        \"number_id\": 5777,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": true\n      },\n      {\n        \"id\": 6334,\n        \"number_id\": 89,\n        \"name\": \"string\",\n        \"disabled\": false,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 6544,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 6580,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 9234,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 9871,\n        \"custom_field_id\": 5625,\n        \"contact_id\": 964,\n        \"field_key\": \"string\",\n        \"organization_id\": 3359,\n        \"text\": \"string\",\n        \"number\": 6929,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 4153,\n        \"custom_field_id\": 9732,\n        \"contact_id\": 1297,\n        \"field_key\": \"string\",\n        \"organization_id\": 7577,\n        \"text\": \"string\",\n        \"number\": 6312,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 5980,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 5008,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 6961,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 3709,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  }\n]"}],"_postman_id":"1b2ec9a5-08b3-47a0-9282-233f2a7eff70"}],"id":"c25368d8-9267-40d9-9f47-f2dd5d8a3a8c","_postman_id":"c25368d8-9267-40d9-9f47-f2dd5d8a3a8c","description":""},{"name":"Get keyword","id":"6634341a-7593-4a9f-ade2-57e0088dc9a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword","description":"<p>REQUIRED SCOPES <code>['keywords:read']</code><br />Get keyword by ID</p>\n","urlObject":{"path":["keywords",":keyword"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"484908ed-9290-4ccf-baa8-c1d87ce6f3f6","description":{"content":"<p>The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"327ab8b5-ffab-4b02-a430-643a71bd221b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword","host":["https://api.salesmessage.com/pub/v2.3"],"path":["keywords",":keyword"],"variable":[{"key":"keyword","value":"","description":"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\": 6414,\n  \"owner_id\": 451,\n  \"organization_id\": 828,\n  \"is_active\": false,\n  \"name\": \"string\",\n  \"message\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled_at\": \"string\"\n}"}],"_postman_id":"6634341a-7593-4a9f-ade2-57e0088dc9a1"},{"name":"Update keyword","id":"1e350176-18b4-4e3d-b2b5-d005cdc7777b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"is_active\": false,\n  \"message\": \"string\",\n  \"numbers\": [\n    8512,\n    4834\n  ],\n  \"title\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword","description":"<p>REQUIRED SCOPES <code>['keywords:write']</code><br />Update keyword</p>\n","urlObject":{"path":["keywords",":keyword"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"54461950-83da-46f8-9609-061201b1d284","description":{"content":"<p>The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"ea9fbb73-0627-4c00-a518-626f5b3eced5","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"is_active\": false,\n  \"message\": \"string\",\n  \"numbers\": [\n    8512,\n    4834\n  ],\n  \"title\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword","host":["https://api.salesmessage.com/pub/v2.3"],"path":["keywords",":keyword"],"variable":[{"key":"keyword","value":"","description":"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\": 6414,\n  \"owner_id\": 451,\n  \"organization_id\": 828,\n  \"is_active\": false,\n  \"name\": \"string\",\n  \"message\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled_at\": \"string\"\n}"},{"id":"c8ea64ec-53d3-4cb1-b1c7-19edabb2144a","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"is_active\": false,\n  \"message\": \"string\",\n  \"numbers\": [\n    8512,\n    4834\n  ],\n  \"title\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword","host":["https://api.salesmessage.com/pub/v2.3"],"path":["keywords",":keyword"],"variable":[{"key":"keyword","value":"","description":"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\": \"string\"\n}"},{"id":"cba607bd-63b4-42dd-a896-cb343249f1e4","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"is_active\": false,\n  \"message\": \"string\",\n  \"numbers\": [\n    8512,\n    4834\n  ],\n  \"title\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword","host":["https://api.salesmessage.com/pub/v2.3"],"path":["keywords",":keyword"],"variable":[{"key":"keyword","value":"","description":"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\": \"string\",\n  \"errors\": [\n    \"string\",\n    \"string\"\n  ],\n  \"error\": \"string\"\n}"}],"_postman_id":"1e350176-18b4-4e3d-b2b5-d005cdc7777b"},{"name":"Delete keyword","id":"09351870-0441-4e76-934f-c1fcee88ee0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword","description":"<p>REQUIRED SCOPES <code>['keywords:write']</code><br />Delete keyword</p>\n","urlObject":{"path":["keywords",":keyword"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"1fc520e6-989a-400f-8d50-8aaeaa8b01a7","description":{"content":"<p>The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"362986a6-2e5f-485e-9ca5-7737f6cfc32d","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/keywords/:keyword","host":["https://api.salesmessage.com/pub/v2.3"],"path":["keywords",":keyword"],"variable":[{"key":"keyword","value":"","description":"The ID of the keyword"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"string\",\n  \"string\"\n]"}],"_postman_id":"09351870-0441-4e76-934f-c1fcee88ee0a"}],"id":"768f2435-6445-4fb3-9ec4-4e391e52282f","_postman_id":"768f2435-6445-4fb3-9ec4-4e391e52282f","description":""},{"name":"mandated","item":[{"name":"Get mandated keywords","id":"cb37f82a-81dc-498e-ab59-701088ad1e01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/keywords/mandated","description":"<p>REQUIRED SCOPES <code>['keywords:read']</code><br />Get mandated keywords</p>\n","urlObject":{"path":["keywords","mandated"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"c7ae4741-8b54-41c2-be2d-f1b8bf578f0e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/keywords/mandated"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"string\",\n  \"string\"\n]"}],"_postman_id":"cb37f82a-81dc-498e-ab59-701088ad1e01"}],"id":"a0a045a0-9a08-4f88-8e6c-3dfb45d483c7","_postman_id":"a0a045a0-9a08-4f88-8e6c-3dfb45d483c7","description":""},{"name":"subscribe","item":[{"name":"toggle","item":[{"name":"{keyword}","item":[{"name":"{contact}","item":[{"name":"Delete bulk keywords","id":"f1ddd461-bd17-4f8e-ab94-7185fc007635","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/keywords/subscribe/toggle/:keyword/:contact","description":"<p>REQUIRED SCOPES <code>['keywords:write']</code><br />Delete bulk keywords</p>\n","urlObject":{"path":["keywords","subscribe","toggle",":keyword",":contact"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"59c34870-868a-41d6-8c45-b99e42f747cd","description":{"content":"<p>The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"},{"id":"d649fae0-1cde-4a9f-b3be-d02dbc3b25bd","description":{"content":"<p>The ID of the contact</p>\n","type":"text/plain"},"type":"any","value":"","key":"contact"}]}},"response":[{"id":"63f619d8-fb09-4976-9346-177f9ae818c9","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/keywords/subscribe/toggle/:keyword/:contact","host":["https://api.salesmessage.com/pub/v2.3"],"path":["keywords","subscribe","toggle",":keyword",":contact"],"variable":[{"key":"keyword","value":"","description":"The ID of the keyword"},{"key":"contact","value":"","description":"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":"f1ddd461-bd17-4f8e-ab94-7185fc007635"}],"id":"1bbfaac9-9d5b-4b52-be82-7a9f5b678661","_postman_id":"1bbfaac9-9d5b-4b52-be82-7a9f5b678661","description":""}],"id":"6cc52942-de4e-4621-9770-accef4c8318c","_postman_id":"6cc52942-de4e-4621-9770-accef4c8318c","description":""}],"id":"5eb85260-1c34-4486-877e-4fe957c07314","_postman_id":"5eb85260-1c34-4486-877e-4fe957c07314","description":""}],"id":"905c902a-da36-4f25-a1ce-c0b4adb0a3f2","_postman_id":"905c902a-da36-4f25-a1ce-c0b4adb0a3f2","description":""},{"name":"toggle","item":[{"name":"{keyword}","item":[{"name":"Toggle keyword","id":"52b2aa90-9c25-4af0-b68d-adc31710a2dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/keywords/toggle/:keyword","description":"<p>REQUIRED SCOPES <code>['keywords:write']</code><br />Toggle keyword</p>\n","urlObject":{"path":["keywords","toggle",":keyword"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"cea4379e-4ce9-4056-b880-8ea8a23dc9ee","description":{"content":"<p>The ID of the keyword</p>\n","type":"text/plain"},"type":"any","value":"","key":"keyword"}]}},"response":[{"id":"72990c6c-93bf-40cd-bc7a-c8d5aaff4cb1","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/keywords/toggle/:keyword","host":["https://api.salesmessage.com/pub/v2.3"],"path":["keywords","toggle",":keyword"],"variable":[{"key":"keyword","value":"","description":"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\": 6414,\n  \"owner_id\": 451,\n  \"organization_id\": 828,\n  \"is_active\": false,\n  \"name\": \"string\",\n  \"message\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled_at\": \"string\"\n}"}],"_postman_id":"52b2aa90-9c25-4af0-b68d-adc31710a2dd"}],"id":"a1075869-519e-410f-8d8d-6cbccd5e25d5","_postman_id":"a1075869-519e-410f-8d8d-6cbccd5e25d5","description":""}],"id":"23ac8271-0504-40f6-82b9-11bc620831f5","_postman_id":"23ac8271-0504-40f6-82b9-11bc620831f5","description":""},{"name":"Search keywords","id":"61fb3197-a889-4916-b402-8aa0ac86a5ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/keywords?limit=10","description":"<p>REQUIRED SCOPES <code>['keywords:read']</code><br />Search keywords</p>\n","urlObject":{"path":["keywords"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The number of items to return per page.</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[]}},"response":[{"id":"3edb7960-70a1-46fb-80fc-21790a97963e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/keywords?limit=10","host":["https://api.salesmessage.com/pub/v2.3"],"path":["keywords"],"query":[{"description":"The number of items to return per page.","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\": 6544,\n    \"owner_id\": 4003,\n    \"organization_id\": 6063,\n    \"is_active\": true,\n    \"name\": \"string\",\n    \"message\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"disabled_at\": \"string\"\n  },\n  {\n    \"id\": 4577,\n    \"owner_id\": 9916,\n    \"organization_id\": 6193,\n    \"is_active\": true,\n    \"name\": \"string\",\n    \"message\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"disabled_at\": \"string\"\n  }\n]"}],"_postman_id":"61fb3197-a889-4916-b402-8aa0ac86a5ba"},{"name":"Create keyword","id":"6ca9a372-9c54-45dd-9c16-77c4d8314fac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"is_active\": false,\n  \"message\": \"string\",\n  \"numbers\": [\n    8512,\n    4834\n  ],\n  \"title\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/keywords","description":"<p>REQUIRED SCOPES <code>['keywords:write']</code><br />Create keyword</p>\n","urlObject":{"path":["keywords"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"a8fe4abf-c95f-44e4-847e-aaa40355247b","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"is_active\": false,\n  \"message\": \"string\",\n  \"numbers\": [\n    8512,\n    4834\n  ],\n  \"title\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/keywords"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6414,\n  \"owner_id\": 451,\n  \"organization_id\": 828,\n  \"is_active\": false,\n  \"name\": \"string\",\n  \"message\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled_at\": \"string\"\n}"},{"id":"b230571b-fa28-4be7-9e91-6557f40921f0","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"is_active\": false,\n  \"message\": \"string\",\n  \"numbers\": [\n    8512,\n    4834\n  ],\n  \"title\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/keywords"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"},{"id":"494828d4-913a-4c0b-9e5b-f80982271234","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"is_active\": false,\n  \"message\": \"string\",\n  \"numbers\": [\n    8512,\n    4834\n  ],\n  \"title\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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\": \"string\",\n  \"errors\": [\n    \"string\",\n    \"string\"\n  ],\n  \"error\": \"string\"\n}"}],"_postman_id":"6ca9a372-9c54-45dd-9c16-77c4d8314fac"},{"name":"Delete bulk keywords","id":"b8e3b64e-cb27-4aa3-8d59-822bc4c13305","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    6913,\n    8417\n  ],\n  \"bulk_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/keywords","description":"<p>REQUIRED SCOPES <code>['keywords:write']</code><br />Delete bulk keywords</p>\n","urlObject":{"path":["keywords"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"a532f462-b889-4dd9-9a36-3753894206e7","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    6913,\n    8417\n  ],\n  \"bulk_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/keywords"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"action\": \"string\",\n  \"ids\": [\n    8210,\n    255\n  ]\n}"},{"id":"1ca42e54-f7bc-4a16-83e8-351f79a5a750","name":"Unprocessable Entity","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    6913,\n    8417\n  ],\n  \"bulk_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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\": \"string\"\n}"}],"_postman_id":"b8e3b64e-cb27-4aa3-8d59-822bc4c13305"}],"id":"37d56911-d338-47c8-8067-84254194c78e","_postman_id":"37d56911-d338-47c8-8067-84254194c78e","description":""},{"name":"messages","item":[{"name":"{message}","item":[{"name":"media","item":[{"name":"download","item":[{"name":"Download message media","id":"13f7f73f-348c-4833-ba5e-cc204ad8bdd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/zip"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:message/media/download","description":"<p>REQUIRED SCOPES <code>['messages:read']</code><br />Download message media</p>\n","urlObject":{"path":["messages",":message","media","download"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"0fca8682-d148-4bc7-8bb7-563239bef1be","type":"any","key":"message"}]}},"response":[{"id":"aa30ae27-9b95-4880-b2cd-47ed5f7f191e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/zip"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/media/download","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","media","download"],"variable":[{"key":"message"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/zip"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"28a51f84-284a-41ba-acf2-08ff7288ee17","name":"Attachment 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.3/messages/:message/media/download","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","media","download"],"variable":[{"key":"message"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e5ce65cc-6bda-4c3f-88eb-aff655a46bc2","name":"Unprocessable Entity","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/media/download","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","media","download"],"variable":[{"key":"message"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"13f7f73f-348c-4833-ba5e-cc204ad8bdd0"}],"id":"123a3919-c6a0-4ba8-96f9-b70be71d5135","_postman_id":"123a3919-c6a0-4ba8-96f9-b70be71d5135","description":""},{"name":"retry","item":[{"name":"Retry to send media","id":"619c4bd1-04ce-436e-af93-f3a65388a2fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:message/media/retry","description":"<p>REQUIRED SCOPES <code>['messages:write']</code><br />Retry to send media</p>\n","urlObject":{"path":["messages",":message","media","retry"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"e1932441-e7b1-4e29-ace8-8dff1ff4dfc3","description":{"content":"<p>The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"}]}},"response":[{"id":"e3156206-1dee-4436-aa1d-a2c0d814c1a4","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/media/retry","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","media","retry"],"variable":[{"key":"message","value":"","description":"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":"e5152f7e-5d2d-46c2-95f0-63b40f08260c","name":"No media or media delivered","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/media/retry","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","media","retry"],"variable":[{"key":"message","value":"","description":"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":"619c4bd1-04ce-436e-af93-f3a65388a2fa"}],"id":"3e634ad3-9d96-4e92-a0ed-5e93d2f23ee7","_postman_id":"3e634ad3-9d96-4e92-a0ed-5e93d2f23ee7","description":""}],"id":"b0768d00-12d2-4c60-84e8-b52484278ae1","_postman_id":"b0768d00-12d2-4c60-84e8-b52484278ae1","description":""},{"name":"retry","item":[{"name":"Retry to send the message","id":"daf9d893-6789-4081-a540-b675373b4c3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:message/retry","description":"<p>REQUIRED SCOPES <code>['messages:write']</code><br />Retry to send the message</p>\n","urlObject":{"path":["messages",":message","retry"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"bb952854-a286-4e28-96df-944108d7da87","description":{"content":"<p>The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"}]}},"response":[{"id":"2d6ed22b-1a46-4a58-b5fd-ff7f12f0d674","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/retry","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","retry"],"variable":[{"key":"message","value":"","description":"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\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"daf9d893-6789-4081-a540-b675373b4c3a"}],"id":"a7597246-a6ac-4739-8f9c-2ecda7939fdf","_postman_id":"a7597246-a6ac-4739-8f9c-2ecda7939fdf","description":""},{"name":"mentions","item":[{"name":"{taggingUser}","item":[{"name":"activate","item":[{"name":"Activate mentioned users","id":"af6af327-4082-46ab-9230-f42e24a96696","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:message/mentions/:taggingUser/activate","description":"<p>REQUIRED SCOPES <code>['messages:write']</code><br />Activate mentioned users</p>\n","urlObject":{"path":["messages",":message","mentions",":taggingUser","activate"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"45ec0548-c6b9-4e2f-88f2-35df86e77483","description":{"content":"<p>The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"},{"id":"62c0a23e-1905-4582-aa7f-30892c498e3b","description":{"content":"<p>The ID of the taggingUser</p>\n","type":"text/plain"},"type":"any","value":"","key":"taggingUser"}]}},"response":[{"id":"2df25f05-9cbe-4a38-8c96-ab6d2b885939","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/mentions/:taggingUser/activate","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","mentions",":taggingUser","activate"],"variable":[{"key":"message","value":"","description":"The ID of the Message"},{"key":"taggingUser","value":"","description":"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\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"af6af327-4082-46ab-9230-f42e24a96696"}],"id":"e1ba8691-9ced-4eb2-b370-b3536fd681f5","_postman_id":"e1ba8691-9ced-4eb2-b370-b3536fd681f5","description":""},{"name":"cancel","item":[{"name":"Mentioned user got it","id":"c1d24aaa-0795-42de-9ca8-319331b8065f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:message/mentions/:taggingUser/cancel","description":"<p>REQUIRED SCOPES <code>['messages:write']</code><br />Mentioned user got it</p>\n","urlObject":{"path":["messages",":message","mentions",":taggingUser","cancel"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"cbed5e28-591f-4edf-b231-d53d4d76c10c","description":{"content":"<p>The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"},{"id":"e194ffc1-8769-4de7-9b94-66a039175a5b","description":{"content":"<p>The ID of the taggingUser</p>\n","type":"text/plain"},"type":"any","value":"","key":"taggingUser"}]}},"response":[{"id":"82f33c49-ef76-42dd-9377-c8618454c997","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/mentions/:taggingUser/cancel","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","mentions",":taggingUser","cancel"],"variable":[{"key":"message","value":"","description":"The ID of the Message"},{"key":"taggingUser","value":"","description":"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\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"c1d24aaa-0795-42de-9ca8-319331b8065f"}],"id":"7c2d46ab-600c-4759-a0a0-087f23b0b6f2","_postman_id":"7c2d46ab-600c-4759-a0a0-087f23b0b6f2","description":""},{"name":"got-it","item":[{"name":"Deactivate mentioned users","id":"b9df093f-7e9d-4519-8280-61b1219a77a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:message/mentions/:taggingUser/got-it","description":"<p>REQUIRED SCOPES <code>['messages:write']</code><br />Deactivate mentioned users</p>\n","urlObject":{"path":["messages",":message","mentions",":taggingUser","got-it"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"ffc4f4af-f14e-4baa-bc7a-e038c5aa0182","description":{"content":"<p>The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"},{"id":"3f2acd09-a4f2-42d9-a706-31c51c4f264d","description":{"content":"<p>The ID of the taggingUser</p>\n","type":"text/plain"},"type":"any","value":"","key":"taggingUser"}]}},"response":[{"id":"d119568e-9064-40da-9a9b-29fde5431532","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/mentions/:taggingUser/got-it","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","mentions",":taggingUser","got-it"],"variable":[{"key":"message","value":"","description":"The ID of the Message"},{"key":"taggingUser","value":"","description":"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\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"62826c60-f28e-4238-bec1-63c272a5d6b9","name":"Incorrect Organization","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/mentions/:taggingUser/got-it","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","mentions",":taggingUser","got-it"],"variable":[{"key":"message","value":"","description":"The ID of the Message"},{"key":"taggingUser","value":"","description":"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\": \"string\"\n}"},{"id":"4963a763-5579-4f9b-8f66-254937f1b8ef","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.3/messages/:message/mentions/:taggingUser/got-it","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","mentions",":taggingUser","got-it"],"variable":[{"key":"message","value":"","description":"The ID of the Message"},{"key":"taggingUser","value":"","description":"The ID of the taggingUser"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"9c4109ce-7b42-43ed-9e57-67ed3356f7be","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/mentions/:taggingUser/got-it","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","mentions",":taggingUser","got-it"],"variable":[{"key":"message","value":"","description":"The ID of the Message"},{"key":"taggingUser","value":"","description":"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\": \"string\"\n}"}],"_postman_id":"b9df093f-7e9d-4519-8280-61b1219a77a3"}],"id":"1e9a9daf-16c0-4daf-a36b-1d697ec4d6cb","_postman_id":"1e9a9daf-16c0-4daf-a36b-1d697ec4d6cb","description":""}],"id":"8940aa5a-2b14-4b14-b0ed-7d947fb7f293","_postman_id":"8940aa5a-2b14-4b14-b0ed-7d947fb7f293","description":""}],"id":"4079c0e3-e33d-4e1d-8168-bf532424b293","_postman_id":"4079c0e3-e33d-4e1d-8168-bf532424b293","description":""},{"name":"transcript","item":[{"name":"manual","item":[{"name":"Manually initiate transcription for a call message","id":"0a442c6a-b87d-461b-870f-5b40f0ca327b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:message/transcript/manual","description":"<p>REQUIRED SCOPES <code>['messages:write']</code></p>\n","urlObject":{"path":["messages",":message","transcript","manual"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"ae85eaea-cc6a-4411-9028-18da4786188a","description":{"content":"<p>ID of the message</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"message"}]}},"response":[{"id":"05951e96-77e2-4f1a-8ae1-32d81b1e5d70","name":"Transcription initiated successfully","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/transcript/manual","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript","manual"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"4da3faf3-b230-4c50-8b18-005845cb3605","name":"Bad request","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/transcript/manual","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript","manual"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"reason\": \"Incorrect message.\"\n}"},{"id":"7a3bc9e6-f06e-4894-ba37-f19e202d1902","name":"Unauthenticated","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.3/messages/:message/transcript/manual","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript","manual"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6e360085-7d2c-43de-8d5b-bb4937f14005","name":"Forbidden","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.3/messages/:message/transcript/manual","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript","manual"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6edce5ac-f9fa-4189-b9a4-6f3f0c7c4abc","name":"Message 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.3/messages/:message/transcript/manual","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript","manual"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0a442c6a-b87d-461b-870f-5b40f0ca327b"}],"id":"f122ad94-3282-4479-8306-054dd14b8157","_postman_id":"f122ad94-3282-4479-8306-054dd14b8157","description":""},{"name":"retry","item":[{"name":"Retry transcription for a message","id":"c41877ed-4ece-4027-89c9-f7db26f5291d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:message/transcript/retry","description":"<p>REQUIRED SCOPES <code>['messages:write']</code></p>\n","urlObject":{"path":["messages",":message","transcript","retry"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"5fbde647-ab9b-4b1b-877f-85a8b139224e","description":{"content":"<p>ID of the message</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"message"}]}},"response":[{"id":"ed104f6e-4b29-43a7-b29a-113f3bbb8b9d","name":"Transcription retry initiated successfully","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/transcript/retry","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript","retry"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true\n}"},{"id":"8075ce9e-a643-4eb8-aeec-5e3294b50e41","name":"Bad request","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/transcript/retry","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript","retry"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"reason\": \"There are no attempts for the transcription.\"\n}"},{"id":"1898282e-45b0-4295-954e-8e455562cb03","name":"Unauthenticated","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.3/messages/:message/transcript/retry","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript","retry"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"622486d6-9009-48ae-999e-ed3acc97972c","name":"Forbidden","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.3/messages/:message/transcript/retry","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript","retry"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"569c58f2-4aea-4a0d-b851-f687ea54ef12","name":"Message 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.3/messages/:message/transcript/retry","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript","retry"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c41877ed-4ece-4027-89c9-f7db26f5291d"}],"id":"cb5f9534-773f-452d-8827-97dc526b9888","_postman_id":"cb5f9534-773f-452d-8827-97dc526b9888","description":""},{"name":"Get a specific message for transcript","id":"178abf1a-498b-4ddf-90f7-e7cf8488ae97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:message/transcript","description":"<p>REQUIRED SCOPES <code>['messages:read']</code></p>\n","urlObject":{"path":["messages",":message","transcript"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"4fc70d14-1098-4859-96ec-529a260c487f","description":{"content":"<p>ID of the message</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"message"}]}},"response":[{"id":"49884326-6c14-475c-91be-f52d0a290f9d","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message/transcript","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"ae81165e-060d-4822-a9c2-235c830974ca","name":"Unauthenticated","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.3/messages/:message/transcript","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d1a5a217-506e-4019-9547-1911aee0e041","name":"Forbidden","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.3/messages/:message/transcript","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3dab59dc-625a-4d24-9c6b-2fc43502aa8d","name":"Message 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.3/messages/:message/transcript","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message","transcript"],"variable":[{"key":"message","value":"2491","description":"ID of the message"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"178abf1a-498b-4ddf-90f7-e7cf8488ae97"}],"id":"41cc073c-3671-4a59-bb30-278af3be4db4","_postman_id":"41cc073c-3671-4a59-bb30-278af3be4db4","description":""},{"name":"Update a message","id":"8c8016e6-6965-42ea-8104-7ac10c841c08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"string\",\n  \"media_url\": \"string\",\n  \"send_at\": \"1988-09-24T14:53:25.582Z\",\n  \"stop_on_response\": false,\n  \"is_contact_timezone\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/messages/:message","description":"<p>REQUIRED SCOPES <code>['messages:write']</code></p>\n","urlObject":{"path":["messages",":message"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"a9b0d97d-f9ed-4cc4-a0aa-d31c14621ea9","description":{"content":"<p>ID of the message to update</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"message"}]}},"response":[{"id":"2466dcfe-f398-4f70-aa91-e3fd69a5f803","name":"Message updated successfully","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"string\",\n  \"media_url\": \"string\",\n  \"send_at\": \"1988-09-24T14:53:25.582Z\",\n  \"stop_on_response\": false,\n  \"is_contact_timezone\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message"],"variable":[{"key":"message","value":"2491","description":"ID of the message to update"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"34dd662b-5b80-4ccc-952b-b0a9b255c41d","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"string\",\n  \"media_url\": \"string\",\n  \"send_at\": \"1988-09-24T14:53:25.582Z\",\n  \"stop_on_response\": false,\n  \"is_contact_timezone\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message"],"variable":[{"key":"message","value":"2491","description":"ID of the message to update"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fb371d64-d734-4e7e-9cf2-4401fbc6b112","name":"Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"string\",\n  \"media_url\": \"string\",\n  \"send_at\": \"1988-09-24T14:53:25.582Z\",\n  \"stop_on_response\": false,\n  \"is_contact_timezone\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message"],"variable":[{"key":"message","value":"2491","description":"ID of the message to update"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d3223644-352e-45f1-8b46-4ea3477b83e6","name":"Message not found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"string\",\n  \"media_url\": \"string\",\n  \"send_at\": \"1988-09-24T14:53:25.582Z\",\n  \"stop_on_response\": false,\n  \"is_contact_timezone\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message"],"variable":[{"key":"message","value":"2491","description":"ID of the message to update"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"4be1f407-8726-43f8-961b-7e999c7eb997","name":"Validation error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"string\",\n  \"media_url\": \"string\",\n  \"send_at\": \"1988-09-24T14:53:25.582Z\",\n  \"stop_on_response\": false,\n  \"is_contact_timezone\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message"],"variable":[{"key":"message","value":"2491","description":"ID of the message to update"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8c8016e6-6965-42ea-8104-7ac10c841c08"},{"name":"Delete scheduled message","id":"2276101d-2299-492c-be62-13cda213df48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:message","description":"<p>REQUIRED SCOPES <code>['messages:write']</code><br />Delete scheduled message by id</p>\n","urlObject":{"path":["messages",":message"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"7467de56-c5e2-41ef-a40d-fd134541b9d9","description":{"content":"<p>The ID of the Message</p>\n","type":"text/plain"},"type":"any","value":"","key":"message"}]}},"response":[{"id":"630aa3d1-608a-4343-a3c1-06af4fcfcdb5","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:message","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":message"],"variable":[{"key":"message","value":"","description":"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\": \"string\"\n}"}],"_postman_id":"2276101d-2299-492c-be62-13cda213df48"}],"id":"2e6d3378-2504-4258-9688-30b86d838933","_postman_id":"2e6d3378-2504-4258-9688-30b86d838933","description":""},{"name":"draft","item":[{"name":"{conversationId}","item":[{"name":"Get a draft message for a specific conversation","id":"82547775-5ce6-4056-8b98-e99ea12c9384","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/draft/:conversationId?inbox_type=2491&inbox_id=2491","description":"<p>REQUIRED SCOPES <code>['messages:read']</code></p>\n","urlObject":{"path":["messages","draft",":conversationId"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Type of the inbox</p>\n","type":"text/plain"},"key":"inbox_type","value":"2491"},{"description":{"content":"<p>ID of the inbox</p>\n","type":"text/plain"},"key":"inbox_id","value":"2491"}],"variable":[{"id":"2eedd97c-b31d-4b58-a89f-58ed5f646756","description":{"content":"<p>ID of the conversation</p>\n","type":"text/plain"},"type":"any","value":"string","key":"conversationId"}]}},"response":[{"id":"fc610594-31ef-4159-b6b4-1658df17e887","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/draft/:conversationId?inbox_type=2491&inbox_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft",":conversationId"],"query":[{"description":"Type of the inbox","key":"inbox_type","value":"2491"},{"description":"ID of the inbox","key":"inbox_id","value":"2491"}],"variable":[{"key":"conversationId","value":"string","description":"ID of the conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"1c5cbba0-c92e-47fb-b37b-cce691387c17","name":"No draft message found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/draft/:conversationId?inbox_type=2491&inbox_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft",":conversationId"],"query":[{"description":"Type of the inbox","key":"inbox_type","value":"2491"},{"description":"ID of the inbox","key":"inbox_id","value":"2491"}],"variable":[{"key":"conversationId","value":"string","description":"ID of the conversation"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"null"},{"id":"f9b0d1d9-8d5f-4595-850b-304f857a5bff","name":"Unauthenticated","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.3/messages/draft/:conversationId?inbox_type=2491&inbox_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft",":conversationId"],"query":[{"description":"Type of the inbox","key":"inbox_type","value":"2491"},{"description":"ID of the inbox","key":"inbox_id","value":"2491"}],"variable":[{"key":"conversationId","value":"string","description":"ID of the conversation"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fa1120a0-aa1c-4c7c-85bf-d14fea776a93","name":"Forbidden","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.3/messages/draft/:conversationId?inbox_type=2491&inbox_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft",":conversationId"],"query":[{"description":"Type of the inbox","key":"inbox_type","value":"2491"},{"description":"ID of the inbox","key":"inbox_id","value":"2491"}],"variable":[{"key":"conversationId","value":"string","description":"ID of the conversation"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"82547775-5ce6-4056-8b98-e99ea12c9384"}],"id":"7b555f4e-bb6d-4280-95d0-6abf97a53afa","_postman_id":"7b555f4e-bb6d-4280-95d0-6abf97a53afa","description":""},{"name":"Get list of draft messages","id":"ff0bda31-a51b-4cae-a287-0b2fa405e334","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/draft?page=1&per_page=15&inbox_type=2491&inbox_id=2491","description":"<p>REQUIRED SCOPES <code>['messages:read']</code></p>\n","urlObject":{"path":["messages","draft"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Number of items per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"},{"description":{"content":"<p>Inbox Type</p>\n","type":"text/plain"},"key":"inbox_type","value":"2491"},{"description":{"content":"<p>ID of Inbox</p>\n","type":"text/plain"},"key":"inbox_id","value":"2491"}],"variable":[]}},"response":[{"id":"1a19aa66-e163-49ed-bfe0-c87b66a9012f","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/draft?page=1&per_page=15&inbox_type=2491&inbox_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Number of items per page","key":"per_page","value":"15"},{"description":"Inbox Type","key":"inbox_type","value":"2491"},{"description":"ID of Inbox","key":"inbox_id","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 688,\n      \"conversation_id\": 5646,\n      \"automated\": false,\n      \"status\": \"string\",\n      \"type\": \"string\",\n      \"mms_status\": \"string\",\n      \"body\": \"string\",\n      \"body_raw\": \"string\",\n      \"has_tagging\": true,\n      \"icon\": \"string\",\n      \"received_at\": \"string\",\n      \"send_at\": \"string\",\n      \"queued_at\": \"string\",\n      \"sent_at\": \"string\",\n      \"delivered_at\": \"string\",\n      \"failed_at\": \"string\",\n      \"failed_reason\": \"string\",\n      \"created_at\": \"string\",\n      \"stop_on_response\": true,\n      \"is_hipaa\": true,\n      \"record\": {\n        \"id\": 1438,\n        \"message_id\": 2231,\n        \"sid\": \"string\",\n        \"record_id\": \"string\",\n        \"duration\": 8008,\n        \"status\": \"string\",\n        \"url\": \"string\",\n        \"is_voicemail\": false,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"user_id\": 4873,\n      \"source_id\": \"string\",\n      \"source\": \"string\",\n      \"contact\": {\n        \"id\": 5229,\n        \"owner_id\": 9966,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 9086\n          },\n          {\n            \"number_id\": 1510\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 4879,\n            \"number_id\": 82,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 9391,\n            \"number_id\": 315,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 5022,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 7300,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 946,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 2056,\n            \"custom_field_id\": 3753,\n            \"contact_id\": 5106,\n            \"field_key\": \"string\",\n            \"organization_id\": 6707,\n            \"text\": \"string\",\n            \"number\": 4382,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 6737,\n            \"custom_field_id\": 5045,\n            \"contact_id\": 5408,\n            \"field_key\": \"string\",\n            \"organization_id\": 8001,\n            \"text\": \"string\",\n            \"number\": 4383,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 679,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 8920,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 9676,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 2046,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      \"user\": {\n        \"id\": 2046,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 4526,\n        \"organization_id\": 81,\n        \"photo_url\": \"string\",\n        \"unread\": 5857,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": false,\n        \"organizationNumber\": [\n          {\n            \"id\": 5662,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 7099,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      \"pending_mentions\": [\n        {\n          \"id\": 9860,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 3604,\n          \"organization_id\": 8317,\n          \"photo_url\": \"string\",\n          \"unread\": 8387,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": true,\n          \"organizationNumber\": [\n            {\n              \"id\": 7874,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 2968,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        },\n        {\n          \"id\": 132,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 1598,\n          \"organization_id\": 5368,\n          \"photo_url\": \"string\",\n          \"unread\": 2,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": false,\n          \"organizationNumber\": [\n            {\n              \"id\": 109,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 2831,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        }\n      ],\n      \"media\": [\n        {\n          \"id\": 4108,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 5682,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5796,\n      \"conversation_id\": 8438,\n      \"automated\": false,\n      \"status\": \"string\",\n      \"type\": \"string\",\n      \"mms_status\": \"string\",\n      \"body\": \"string\",\n      \"body_raw\": \"string\",\n      \"has_tagging\": true,\n      \"icon\": \"string\",\n      \"received_at\": \"string\",\n      \"send_at\": \"string\",\n      \"queued_at\": \"string\",\n      \"sent_at\": \"string\",\n      \"delivered_at\": \"string\",\n      \"failed_at\": \"string\",\n      \"failed_reason\": \"string\",\n      \"created_at\": \"string\",\n      \"stop_on_response\": true,\n      \"is_hipaa\": true,\n      \"record\": {\n        \"id\": 2549,\n        \"message_id\": 873,\n        \"sid\": \"string\",\n        \"record_id\": \"string\",\n        \"duration\": 416,\n        \"status\": \"string\",\n        \"url\": \"string\",\n        \"is_voicemail\": true,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"user_id\": 1996,\n      \"source_id\": \"string\",\n      \"source\": \"string\",\n      \"contact\": {\n        \"id\": 3587,\n        \"owner_id\": 9933,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 4491\n          },\n          {\n            \"number_id\": 9115\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 3562,\n            \"number_id\": 8162,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 1355,\n            \"number_id\": 6380,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 8448,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 3588,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 5034,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 5524,\n            \"custom_field_id\": 9840,\n            \"contact_id\": 8120,\n            \"field_key\": \"string\",\n            \"organization_id\": 921,\n            \"text\": \"string\",\n            \"number\": 7373,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 609,\n            \"custom_field_id\": 6777,\n            \"contact_id\": 4938,\n            \"field_key\": \"string\",\n            \"organization_id\": 9091,\n            \"text\": \"string\",\n            \"number\": 1231,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 2239,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 9136,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 5095,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 2779,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      \"user\": {\n        \"id\": 3483,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 2417,\n        \"organization_id\": 7845,\n        \"photo_url\": \"string\",\n        \"unread\": 1079,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 9619,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 1651,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      \"pending_mentions\": [\n        {\n          \"id\": 272,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 4833,\n          \"organization_id\": 7012,\n          \"photo_url\": \"string\",\n          \"unread\": 3209,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": false,\n          \"organizationNumber\": [\n            {\n              \"id\": 7927,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 9318,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        },\n        {\n          \"id\": 3566,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 3001,\n          \"organization_id\": 4377,\n          \"photo_url\": \"string\",\n          \"unread\": 8087,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": false,\n          \"organizationNumber\": [\n            {\n              \"id\": 8929,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 2643,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        }\n      ],\n      \"media\": [\n        {\n          \"id\": 4618,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 1776,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 7566,\n    \"from\": 1367,\n    \"last_page\": 8021,\n    \"path\": \"string\",\n    \"per_page\": 388,\n    \"to\": 1138,\n    \"total\": 963\n  }\n}"},{"id":"946a04e5-e543-4fc7-9988-e16565522091","name":"Unauthenticated","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.3/messages/draft?page=1&per_page=15&inbox_type=2491&inbox_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Number of items per page","key":"per_page","value":"15"},{"description":"Inbox Type","key":"inbox_type","value":"2491"},{"description":"ID of Inbox","key":"inbox_id","value":"2491"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"08f04980-122f-4412-9a76-672bcd5b7593","name":"Forbidden","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.3/messages/draft?page=1&per_page=15&inbox_type=2491&inbox_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Number of items per page","key":"per_page","value":"15"},{"description":"Inbox Type","key":"inbox_type","value":"2491"},{"description":"ID of Inbox","key":"inbox_id","value":"2491"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ff0bda31-a51b-4cae-a287-0b2fa405e334"},{"name":"Delete a draft message","id":"cfeb60fa-e95d-4e8c-a2a4-f95678f4f854","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/draft?conversation_id=string&inbox_id=2491&inbox_type=2491","description":"<p>REQUIRED SCOPES <code>['messages:write']</code></p>\n","urlObject":{"path":["messages","draft"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>ID of the conversation</p>\n","type":"text/plain"},"key":"conversation_id","value":"string"},{"description":{"content":"<p>ID of the inbox</p>\n","type":"text/plain"},"key":"inbox_id","value":"2491"},{"description":{"content":"<p>Type of the inbox</p>\n","type":"text/plain"},"key":"inbox_type","value":"2491"}],"variable":[]}},"response":[{"id":"a2cc493d-7164-4488-8a3b-90f89d49a116","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/draft?conversation_id=string&inbox_id=2491&inbox_type=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft"],"query":[{"description":"ID of the conversation","key":"conversation_id","value":"string"},{"description":"ID of the inbox","key":"inbox_id","value":"2491"},{"description":"Type of the inbox","key":"inbox_type","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"deleted\"\n}"},{"id":"447c6a35-a416-4e9c-ab9d-cba0b88d6472","name":"Unauthenticated","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.3/messages/draft?conversation_id=string&inbox_id=2491&inbox_type=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft"],"query":[{"description":"ID of the conversation","key":"conversation_id","value":"string"},{"description":"ID of the inbox","key":"inbox_id","value":"2491"},{"description":"Type of the inbox","key":"inbox_type","value":"2491"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"dc4d6ce9-83ba-42cd-a103-3232e5b5133c","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.3/messages/draft?conversation_id=string&inbox_id=2491&inbox_type=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft"],"query":[{"description":"ID of the conversation","key":"conversation_id","value":"string"},{"description":"ID of the inbox","key":"inbox_id","value":"2491"},{"description":"Type of the inbox","key":"inbox_type","value":"2491"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5fc96461-f2cf-46bf-840d-8135c9be3c77","name":"Draft message 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.3/messages/draft?conversation_id=string&inbox_id=2491&inbox_type=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","draft"],"query":[{"description":"ID of the conversation","key":"conversation_id","value":"string"},{"description":"ID of the inbox","key":"inbox_id","value":"2491"},{"description":"Type of the inbox","key":"inbox_type","value":"2491"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cfeb60fa-e95d-4e8c-a2a4-f95678f4f854"}],"id":"80d895d1-ca8a-4f68-959a-7c21d9513e0d","_postman_id":"80d895d1-ca8a-4f68-959a-7c21d9513e0d","description":""},{"name":"files","item":[{"name":"upload","item":[{"name":"Upload files","id":"11e44d6c-1812-4998-9007-30af96a4728a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":"string,string","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/messages/files/upload","description":"<p>REQUIRED SCOPES <code>[‘messages:write’]</code><br />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.3"],"query":[],"variable":[]}},"response":[{"id":"63d4fb63-54b3-454c-86f7-6bc85d72fc60","name":"JSON Outbound Message","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"string,string","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/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\": \"string\",\n      \"content_type\": \"string\"\n    },\n    {\n      \"url\": \"string\",\n      \"content_type\": \"string\"\n    }\n  ]\n}"},{"id":"e711ff96-f883-4862-b620-98cf926ee6a3","name":"Unprocessable Content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"key":"files[]","value":"string,string","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/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":"11e44d6c-1812-4998-9007-30af96a4728a"}],"id":"bd046b0f-c2a3-4ab9-9216-473f36ca336e","_postman_id":"bd046b0f-c2a3-4ab9-9216-473f36ca336e","description":""}],"id":"2e50e504-0079-4f47-ada4-53ba7e41af61","_postman_id":"2e50e504-0079-4f47-ada4-53ba7e41af61","description":""},{"name":"forward","item":[{"name":"Forward a message to multiple contacts","id":"d85ff48d-66f4-412a-b996-9d097be3c5e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"inbox_id\": 7982,\n  \"message_id\": 3615,\n  \"list_of_contacts\": [\n    3875,\n    8858\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/messages/forward","description":"<p>REQUIRED SCOPES <code>['messages:write']</code></p>\n","urlObject":{"path":["messages","forward"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"97c130c0-bfe6-433f-a82f-e4f279ad78b1","name":"Message forwarded successfully","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"inbox_id\": 7982,\n  \"message_id\": 3615,\n  \"list_of_contacts\": [\n    3875,\n    8858\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/messages/forward"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Successfully sent\"\n}"},{"id":"0df594d6-bc27-4ee0-a6b2-0e5c592f2961","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"inbox_id\": 7982,\n  \"message_id\": 3615,\n  \"list_of_contacts\": [\n    3875,\n    8858\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/messages/forward"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5ee68e34-e96f-40df-ae6d-8aa0fd81c58d","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"inbox_id\": 7982,\n  \"message_id\": 3615,\n  \"list_of_contacts\": [\n    3875,\n    8858\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/messages/forward"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5d419515-1298-450e-a4ba-d4fe1cf79e4d","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"inbox_id\": 7982,\n  \"message_id\": 3615,\n  \"list_of_contacts\": [\n    3875,\n    8858\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/messages/forward"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"d85ff48d-66f4-412a-b996-9d097be3c5e4"}],"id":"a0476a0a-30ec-421f-9952-429c18447bf2","_postman_id":"a0476a0a-30ec-421f-9952-429c18447bf2","description":""},{"name":"last-outbound","item":[{"name":"Get last outbound messages","id":"101090ff-ea7b-47bc-89bf-4984cc03414a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/last-outbound","description":"<p>REQUIRED SCOPES <code>['messages:read']</code></p>\n","urlObject":{"path":["messages","last-outbound"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"eb7fb6ac-fb84-4ef1-9187-22ba36d5a242","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/last-outbound"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"\",\n  \"\"\n]"}],"_postman_id":"101090ff-ea7b-47bc-89bf-4984cc03414a"}],"id":"b7836fd6-eacf-4775-bd2d-c68fd94f34e5","_postman_id":"b7836fd6-eacf-4775-bd2d-c68fd94f34e5","description":""},{"name":"contacts","item":[{"name":"{contact}","item":[{"name":"teams","item":[{"name":"{team}","item":[{"name":"Get messages by contact and team","id":"9fadc8f5-8cdf-4979-8947-5ab211620aaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/contacts/:contact/teams/:team?limit=10&before=2491&after=2491&beforeOrEqual=2491&afterOrEqual=2491&offsetAfter=2491&grouped_response=false","description":"<p>REQUIRED SCOPES <code>['messages:read']</code></p>\n","urlObject":{"path":["messages","contacts",":contact","teams",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Number of messages to return</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Return messages before this message ID</p>\n","type":"text/plain"},"key":"before","value":"2491"},{"description":{"content":"<p>Return messages after this message ID</p>\n","type":"text/plain"},"key":"after","value":"2491"},{"description":{"content":"<p>Return messages before or equal this message ID</p>\n","type":"text/plain"},"key":"beforeOrEqual","value":"2491"},{"description":{"content":"<p>Return messages after or equal this message ID</p>\n","type":"text/plain"},"key":"afterOrEqual","value":"2491"},{"description":{"content":"<p>Set messages offset</p>\n","type":"text/plain"},"key":"offsetAfter","value":"2491"},{"description":{"content":"<p>Whether to return a grouped response</p>\n","type":"text/plain"},"key":"grouped_response","value":"false"}],"variable":[{"id":"c45dcaec-3200-4139-9fe5-7722162c7b90","description":{"content":"<p>ID of the contact</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contact"},{"id":"7bdd12c4-55b8-426c-8f20-eef900b4f983","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"018f6d57-fbb2-430a-82b9-199b52871d99","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/contacts/:contact/teams/:team?limit=10&before=2491&after=2491&beforeOrEqual=2491&afterOrEqual=2491&offsetAfter=2491&grouped_response=false","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","contacts",":contact","teams",":team"],"query":[{"description":"Number of messages to return","key":"limit","value":"10"},{"description":"Return messages before this message ID","key":"before","value":"2491"},{"description":"Return messages after this message ID","key":"after","value":"2491"},{"description":"Return messages before or equal this message ID","key":"beforeOrEqual","value":"2491"},{"description":"Return messages after or equal this message ID","key":"afterOrEqual","value":"2491"},{"description":"Set messages offset","key":"offsetAfter","value":"2491"},{"description":"Whether to return a grouped response","key":"grouped_response","value":"false"}],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"},{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 3590,\n      \"conversation_id\": 7520,\n      \"automated\": false,\n      \"status\": \"string\",\n      \"type\": \"string\",\n      \"mms_status\": \"string\",\n      \"body\": \"string\",\n      \"body_raw\": \"string\",\n      \"has_tagging\": true,\n      \"icon\": \"string\",\n      \"received_at\": \"string\",\n      \"send_at\": \"string\",\n      \"queued_at\": \"string\",\n      \"sent_at\": \"string\",\n      \"delivered_at\": \"string\",\n      \"failed_at\": \"string\",\n      \"failed_reason\": \"string\",\n      \"created_at\": \"string\",\n      \"stop_on_response\": false,\n      \"is_hipaa\": false,\n      \"record\": {\n        \"id\": 4452,\n        \"message_id\": 8295,\n        \"sid\": \"string\",\n        \"record_id\": \"string\",\n        \"duration\": 4339,\n        \"status\": \"string\",\n        \"url\": \"string\",\n        \"is_voicemail\": false,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"user_id\": 9139,\n      \"source_id\": \"string\",\n      \"source\": \"string\",\n      \"contact\": {\n        \"id\": 3687,\n        \"owner_id\": 6402,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": false,\n        \"opt_out\": true,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 9350\n          },\n          {\n            \"number_id\": 1056\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 8553,\n            \"number_id\": 7987,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 4856,\n            \"number_id\": 4108,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": false\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 7213,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": 1786,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 9596,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 1818,\n            \"custom_field_id\": 844,\n            \"contact_id\": 7158,\n            \"field_key\": \"string\",\n            \"organization_id\": 5651,\n            \"text\": \"string\",\n            \"number\": 7671,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 2032,\n            \"custom_field_id\": 9089,\n            \"contact_id\": 908,\n            \"field_key\": \"string\",\n            \"organization_id\": 9759,\n            \"text\": \"string\",\n            \"number\": 1831,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 7833,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 497,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 4749,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 8024,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      \"user\": {\n        \"id\": 2,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 695,\n        \"organization_id\": 1260,\n        \"photo_url\": \"string\",\n        \"unread\": 3307,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 7059,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 5515,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      \"pending_mentions\": [\n        {\n          \"id\": 2594,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 5919,\n          \"organization_id\": 9987,\n          \"photo_url\": \"string\",\n          \"unread\": 2384,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": false,\n          \"organizationNumber\": [\n            {\n              \"id\": 7084,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 872,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        },\n        {\n          \"id\": 7689,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 8223,\n          \"organization_id\": 8917,\n          \"photo_url\": \"string\",\n          \"unread\": 9921,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": true,\n          \"organizationNumber\": [\n            {\n              \"id\": 9379,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 7810,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        }\n      ],\n      \"media\": [\n        {\n          \"id\": 6297,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 228,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 797,\n      \"conversation_id\": 2561,\n      \"automated\": false,\n      \"status\": \"string\",\n      \"type\": \"string\",\n      \"mms_status\": \"string\",\n      \"body\": \"string\",\n      \"body_raw\": \"string\",\n      \"has_tagging\": true,\n      \"icon\": \"string\",\n      \"received_at\": \"string\",\n      \"send_at\": \"string\",\n      \"queued_at\": \"string\",\n      \"sent_at\": \"string\",\n      \"delivered_at\": \"string\",\n      \"failed_at\": \"string\",\n      \"failed_reason\": \"string\",\n      \"created_at\": \"string\",\n      \"stop_on_response\": true,\n      \"is_hipaa\": false,\n      \"record\": {\n        \"id\": 6525,\n        \"message_id\": 3989,\n        \"sid\": \"string\",\n        \"record_id\": \"string\",\n        \"duration\": 3393,\n        \"status\": \"string\",\n        \"url\": \"string\",\n        \"is_voicemail\": false,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"user_id\": 3628,\n      \"source_id\": \"string\",\n      \"source\": \"string\",\n      \"contact\": {\n        \"id\": 6506,\n        \"owner_id\": 8687,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": false,\n        \"opt_out\": false,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 7399\n          },\n          {\n            \"number_id\": 8651\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 3127,\n            \"number_id\": 5910,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 3066,\n            \"number_id\": 7345,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 6934,\n        \"prevent_autolink\": true,\n        \"integration\": [\n          {\n            \"id\": 456,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 3568,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 3942,\n            \"custom_field_id\": 8682,\n            \"contact_id\": 5830,\n            \"field_key\": \"string\",\n            \"organization_id\": 3906,\n            \"text\": \"string\",\n            \"number\": 485,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 8550,\n            \"custom_field_id\": 7227,\n            \"contact_id\": 4507,\n            \"field_key\": \"string\",\n            \"organization_id\": 1416,\n            \"text\": \"string\",\n            \"number\": 2608,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 7398,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 8161,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 7694,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 4023,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      \"user\": {\n        \"id\": 9485,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 2537,\n        \"organization_id\": 8506,\n        \"photo_url\": \"string\",\n        \"unread\": 8073,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": false,\n        \"organizationNumber\": [\n          {\n            \"id\": 8859,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 7879,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      \"pending_mentions\": [\n        {\n          \"id\": 1323,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 8295,\n          \"organization_id\": 6747,\n          \"photo_url\": \"string\",\n          \"unread\": 3641,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": true,\n          \"organizationNumber\": [\n            {\n              \"id\": 4782,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 2285,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        },\n        {\n          \"id\": 718,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 1257,\n          \"organization_id\": 682,\n          \"photo_url\": \"string\",\n          \"unread\": 8996,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": false,\n          \"organizationNumber\": [\n            {\n              \"id\": 6728,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 2918,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        }\n      ],\n      \"media\": [\n        {\n          \"id\": 8782,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 4785,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"meta\": {\n    \"conversation_id\": 1497,\n    \"has_more\": false\n  }\n}"},{"id":"55bf67df-d7cf-440c-bdf6-887318e0be1f","name":"Unauthenticated","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.3/messages/contacts/:contact/teams/:team?limit=10&before=2491&after=2491&beforeOrEqual=2491&afterOrEqual=2491&offsetAfter=2491&grouped_response=false","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","contacts",":contact","teams",":team"],"query":[{"description":"Number of messages to return","key":"limit","value":"10"},{"description":"Return messages before this message ID","key":"before","value":"2491"},{"description":"Return messages after this message ID","key":"after","value":"2491"},{"description":"Return messages before or equal this message ID","key":"beforeOrEqual","value":"2491"},{"description":"Return messages after or equal this message ID","key":"afterOrEqual","value":"2491"},{"description":"Set messages offset","key":"offsetAfter","value":"2491"},{"description":"Whether to return a grouped response","key":"grouped_response","value":"false"}],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"},{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0ea34dc1-be6c-4a27-927c-6cf757a263e5","name":"Forbidden","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.3/messages/contacts/:contact/teams/:team?limit=10&before=2491&after=2491&beforeOrEqual=2491&afterOrEqual=2491&offsetAfter=2491&grouped_response=false","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","contacts",":contact","teams",":team"],"query":[{"description":"Number of messages to return","key":"limit","value":"10"},{"description":"Return messages before this message ID","key":"before","value":"2491"},{"description":"Return messages after this message ID","key":"after","value":"2491"},{"description":"Return messages before or equal this message ID","key":"beforeOrEqual","value":"2491"},{"description":"Return messages after or equal this message ID","key":"afterOrEqual","value":"2491"},{"description":"Set messages offset","key":"offsetAfter","value":"2491"},{"description":"Whether to return a grouped response","key":"grouped_response","value":"false"}],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"},{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d2a43f21-bf30-4bca-93a7-46042523cbe3","name":"Contact, team, or conversation 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.3/messages/contacts/:contact/teams/:team?limit=10&before=2491&after=2491&beforeOrEqual=2491&afterOrEqual=2491&offsetAfter=2491&grouped_response=false","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","contacts",":contact","teams",":team"],"query":[{"description":"Number of messages to return","key":"limit","value":"10"},{"description":"Return messages before this message ID","key":"before","value":"2491"},{"description":"Return messages after this message ID","key":"after","value":"2491"},{"description":"Return messages before or equal this message ID","key":"beforeOrEqual","value":"2491"},{"description":"Return messages after or equal this message ID","key":"afterOrEqual","value":"2491"},{"description":"Set messages offset","key":"offsetAfter","value":"2491"},{"description":"Whether to return a grouped response","key":"grouped_response","value":"false"}],"variable":[{"key":"contact","value":"2491","description":"ID of the contact"},{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9fadc8f5-8cdf-4979-8947-5ab211620aaa"}],"id":"68060db6-e95b-47a5-844c-9d31c3215a43","_postman_id":"68060db6-e95b-47a5-844c-9d31c3215a43","description":""}],"id":"15093526-dcf6-4bdb-a892-684d21c1b677","_postman_id":"15093526-dcf6-4bdb-a892-684d21c1b677","description":""}],"id":"9e542017-0970-43ef-9e81-223e168f7787","_postman_id":"9e542017-0970-43ef-9e81-223e168f7787","description":""},{"name":"Get messages by contacts","id":"aada07a8-cffb-49e2-97e4-c0c3b7bea1a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/contacts?contacts[]=1786&contacts[]=1861&team_id=2491&limit=20&before=2491","description":"<p>REQUIRED SCOPES <code>['messages:read']</code><br />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.3"],"query":[{"description":{"content":"<p>Contacts</p>\n","type":"text/plain"},"key":"contacts[]","value":"1786"},{"description":{"content":"<p>Contacts</p>\n","type":"text/plain"},"key":"contacts[]","value":"1861"},{"description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"key":"team_id","value":"2491"},{"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":"2491"}],"variable":[]}},"response":[{"id":"b222b5ce-c8de-4880-a847-872e2c6fce0e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/contacts?contacts[]=1861&team_id=2491&limit=20&before=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","contacts"],"query":[{"description":"Contacts","key":"contacts[]","value":"1861"},{"description":"Team ID","key":"team_id","value":"2491"},{"description":"The number of items to return per page.","key":"limit","value":"20"},{"description":"Before","key":"before","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 2301,\n    \"conversation_id\": 9260,\n    \"automated\": true,\n    \"status\": \"string\",\n    \"type\": \"string\",\n    \"mms_status\": \"string\",\n    \"body\": \"string\",\n    \"body_raw\": \"string\",\n    \"has_tagging\": true,\n    \"icon\": \"string\",\n    \"received_at\": \"string\",\n    \"send_at\": \"string\",\n    \"queued_at\": \"string\",\n    \"sent_at\": \"string\",\n    \"delivered_at\": \"string\",\n    \"failed_at\": \"string\",\n    \"failed_reason\": \"string\",\n    \"created_at\": \"string\",\n    \"stop_on_response\": false,\n    \"is_hipaa\": true,\n    \"record\": {\n      \"id\": 3633,\n      \"message_id\": 3932,\n      \"sid\": \"string\",\n      \"record_id\": \"string\",\n      \"duration\": 2601,\n      \"status\": \"string\",\n      \"url\": \"string\",\n      \"is_voicemail\": true,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"user_id\": 1085,\n    \"source_id\": \"string\",\n    \"source\": \"string\",\n    \"contact\": {\n      \"id\": 2036,\n      \"owner_id\": 8686,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 3214\n        },\n        {\n          \"number_id\": 9544\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5836,\n          \"number_id\": 679,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 3979,\n          \"number_id\": 2390,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 9016,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9132,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 4018,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 2207,\n          \"custom_field_id\": 3736,\n          \"contact_id\": 2568,\n          \"field_key\": \"string\",\n          \"organization_id\": 9538,\n          \"text\": \"string\",\n          \"number\": 5596,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9422,\n          \"custom_field_id\": 5741,\n          \"contact_id\": 2123,\n          \"field_key\": \"string\",\n          \"organization_id\": 6844,\n          \"text\": \"string\",\n          \"number\": 5141,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 2006,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 1753,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 9897,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 399,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    \"user\": {\n      \"id\": 7975,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 2189,\n      \"organization_id\": 9447,\n      \"photo_url\": \"string\",\n      \"unread\": 8136,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": true,\n      \"organizationNumber\": [\n        {\n          \"id\": 221,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 8069,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    \"pending_mentions\": [\n      {\n        \"id\": 262,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 1945,\n        \"organization_id\": 4233,\n        \"photo_url\": \"string\",\n        \"unread\": 5941,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 9977,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 3496,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      {\n        \"id\": 8253,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 7468,\n        \"organization_id\": 2928,\n        \"photo_url\": \"string\",\n        \"unread\": 9293,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": false,\n        \"organizationNumber\": [\n          {\n            \"id\": 8819,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 2025,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    ],\n    \"media\": [\n      {\n        \"id\": 2317,\n        \"content_type\": \"string\",\n        \"source\": \"string\",\n        \"source_short\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 8257,\n        \"content_type\": \"string\",\n        \"source\": \"string\",\n        \"source_short\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ]\n  },\n  {\n    \"id\": 6113,\n    \"conversation_id\": 9832,\n    \"automated\": true,\n    \"status\": \"string\",\n    \"type\": \"string\",\n    \"mms_status\": \"string\",\n    \"body\": \"string\",\n    \"body_raw\": \"string\",\n    \"has_tagging\": true,\n    \"icon\": \"string\",\n    \"received_at\": \"string\",\n    \"send_at\": \"string\",\n    \"queued_at\": \"string\",\n    \"sent_at\": \"string\",\n    \"delivered_at\": \"string\",\n    \"failed_at\": \"string\",\n    \"failed_reason\": \"string\",\n    \"created_at\": \"string\",\n    \"stop_on_response\": true,\n    \"is_hipaa\": true,\n    \"record\": {\n      \"id\": 3642,\n      \"message_id\": 1866,\n      \"sid\": \"string\",\n      \"record_id\": \"string\",\n      \"duration\": 6764,\n      \"status\": \"string\",\n      \"url\": \"string\",\n      \"is_voicemail\": false,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"user_id\": 1586,\n    \"source_id\": \"string\",\n    \"source\": \"string\",\n    \"contact\": {\n      \"id\": 4947,\n      \"owner_id\": 8492,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9967\n        },\n        {\n          \"number_id\": 5551\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 8193,\n          \"number_id\": 3889,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 9067,\n          \"number_id\": 8238,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 3433,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9229,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 3675,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6671,\n          \"custom_field_id\": 9562,\n          \"contact_id\": 1379,\n          \"field_key\": \"string\",\n          \"organization_id\": 3072,\n          \"text\": \"string\",\n          \"number\": 4514,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 3089,\n          \"custom_field_id\": 6314,\n          \"contact_id\": 4174,\n          \"field_key\": \"string\",\n          \"organization_id\": 9407,\n          \"text\": \"string\",\n          \"number\": 3148,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 6474,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 6505,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 1164,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5633,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    \"user\": {\n      \"id\": 1498,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 4088,\n      \"organization_id\": 3513,\n      \"photo_url\": \"string\",\n      \"unread\": 4315,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": true,\n      \"organizationNumber\": [\n        {\n          \"id\": 3463,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    \"pending_mentions\": [\n      {\n        \"id\": 4434,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 8700,\n        \"organization_id\": 4182,\n        \"photo_url\": \"string\",\n        \"unread\": 9439,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 2801,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 5847,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      {\n        \"id\": 9592,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 1432,\n        \"organization_id\": 8539,\n        \"photo_url\": \"string\",\n        \"unread\": 2421,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 7225,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 1016,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    ],\n    \"media\": [\n      {\n        \"id\": 5150,\n        \"content_type\": \"string\",\n        \"source\": \"string\",\n        \"source_short\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 4200,\n        \"content_type\": \"string\",\n        \"source\": \"string\",\n        \"source_short\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ]\n  }\n]"}],"_postman_id":"aada07a8-cffb-49e2-97e4-c0c3b7bea1a9"}],"id":"a7cf5d79-96e0-4430-bfb2-a3eb77dd7de8","_postman_id":"a7cf5d79-96e0-4430-bfb2-a3eb77dd7de8","description":""},{"name":"{conversation}","item":[{"name":"paginated","item":[{"name":"Get paginated list of messages for a conversation","id":"e6dbad8c-79e4-4e65-9e3c-04ed586bd2bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:conversation/paginated?per_page=15&page=1&with_activity_logs=false&only_scheduled=false&message_id=2491","description":"<p>REQUIRED SCOPES <code>['messages:read']</code></p>\n","urlObject":{"path":["messages",":conversation","paginated"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Number of messages per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"},{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Include activity logs</p>\n","type":"text/plain"},"key":"with_activity_logs","value":"false"},{"description":{"content":"<p>Only return scheduled messages</p>\n","type":"text/plain"},"key":"only_scheduled","value":"false"},{"description":{"content":"<p>Message ID</p>\n","type":"text/plain"},"key":"message_id","value":"2491"}],"variable":[{"id":"c6f1043c-3059-4b4f-b871-210b4fc78322","description":{"content":"<p>ID of the conversation</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"conversation"}]}},"response":[{"id":"353bb0d2-467c-4037-9c1f-961da6000040","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:conversation/paginated?per_page=15&page=1&with_activity_logs=false&only_scheduled=false&message_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":conversation","paginated"],"query":[{"description":"Number of messages per page","key":"per_page","value":"15"},{"description":"Page number","key":"page","value":"1"},{"description":"Include activity logs","key":"with_activity_logs","value":"false"},{"description":"Only return scheduled messages","key":"only_scheduled","value":"false"},{"description":"Message ID","key":"message_id","value":"2491"}],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 688,\n      \"conversation_id\": 5646,\n      \"automated\": false,\n      \"status\": \"string\",\n      \"type\": \"string\",\n      \"mms_status\": \"string\",\n      \"body\": \"string\",\n      \"body_raw\": \"string\",\n      \"has_tagging\": true,\n      \"icon\": \"string\",\n      \"received_at\": \"string\",\n      \"send_at\": \"string\",\n      \"queued_at\": \"string\",\n      \"sent_at\": \"string\",\n      \"delivered_at\": \"string\",\n      \"failed_at\": \"string\",\n      \"failed_reason\": \"string\",\n      \"created_at\": \"string\",\n      \"stop_on_response\": true,\n      \"is_hipaa\": true,\n      \"record\": {\n        \"id\": 1438,\n        \"message_id\": 2231,\n        \"sid\": \"string\",\n        \"record_id\": \"string\",\n        \"duration\": 8008,\n        \"status\": \"string\",\n        \"url\": \"string\",\n        \"is_voicemail\": false,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"user_id\": 4873,\n      \"source_id\": \"string\",\n      \"source\": \"string\",\n      \"contact\": {\n        \"id\": 5229,\n        \"owner_id\": 9966,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 9086\n          },\n          {\n            \"number_id\": 1510\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 4879,\n            \"number_id\": 82,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 9391,\n            \"number_id\": 315,\n            \"name\": \"string\",\n            \"disabled\": false,\n            \"timestamp\": \"string\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 5022,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 7300,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 946,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 2056,\n            \"custom_field_id\": 3753,\n            \"contact_id\": 5106,\n            \"field_key\": \"string\",\n            \"organization_id\": 6707,\n            \"text\": \"string\",\n            \"number\": 4382,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 6737,\n            \"custom_field_id\": 5045,\n            \"contact_id\": 5408,\n            \"field_key\": \"string\",\n            \"organization_id\": 8001,\n            \"text\": \"string\",\n            \"number\": 4383,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 679,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 8920,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 9676,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 2046,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      \"user\": {\n        \"id\": 2046,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 4526,\n        \"organization_id\": 81,\n        \"photo_url\": \"string\",\n        \"unread\": 5857,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": false,\n        \"organizationNumber\": [\n          {\n            \"id\": 5662,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 7099,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      \"pending_mentions\": [\n        {\n          \"id\": 9860,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 3604,\n          \"organization_id\": 8317,\n          \"photo_url\": \"string\",\n          \"unread\": 8387,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": true,\n          \"organizationNumber\": [\n            {\n              \"id\": 7874,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 2968,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        },\n        {\n          \"id\": 132,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 1598,\n          \"organization_id\": 5368,\n          \"photo_url\": \"string\",\n          \"unread\": 2,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": false,\n          \"organizationNumber\": [\n            {\n              \"id\": 109,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 2831,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        }\n      ],\n      \"media\": [\n        {\n          \"id\": 4108,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 5682,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5796,\n      \"conversation_id\": 8438,\n      \"automated\": false,\n      \"status\": \"string\",\n      \"type\": \"string\",\n      \"mms_status\": \"string\",\n      \"body\": \"string\",\n      \"body_raw\": \"string\",\n      \"has_tagging\": true,\n      \"icon\": \"string\",\n      \"received_at\": \"string\",\n      \"send_at\": \"string\",\n      \"queued_at\": \"string\",\n      \"sent_at\": \"string\",\n      \"delivered_at\": \"string\",\n      \"failed_at\": \"string\",\n      \"failed_reason\": \"string\",\n      \"created_at\": \"string\",\n      \"stop_on_response\": true,\n      \"is_hipaa\": true,\n      \"record\": {\n        \"id\": 2549,\n        \"message_id\": 873,\n        \"sid\": \"string\",\n        \"record_id\": \"string\",\n        \"duration\": 416,\n        \"status\": \"string\",\n        \"url\": \"string\",\n        \"is_voicemail\": true,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"user_id\": 1996,\n      \"source_id\": \"string\",\n      \"source\": \"string\",\n      \"contact\": {\n        \"id\": 3587,\n        \"owner_id\": 9933,\n        \"color\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"email\": \"string\",\n        \"photo_url\": \"string\",\n        \"number\": \"string\",\n        \"country\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"typeted_number\": \"string\",\n        \"is_blocked\": true,\n        \"opt_out\": false,\n        \"opt_out_at\": \"string\",\n        \"opt_in_request_at\": \"string\",\n        \"opt_in_requests\": [\n          {\n            \"number_id\": 4491\n          },\n          {\n            \"number_id\": 9115\n          }\n        ],\n        \"opt_in_at\": \"string\",\n        \"shortcode_opt_outs\": [\n          {\n            \"id\": 3562,\n            \"number_id\": 8162,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          },\n          {\n            \"id\": 1355,\n            \"number_id\": 6380,\n            \"name\": \"string\",\n            \"disabled\": true,\n            \"timestamp\": \"string\",\n            \"value\": true\n          }\n        ],\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"integration_vendor_id\": 8448,\n        \"prevent_autolink\": false,\n        \"integration\": [\n          {\n            \"id\": 3588,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          },\n          {\n            \"id\": 5034,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"photo_url\": \"string\"\n          }\n        ],\n        \"custom_fields\": [\n          {\n            \"id\": 5524,\n            \"custom_field_id\": 9840,\n            \"contact_id\": 8120,\n            \"field_key\": \"string\",\n            \"organization_id\": 921,\n            \"text\": \"string\",\n            \"number\": 7373,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          },\n          {\n            \"id\": 609,\n            \"custom_field_id\": 6777,\n            \"contact_id\": 4938,\n            \"field_key\": \"string\",\n            \"organization_id\": 9091,\n            \"text\": \"string\",\n            \"number\": 1231,\n            \"date\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\",\n            \"value\": [\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              },\n              {\n                \"type\": \"string\",\n                \"value\": \"string\"\n              }\n            ]\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 2239,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          },\n          {\n            \"id\": 9136,\n            \"name\": \"string\",\n            \"label\": \"string\",\n            \"created_at\": \"string\"\n          }\n        ],\n        \"notes\": [\n          {\n            \"id\": 5095,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          {\n            \"id\": 2779,\n            \"text\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        ]\n      },\n      \"user\": {\n        \"id\": 3483,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 2417,\n        \"organization_id\": 7845,\n        \"photo_url\": \"string\",\n        \"unread\": 1079,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 9619,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 1651,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      \"pending_mentions\": [\n        {\n          \"id\": 272,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 4833,\n          \"organization_id\": 7012,\n          \"photo_url\": \"string\",\n          \"unread\": 3209,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": false,\n          \"organizationNumber\": [\n            {\n              \"id\": 7927,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 9318,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        },\n        {\n          \"id\": 3566,\n          \"email\": \"string\",\n          \"first_name\": \"string\",\n          \"last_name\": \"string\",\n          \"full_name\": \"string\",\n          \"role\": \"string\",\n          \"inbox_id\": 3001,\n          \"organization_id\": 4377,\n          \"photo_url\": \"string\",\n          \"unread\": 8087,\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"isRingEverywhere\": false,\n          \"organizationNumber\": [\n            {\n              \"id\": 8929,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            },\n            {\n              \"id\": 2643,\n              \"country\": \"string\",\n              \"number\": \"string\",\n              \"formatted_number\": \"string\",\n              \"mms\": \"string\"\n            }\n          ],\n          \"userPermissions\": [\n            \"string\",\n            \"string\"\n          ]\n        }\n      ],\n      \"media\": [\n        {\n          \"id\": 4618,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 1776,\n          \"content_type\": \"string\",\n          \"source\": \"string\",\n          \"source_short\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 7566,\n    \"from\": 1367,\n    \"last_page\": 8021,\n    \"path\": \"string\",\n    \"per_page\": 388,\n    \"to\": 1138,\n    \"total\": 963\n  }\n}"},{"id":"54d2531a-7cce-44fb-991d-17bb797fed3c","name":"Unauthenticated","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.3/messages/:conversation/paginated?per_page=15&page=1&with_activity_logs=false&only_scheduled=false&message_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":conversation","paginated"],"query":[{"description":"Number of messages per page","key":"per_page","value":"15"},{"description":"Page number","key":"page","value":"1"},{"description":"Include activity logs","key":"with_activity_logs","value":"false"},{"description":"Only return scheduled messages","key":"only_scheduled","value":"false"},{"description":"Message ID","key":"message_id","value":"2491"}],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5fc524bb-8e4c-45ae-8691-a2b9f9cf6336","name":"Forbidden","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.3/messages/:conversation/paginated?per_page=15&page=1&with_activity_logs=false&only_scheduled=false&message_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":conversation","paginated"],"query":[{"description":"Number of messages per page","key":"per_page","value":"15"},{"description":"Page number","key":"page","value":"1"},{"description":"Include activity logs","key":"with_activity_logs","value":"false"},{"description":"Only return scheduled messages","key":"only_scheduled","value":"false"},{"description":"Message ID","key":"message_id","value":"2491"}],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"9186c844-5b58-4d9d-9676-27e5a3139a8e","name":"Conversation 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.3/messages/:conversation/paginated?per_page=15&page=1&with_activity_logs=false&only_scheduled=false&message_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":conversation","paginated"],"query":[{"description":"Number of messages per page","key":"per_page","value":"15"},{"description":"Page number","key":"page","value":"1"},{"description":"Include activity logs","key":"with_activity_logs","value":"false"},{"description":"Only return scheduled messages","key":"only_scheduled","value":"false"},{"description":"Message ID","key":"message_id","value":"2491"}],"variable":[{"key":"conversation","value":"2491","description":"ID of the conversation"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e6dbad8c-79e4-4e65-9e3c-04ed586bd2bd"}],"id":"5c028590-db1f-44d0-94f8-9bd17683293b","_postman_id":"5c028590-db1f-44d0-94f8-9bd17683293b","description":""},{"name":"scheduled","item":[{"name":"count","item":[{"name":"Get Count Scheduled Message By Conversation","id":"d256a427-e536-4f39-9d0b-2741376b669e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:conversation/scheduled/count","description":"<p>REQUIRED SCOPES <code>['messages:read']</code><br />Count Scheduled Message By Conversation</p>\n","urlObject":{"path":["messages",":conversation","scheduled","count"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"0c3dab9f-e03e-4b8b-8248-eb50d23c2b49","type":"any","key":"conversation"}]}},"response":[{"id":"aba34b83-221d-428e-98af-7973e731c37f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:conversation/scheduled/count","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":conversation","scheduled","count"],"variable":[{"key":"conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 1,\n  \"ids\": [\n    {\n      \"\": 1\n    },\n    {\n      \"\": 1\n    }\n  ]\n}"},{"id":"1448c169-903e-4617-8efd-ca751017252d","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.3/messages/:conversation/scheduled/count","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":conversation","scheduled","count"],"variable":[{"key":"conversation"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d256a427-e536-4f39-9d0b-2741376b669e"}],"id":"20d82d85-8fd5-4a97-aafd-3a019825c804","_postman_id":"20d82d85-8fd5-4a97-aafd-3a019825c804","description":""}],"id":"c338bc96-bd8a-48ce-b5cf-859606e062c6","_postman_id":"c338bc96-bd8a-48ce-b5cf-859606e062c6","description":""},{"name":"Get user conversation","id":"19d620e6-1c61-4a4f-a99e-4298b7b9052a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:conversation?limit=10&before=&grouped_response=","description":"<p>REQUIRED SCOPES <code>['messages:read']</code><br />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.3"],"query":[{"description":{"content":"<p>Limit</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Where message id is less than</p>\n","type":"text/plain"},"key":"before","value":""},{"description":{"content":"<p>Is return grouped response</p>\n","type":"text/plain"},"key":"grouped_response","value":""}],"variable":[{"id":"51dbc8ce-b51d-454c-a86d-40a5c6565be4","description":{"content":"<p>ID of conversation</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"conversation"}]}},"response":[{"id":"52bf2496-f8e3-4de2-b7ef-f3b4f94d87c0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:conversation?limit=10&before=&grouped_response=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":conversation"],"query":[{"description":"Limit","key":"limit","value":"10"},{"description":"Where message id is less than","key":"before","value":""},{"description":"Is return grouped response","key":"grouped_response","value":""}],"variable":[{"key":"conversation","value":"2491","description":"ID of conversation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 2301,\n    \"conversation_id\": 9260,\n    \"automated\": true,\n    \"status\": \"string\",\n    \"type\": \"string\",\n    \"mms_status\": \"string\",\n    \"body\": \"string\",\n    \"body_raw\": \"string\",\n    \"has_tagging\": true,\n    \"icon\": \"string\",\n    \"received_at\": \"string\",\n    \"send_at\": \"string\",\n    \"queued_at\": \"string\",\n    \"sent_at\": \"string\",\n    \"delivered_at\": \"string\",\n    \"failed_at\": \"string\",\n    \"failed_reason\": \"string\",\n    \"created_at\": \"string\",\n    \"stop_on_response\": false,\n    \"is_hipaa\": true,\n    \"record\": {\n      \"id\": 3633,\n      \"message_id\": 3932,\n      \"sid\": \"string\",\n      \"record_id\": \"string\",\n      \"duration\": 2601,\n      \"status\": \"string\",\n      \"url\": \"string\",\n      \"is_voicemail\": true,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"user_id\": 1085,\n    \"source_id\": \"string\",\n    \"source\": \"string\",\n    \"contact\": {\n      \"id\": 2036,\n      \"owner_id\": 8686,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": false,\n      \"opt_out\": true,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 3214\n        },\n        {\n          \"number_id\": 9544\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 5836,\n          \"number_id\": 679,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": true\n        },\n        {\n          \"id\": 3979,\n          \"number_id\": 2390,\n          \"name\": \"string\",\n          \"disabled\": true,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 9016,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9132,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 4018,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 2207,\n          \"custom_field_id\": 3736,\n          \"contact_id\": 2568,\n          \"field_key\": \"string\",\n          \"organization_id\": 9538,\n          \"text\": \"string\",\n          \"number\": 5596,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 9422,\n          \"custom_field_id\": 5741,\n          \"contact_id\": 2123,\n          \"field_key\": \"string\",\n          \"organization_id\": 6844,\n          \"text\": \"string\",\n          \"number\": 5141,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 2006,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 1753,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 9897,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 399,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    \"user\": {\n      \"id\": 7975,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 2189,\n      \"organization_id\": 9447,\n      \"photo_url\": \"string\",\n      \"unread\": 8136,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": true,\n      \"organizationNumber\": [\n        {\n          \"id\": 221,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 8069,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    \"pending_mentions\": [\n      {\n        \"id\": 262,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 1945,\n        \"organization_id\": 4233,\n        \"photo_url\": \"string\",\n        \"unread\": 5941,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 9977,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 3496,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      {\n        \"id\": 8253,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 7468,\n        \"organization_id\": 2928,\n        \"photo_url\": \"string\",\n        \"unread\": 9293,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": false,\n        \"organizationNumber\": [\n          {\n            \"id\": 8819,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 2025,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    ],\n    \"media\": [\n      {\n        \"id\": 2317,\n        \"content_type\": \"string\",\n        \"source\": \"string\",\n        \"source_short\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 8257,\n        \"content_type\": \"string\",\n        \"source\": \"string\",\n        \"source_short\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ]\n  },\n  {\n    \"id\": 6113,\n    \"conversation_id\": 9832,\n    \"automated\": true,\n    \"status\": \"string\",\n    \"type\": \"string\",\n    \"mms_status\": \"string\",\n    \"body\": \"string\",\n    \"body_raw\": \"string\",\n    \"has_tagging\": true,\n    \"icon\": \"string\",\n    \"received_at\": \"string\",\n    \"send_at\": \"string\",\n    \"queued_at\": \"string\",\n    \"sent_at\": \"string\",\n    \"delivered_at\": \"string\",\n    \"failed_at\": \"string\",\n    \"failed_reason\": \"string\",\n    \"created_at\": \"string\",\n    \"stop_on_response\": true,\n    \"is_hipaa\": true,\n    \"record\": {\n      \"id\": 3642,\n      \"message_id\": 1866,\n      \"sid\": \"string\",\n      \"record_id\": \"string\",\n      \"duration\": 6764,\n      \"status\": \"string\",\n      \"url\": \"string\",\n      \"is_voicemail\": false,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"user_id\": 1586,\n    \"source_id\": \"string\",\n    \"source\": \"string\",\n    \"contact\": {\n      \"id\": 4947,\n      \"owner_id\": 8492,\n      \"color\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"email\": \"string\",\n      \"photo_url\": \"string\",\n      \"number\": \"string\",\n      \"country\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"typeted_number\": \"string\",\n      \"is_blocked\": true,\n      \"opt_out\": false,\n      \"opt_out_at\": \"string\",\n      \"opt_in_request_at\": \"string\",\n      \"opt_in_requests\": [\n        {\n          \"number_id\": 9967\n        },\n        {\n          \"number_id\": 5551\n        }\n      ],\n      \"opt_in_at\": \"string\",\n      \"shortcode_opt_outs\": [\n        {\n          \"id\": 8193,\n          \"number_id\": 3889,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": false\n        },\n        {\n          \"id\": 9067,\n          \"number_id\": 8238,\n          \"name\": \"string\",\n          \"disabled\": false,\n          \"timestamp\": \"string\",\n          \"value\": false\n        }\n      ],\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"integration_vendor_id\": 3433,\n      \"prevent_autolink\": false,\n      \"integration\": [\n        {\n          \"id\": 9229,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        },\n        {\n          \"id\": 3675,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"photo_url\": \"string\"\n        }\n      ],\n      \"custom_fields\": [\n        {\n          \"id\": 6671,\n          \"custom_field_id\": 9562,\n          \"contact_id\": 1379,\n          \"field_key\": \"string\",\n          \"organization_id\": 3072,\n          \"text\": \"string\",\n          \"number\": 4514,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        },\n        {\n          \"id\": 3089,\n          \"custom_field_id\": 6314,\n          \"contact_id\": 4174,\n          \"field_key\": \"string\",\n          \"organization_id\": 9407,\n          \"text\": \"string\",\n          \"number\": 3148,\n          \"date\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\",\n          \"value\": [\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            },\n            {\n              \"type\": \"string\",\n              \"value\": \"string\"\n            }\n          ]\n        }\n      ],\n      \"tags\": [\n        {\n          \"id\": 6474,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        },\n        {\n          \"id\": 6505,\n          \"name\": \"string\",\n          \"label\": \"string\",\n          \"created_at\": \"string\"\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": 1164,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        {\n          \"id\": 5633,\n          \"text\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      ]\n    },\n    \"user\": {\n      \"id\": 1498,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 4088,\n      \"organization_id\": 3513,\n      \"photo_url\": \"string\",\n      \"unread\": 4315,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": true,\n      \"organizationNumber\": [\n        {\n          \"id\": 3463,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    \"pending_mentions\": [\n      {\n        \"id\": 4434,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 8700,\n        \"organization_id\": 4182,\n        \"photo_url\": \"string\",\n        \"unread\": 9439,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 2801,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 5847,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      },\n      {\n        \"id\": 9592,\n        \"email\": \"string\",\n        \"first_name\": \"string\",\n        \"last_name\": \"string\",\n        \"full_name\": \"string\",\n        \"role\": \"string\",\n        \"inbox_id\": 1432,\n        \"organization_id\": 8539,\n        \"photo_url\": \"string\",\n        \"unread\": 2421,\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"isRingEverywhere\": true,\n        \"organizationNumber\": [\n          {\n            \"id\": 7225,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          },\n          {\n            \"id\": 1016,\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"mms\": \"string\"\n          }\n        ],\n        \"userPermissions\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    ],\n    \"media\": [\n      {\n        \"id\": 5150,\n        \"content_type\": \"string\",\n        \"source\": \"string\",\n        \"source_short\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 4200,\n        \"content_type\": \"string\",\n        \"source\": \"string\",\n        \"source_short\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ]\n  }\n]"}],"_postman_id":"19d620e6-1c61-4a4f-a99e-4298b7b9052a"},{"name":"Send SMS by conversation","id":"5c9b3301-d126-4a87-8745-9c511fc0af73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/:conversation?message=string&send_at=2023-05-25T17:30:15Z&media_url[][url]=https://example.com/image.png&media_url[][url]=https://example.com/image.png&enable_quiet_hours=false","description":"<p>REQUIRED SCOPES <code>['messages:write']</code><br />Send SMS message via API. This API endpoint allows for sending an SMS by conversation 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.3"],"query":[{"description":{"content":"<p>Message</p>\n","type":"text/plain"},"key":"message","value":"string"},{"description":{"content":"<p>Send At</p>\n","type":"text/plain"},"key":"send_at","value":"2023-05-25T17:30:15Z"},{"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"},{"description":{"content":"<p>Is enable quiet hours сheck</p>\n","type":"text/plain"},"key":"enable_quiet_hours","value":"false"}],"variable":[{"id":"486fc94d-18af-45d9-96d7-4b8d185bae68","description":{"content":"<p>Conversation id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"conversation"}]}},"response":[{"id":"f8f0fcb9-4afc-4e25-ae6f-bef9b0195c21","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/:conversation?message=string&send_at=2023-05-25T17:30:15Z&media_url[][url]=https://example.com/image.png&enable_quiet_hours=false","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages",":conversation"],"query":[{"description":"Message","key":"message","value":"string"},{"description":"Send At","key":"send_at","value":"2023-05-25T17:30:15Z"},{"description":"Url for media","key":"media_url[][url]","value":"https://example.com/image.png"},{"description":"Is enable quiet hours сheck","key":"enable_quiet_hours","value":"false"}],"variable":[{"key":"conversation","value":"1","description":"Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"5c9b3301-d126-4a87-8745-9c511fc0af73"}],"id":"a4e32162-b995-48f4-b971-9d8a1160706b","_postman_id":"a4e32162-b995-48f4-b971-9d8a1160706b","description":""},{"name":"scheduled","item":[{"name":"Get scheduled message","id":"3c79a28f-0080-4a52-8b72-f58c9fd06984","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages/scheduled?page=1&term=test","description":"<p>REQUIRED SCOPES <code>['messages:read']</code><br />Get scheduled message by id</p>\n","urlObject":{"path":["messages","scheduled"],"host":["https://api.salesmessage.com/pub/v2.3"],"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":"80eb0c57-c70e-406d-97ab-7325eedbe71a","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/scheduled?page=1&term=test","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","scheduled"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Search text","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":"d6411d72-67d0-4b5a-885d-35b66d63e1a7","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.3/messages/scheduled?page=1&term=test","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","scheduled"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Search text","key":"term","value":"test"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3c79a28f-0080-4a52-8b72-f58c9fd06984"}],"id":"177a3ac5-1306-48b2-b928-3c0c6f480086","_postman_id":"177a3ac5-1306-48b2-b928-3c0c6f480086","description":""},{"name":"chats","item":[{"name":"{token}","item":[{"name":"Send a message in a website chat","id":"c5da35de-9e2c-454f-b8d4-e4d6f1c26ac0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"message\": \"string\",\n  \"name\": \"string\",\n  \"optedIn\": false,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/messages/chats/:token","description":"<p>REQUIRED SCOPES <code>['website-chat:write']</code><br />Add a new message to an existing website chat identified by its token</p>\n","urlObject":{"path":["messages","chats",":token"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"9137b658-7fb7-47b6-9cd5-d610723ce510","description":{"content":"<p>The token of the website chat</p>\n","type":"text/plain"},"type":"any","value":"string","key":"token"}]}},"response":[{"id":"015a100d-4a1f-47a3-b606-6e2d9a64bcaf","name":"Message sent successfully","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"message\": \"string\",\n  \"name\": \"string\",\n  \"optedIn\": false,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/chats/:token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","chats",":token"],"variable":[{"key":"token","value":"string","description":"The token of the website chat"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Message sent successfully\"\n}"},{"id":"3759b4df-5864-418f-b976-914995203b40","name":"Bad request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"message\": \"string\",\n  \"name\": \"string\",\n  \"optedIn\": false,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/chats/:token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","chats",":token"],"variable":[{"key":"token","value":"string","description":"The token of the website chat"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"21f01084-f310-4904-bebc-7370d8d28106","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"message\": \"string\",\n  \"name\": \"string\",\n  \"optedIn\": false,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/chats/:token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","chats",":token"],"variable":[{"key":"token","value":"string","description":"The token of the website chat"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"c5703077-0ae6-445c-a7ee-6cf441d909c8","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"message\": \"string\",\n  \"name\": \"string\",\n  \"optedIn\": false,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/chats/:token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","chats",":token"],"variable":[{"key":"token","value":"string","description":"The token of the website chat"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3f8bd8d0-029c-4630-be41-ac58d9cfad9c","name":"Chat not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"message\": \"string\",\n  \"name\": \"string\",\n  \"optedIn\": false,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/chats/:token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","chats",":token"],"variable":[{"key":"token","value":"string","description":"The token of the website chat"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b4597d6c-f41e-4324-b6a0-320c7265dd26","name":"Server error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"message\": \"string\",\n  \"name\": \"string\",\n  \"optedIn\": false,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages/chats/:token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages","chats",":token"],"variable":[{"key":"token","value":"string","description":"The token of the website chat"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Error message\"\n}"}],"_postman_id":"c5da35de-9e2c-454f-b8d4-e4d6f1c26ac0"}],"id":"8751ab89-6d40-4fa3-af69-9c05c75d3b68","_postman_id":"8751ab89-6d40-4fa3-af69-9c05c75d3b68","description":""}],"id":"52176b9e-3559-481e-a94d-36a692d6b6e1","_postman_id":"52176b9e-3559-481e-a94d-36a692d6b6e1","description":""},{"name":"Send SMS by number","id":"4799ac67-8e00-4033-aadd-5900c91f875d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/messages?number=+12025550018&team_id=1&message=string&send_at=2023-05-25T17:30:15Z&media_url[][url]=https://example.com/image.png&media_url[][url]=https://example.com/image.png","description":"<p>REQUIRED SCOPES <code>[‘messages:write’]</code><br />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.3"],"query":[{"description":{"content":"<p>Number</p>\n","type":"text/plain"},"key":"number","value":"+12025550018"},{"description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"key":"team_id","value":"1"},{"description":{"content":"<p>Message</p>\n","type":"text/plain"},"key":"message","value":"string"},{"description":{"content":"<p>Send At</p>\n","type":"text/plain"},"key":"send_at","value":"2023-05-25T17:30:15Z"},{"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":"99dcadbd-b845-4ed0-9f43-db8ea0724370","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages?number=+12025550018&team_id=1&message=string&send_at=2023-05-25T17:30:15Z&media_url[][url]=https://example.com/image.png","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages"],"query":[{"description":"Number","key":"number","value":"+12025550018"},{"description":"Team ID","key":"team_id","value":"1"},{"description":"Message","key":"message","value":"string"},{"description":"Send At","key":"send_at","value":"2023-05-25T17:30:15Z"},{"description":"Url for media","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\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"00491d63-f2c4-467a-af35-44b24fd0248a","name":"Unauthorized action","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages?number=+12025550018&team_id=1&message=string&send_at=2023-05-25T17:30:15Z&media_url[][url]=https://example.com/image.png","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages"],"query":[{"description":"Number","key":"number","value":"+12025550018"},{"description":"Team ID","key":"team_id","value":"1"},{"description":"Message","key":"message","value":"string"},{"description":"Send At","key":"send_at","value":"2023-05-25T17:30:15Z"},{"description":"Url for media","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":"84372d81-84fb-4d61-bfc6-109a05395312","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/messages?number=+12025550018&team_id=1&message=string&send_at=2023-05-25T17:30:15Z&media_url[][url]=https://example.com/image.png","host":["https://api.salesmessage.com/pub/v2.3"],"path":["messages"],"query":[{"description":"Number","key":"number","value":"+12025550018"},{"description":"Team ID","key":"team_id","value":"1"},{"description":"Message","key":"message","value":"string"},{"description":"Send At","key":"send_at","value":"2023-05-25T17:30:15Z"},{"description":"Url for media","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\": \"string\"\n}"}],"_postman_id":"4799ac67-8e00-4033-aadd-5900c91f875d"}],"id":"5dd3ef52-0684-4fd3-bf81-b6ce929eb4ba","_postman_id":"5dd3ef52-0684-4fd3-bf81-b6ce929eb4ba","description":""},{"name":"async","item":[{"name":"messages","item":[{"name":"{conversation}","item":[{"name":"Send async SMS by conversation","id":"8ca03c97-66e4-42d1-96af-52de1ffca20d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"Test message\",\n  \"send_at\": \"2023-05-25T17:30:15Z\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"mute_period\": \"0\",\n  \"lock_period\": \"0\",\n  \"enable_quiet_hours\": true,\n  \"enable_realtime_updates\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/async/messages/:conversation","description":"<p>REQUIRED SCOPES <code>['messages:write']</code><br />Send async SMS message via API. This API endpoint allows for sending an SMS by conversation 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":["async","messages",":conversation"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"eb8c8c11-f7d9-4218-948b-519e58ed5b93","description":{"content":"<p>Conversation id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"conversation"}]}},"response":[{"id":"4b9ab54a-9b1b-409e-986a-7a4f9999dbe2","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"Test message\",\n  \"send_at\": \"2023-05-25T17:30:15Z\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"mute_period\": \"0\",\n  \"lock_period\": \"0\",\n  \"enable_quiet_hours\": true,\n  \"enable_realtime_updates\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/async/messages/:conversation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["async","messages",":conversation"],"variable":[{"key":"conversation","value":"1","description":"Conversation id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"uuid\": \"1111a111-11a1-11a1-1b11-11aa1aa11a11\",\n  \"message\": \"The message was successfully processed\",\n  \"code\": 9502\n}"},{"id":"be77b2c5-dcf5-416d-80fe-29a037eb503e","name":"Unauthorized action","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"Test message\",\n  \"send_at\": \"2023-05-25T17:30:15Z\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"mute_period\": \"0\",\n  \"lock_period\": \"0\",\n  \"enable_quiet_hours\": true,\n  \"enable_realtime_updates\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/async/messages/:conversation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["async","messages",":conversation"],"variable":[{"key":"conversation","value":"1","description":"Conversation id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Unauthorized\"\n}"},{"id":"f20dfc4f-94ee-4071-9e12-90c8e1e7fb57","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"Test message\",\n  \"send_at\": \"2023-05-25T17:30:15Z\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"mute_period\": \"0\",\n  \"lock_period\": \"0\",\n  \"enable_quiet_hours\": true,\n  \"enable_realtime_updates\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/async/messages/:conversation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["async","messages",":conversation"],"variable":[{"key":"conversation","value":"1","description":"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  \"error\": \"Message body should not be empty.\",\n  \"code\": 2933\n}"}],"_postman_id":"8ca03c97-66e4-42d1-96af-52de1ffca20d"}],"id":"a0a1cb59-6b56-4188-af37-5c52c6ae6c17","_postman_id":"a0a1cb59-6b56-4188-af37-5c52c6ae6c17","description":""},{"name":"Send async SMS by number","id":"df0365c1-eb98-4457-b311-5e8a0e002f27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"+12025550018\",\n  \"team_id\": \"1\",\n  \"message\": \"Test message\",\n  \"sending_options\": {\n    \"smart_option\": \"string\",\n    \"number_id\": 7038,\n    \"send_from\": \"sending_options_rcs\",\n    \"team_id\": 3150\n  },\n  \"send_at\": \"2023-05-25T17:30:15Z\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"mute_period\": \"0\",\n  \"lock_period\": \"0\",\n  \"enable_quiet_hours\": true,\n  \"enable_realtime_updates\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/async/messages","description":"<p>REQUIRED SCOPES <code>[‘messages:write’]</code><br />Using the given endpoint, you can send async 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":["async","messages"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"112a5413-8d74-4d02-863a-e9a0fab3a92f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"+12025550018\",\n  \"team_id\": \"1\",\n  \"message\": \"Test message\",\n  \"sending_options\": {\n    \"smart_option\": \"string\",\n    \"number_id\": 7038,\n    \"send_from\": \"sending_options_rcs\",\n    \"team_id\": 3150\n  },\n  \"send_at\": \"2023-05-25T17:30:15Z\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"mute_period\": \"0\",\n  \"lock_period\": \"0\",\n  \"enable_quiet_hours\": true,\n  \"enable_realtime_updates\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/async/messages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"uuid\": \"1111a111-11a1-11a1-1b11-11aa1aa11a11\",\n  \"message\": \"The message was successfully processed\",\n  \"code\": 9502\n}"},{"id":"4598afd4-da1c-4ec0-ae46-19bb90256c5f","name":"Unauthorized action","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"+12025550018\",\n  \"team_id\": \"1\",\n  \"message\": \"Test message\",\n  \"sending_options\": {\n    \"smart_option\": \"string\",\n    \"number_id\": 7038,\n    \"send_from\": \"sending_options_rcs\",\n    \"team_id\": 3150\n  },\n  \"send_at\": \"2023-05-25T17:30:15Z\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"mute_period\": \"0\",\n  \"lock_period\": \"0\",\n  \"enable_quiet_hours\": true,\n  \"enable_realtime_updates\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/async/messages"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Unauthorized\"\n}"},{"id":"cdb2a9be-03b2-4758-a427-b55005369d79","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"+12025550018\",\n  \"team_id\": \"1\",\n  \"message\": \"Test message\",\n  \"sending_options\": {\n    \"smart_option\": \"string\",\n    \"number_id\": 7038,\n    \"send_from\": \"sending_options_rcs\",\n    \"team_id\": 3150\n  },\n  \"send_at\": \"2023-05-25T17:30:15Z\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"mute_period\": \"0\",\n  \"lock_period\": \"0\",\n  \"enable_quiet_hours\": true,\n  \"enable_realtime_updates\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/async/messages"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid number\",\n  \"code\": 813\n}"}],"_postman_id":"df0365c1-eb98-4457-b311-5e8a0e002f27"}],"id":"359187e1-fe35-41eb-aa9c-489393893e21","_postman_id":"359187e1-fe35-41eb-aa9c-489393893e21","description":""}],"id":"85f1c024-b1b2-43ce-95b4-7fbf5e657723","_postman_id":"85f1c024-b1b2-43ce-95b4-7fbf5e657723","description":""},{"name":"numbers","item":[{"name":"{number}","item":[{"name":"assign-inbox","item":[{"name":"{team}","item":[{"name":"Assign the number to the inbox","id":"c711084f-5b48-42bc-9ab5-4ff07a1e1b43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/:number/assign-inbox/:team","description":"<p>REQUIRED SCOPES <code>['numbers:write']</code><br />Assign the number to the inbox</p>\n","urlObject":{"path":["numbers",":number","assign-inbox",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"359900cf-45aa-40d8-b612-1df238257e5e","description":{"content":"<p>The ID of the Number</p>\n","type":"text/plain"},"type":"any","value":"","key":"number"},{"id":"80e32f5a-3596-42ce-96a9-0cf556a98b7e","description":{"content":"<p>The ID of the Team</p>\n","type":"text/plain"},"type":"any","value":"","key":"team"}]}},"response":[{"id":"b68e3a58-13b3-464d-80e6-fe11c06a95fb","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/:number/assign-inbox/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers",":number","assign-inbox",":team"],"variable":[{"key":"number","value":"","description":"The ID of the Number"},{"key":"team","value":"","description":"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\": 9721,\n  \"organization_id\": 400,\n  \"country\": \"string\",\n  \"state\": \"string\",\n  \"city\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 2827,\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"short_code\": 9687,\n  \"is_landline\": 9017,\n  \"is_toll_free\": true,\n  \"is_mobile\": 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\": true,\n  \"verified_status\": \"string\",\n  \"area_code\": {\n    \"id\": 5112,\n    \"area_code\": \"string\",\n    \"state_code\": \"string\",\n    \"state_name\": \"string\",\n    \"country_code\": \"string\",\n    \"time_zone\": \"string\",\n    \"group_id\": 1436\n  },\n  \"landline\": {\n    \"id\": 1530,\n    \"number_id\": 9734,\n    \"address_sid\": \"string\",\n    \"sid\": \"string\",\n    \"document_sid\": \"string\",\n    \"status\": \"string\",\n    \"verification_attempts\": 7512,\n    \"last_verify_attempt_at\": \"string\",\n    \"landline_name\": \"string\",\n    \"street_address\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"zip_code\": \"string\",\n    \"completed\": 5065,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_vendor\": {\n    \"id\": 9738,\n    \"is_active\": false,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"credentials_prefix\": \"string\",\n    \"twilio_sid\": \"string\",\n    \"twilio_auth_token\": \"string\",\n    \"is_billable\": 3237,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_caller_id\": {\n    \"caller_id_sid\": \"string\",\n    \"verified\": true,\n    \"failed_reason\": \"string\"\n  },\n  \"call_forwarding\": {\n    \"id\": 9558,\n    \"number_id\": 1596,\n    \"is_active\": true,\n    \"is_screening\": false,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"string\",\n    \"country\": \"string\",\n    \"number\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"extension\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"numberable_id\": 8105,\n  \"numberable_type\": \"string\",\n  \"numberable\": {\n    \"id\": 3997,\n    \"organization_id\": 4826,\n    \"owner_id\": 5297,\n    \"team_id\": 5576,\n    \"name\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"},{"id":"100a6735-eecf-4cc2-b6e6-0ec20e4951f0","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/:number/assign-inbox/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers",":number","assign-inbox",":team"],"variable":[{"key":"number","value":"","description":"The ID of the Number"},{"key":"team","value":"","description":"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\": \"string\",\n  \"inbox\": \"string\"\n}"}],"_postman_id":"c711084f-5b48-42bc-9ab5-4ff07a1e1b43"}],"id":"5d507dc3-c284-4f05-83d3-71e22de1300d","_postman_id":"5d507dc3-c284-4f05-83d3-71e22de1300d","description":""}],"id":"5fc73321-431e-4f46-9afc-1394a3f05feb","_postman_id":"5fc73321-431e-4f46-9afc-1394a3f05feb","description":""},{"name":"call_forwarding","item":[{"name":"Set call forwarding","id":"5544a50e-8a77-4252-a4ae-6d251a5ee68c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/:number/call_forwarding","description":"<p>REQUIRED SCOPES <code>['numbers:write']</code><br />Set call forwarding</p>\n","urlObject":{"path":["numbers",":number","call_forwarding"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"361365d7-cd8b-4b06-b1fa-775ab3c87170","description":{"content":"<p>The ID of the Number</p>\n","type":"text/plain"},"type":"any","value":"","key":"number"}]}},"response":[{"id":"3536ff0e-36f7-4bdc-bcb2-67fc9ea41f0f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/:number/call_forwarding","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers",":number","call_forwarding"],"variable":[{"key":"number","value":"","description":"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\": 9721,\n  \"organization_id\": 400,\n  \"country\": \"string\",\n  \"state\": \"string\",\n  \"city\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 2827,\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"short_code\": 9687,\n  \"is_landline\": 9017,\n  \"is_toll_free\": true,\n  \"is_mobile\": 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\": true,\n  \"verified_status\": \"string\",\n  \"area_code\": {\n    \"id\": 5112,\n    \"area_code\": \"string\",\n    \"state_code\": \"string\",\n    \"state_name\": \"string\",\n    \"country_code\": \"string\",\n    \"time_zone\": \"string\",\n    \"group_id\": 1436\n  },\n  \"landline\": {\n    \"id\": 1530,\n    \"number_id\": 9734,\n    \"address_sid\": \"string\",\n    \"sid\": \"string\",\n    \"document_sid\": \"string\",\n    \"status\": \"string\",\n    \"verification_attempts\": 7512,\n    \"last_verify_attempt_at\": \"string\",\n    \"landline_name\": \"string\",\n    \"street_address\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"zip_code\": \"string\",\n    \"completed\": 5065,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_vendor\": {\n    \"id\": 9738,\n    \"is_active\": false,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"credentials_prefix\": \"string\",\n    \"twilio_sid\": \"string\",\n    \"twilio_auth_token\": \"string\",\n    \"is_billable\": 3237,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_caller_id\": {\n    \"caller_id_sid\": \"string\",\n    \"verified\": true,\n    \"failed_reason\": \"string\"\n  },\n  \"call_forwarding\": {\n    \"id\": 9558,\n    \"number_id\": 1596,\n    \"is_active\": true,\n    \"is_screening\": false,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"string\",\n    \"country\": \"string\",\n    \"number\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"extension\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"numberable_id\": 8105,\n  \"numberable_type\": \"string\",\n  \"numberable\": {\n    \"id\": 3997,\n    \"organization_id\": 4826,\n    \"owner_id\": 5297,\n    \"team_id\": 5576,\n    \"name\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"}],"_postman_id":"5544a50e-8a77-4252-a4ae-6d251a5ee68c"}],"id":"32b8161d-ee2b-404f-83f4-5137a3afe655","_postman_id":"32b8161d-ee2b-404f-83f4-5137a3afe655","description":""},{"name":"release","item":[{"name":"Release the number","id":"8114602a-8a13-42cb-a166-5dd8ca18fdf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/:number/release","description":"<p>REQUIRED SCOPES <code>['numbers:write']</code><br />Release the number</p>\n","urlObject":{"path":["numbers",":number","release"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"412606e3-f762-4325-9616-4ae5eab17251","description":{"content":"<p>The ID of the Number</p>\n","type":"text/plain"},"type":"any","value":"","key":"number"}]}},"response":[{"id":"e9717ef2-738f-43f2-a3cb-e16a34845eb7","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/:number/release","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers",":number","release"],"variable":[{"key":"number","value":"","description":"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\": \"string\",\n  \"message\": \"string\"\n}"},{"id":"09251735-88af-4599-bd97-731804494950","name":"Invalid Number","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/:number/release","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers",":number","release"],"variable":[{"key":"number","value":"","description":"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\": \"string\"\n}"}],"_postman_id":"8114602a-8a13-42cb-a166-5dd8ca18fdf8"}],"id":"ea1ef448-113f-4bff-b788-6cd5772a9d15","_postman_id":"ea1ef448-113f-4bff-b788-6cd5772a9d15","description":""},{"name":"unassign-from-inbox","item":[{"name":"Unassign the number from the inbox","id":"7b9372da-2452-4298-b4d4-dbfea3a3f428","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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\": 1398,\n  \"reassign\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/:number/unassign-from-inbox","description":"<p>REQUIRED SCOPES <code>['numbers:write']</code><br />Unassign the number from the inbox</p>\n","urlObject":{"path":["numbers",":number","unassign-from-inbox"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"adf8edc3-63a2-477b-9899-b4cebbf22c12","description":{"content":"<p>The ID of the Number</p>\n","type":"text/plain"},"type":"any","value":"","key":"number"}]}},"response":[{"id":"206800f8-7b74-49ca-a7c8-bb518818a91d","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"reassign_number_id\": 1398,\n  \"reassign\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/:number/unassign-from-inbox","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers",":number","unassign-from-inbox"],"variable":[{"key":"number","value":"","description":"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\": 9721,\n  \"organization_id\": 400,\n  \"country\": \"string\",\n  \"state\": \"string\",\n  \"city\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 2827,\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"short_code\": 9687,\n  \"is_landline\": 9017,\n  \"is_toll_free\": true,\n  \"is_mobile\": 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\": true,\n  \"verified_status\": \"string\",\n  \"area_code\": {\n    \"id\": 5112,\n    \"area_code\": \"string\",\n    \"state_code\": \"string\",\n    \"state_name\": \"string\",\n    \"country_code\": \"string\",\n    \"time_zone\": \"string\",\n    \"group_id\": 1436\n  },\n  \"landline\": {\n    \"id\": 1530,\n    \"number_id\": 9734,\n    \"address_sid\": \"string\",\n    \"sid\": \"string\",\n    \"document_sid\": \"string\",\n    \"status\": \"string\",\n    \"verification_attempts\": 7512,\n    \"last_verify_attempt_at\": \"string\",\n    \"landline_name\": \"string\",\n    \"street_address\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"zip_code\": \"string\",\n    \"completed\": 5065,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_vendor\": {\n    \"id\": 9738,\n    \"is_active\": false,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"credentials_prefix\": \"string\",\n    \"twilio_sid\": \"string\",\n    \"twilio_auth_token\": \"string\",\n    \"is_billable\": 3237,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_caller_id\": {\n    \"caller_id_sid\": \"string\",\n    \"verified\": true,\n    \"failed_reason\": \"string\"\n  },\n  \"call_forwarding\": {\n    \"id\": 9558,\n    \"number_id\": 1596,\n    \"is_active\": true,\n    \"is_screening\": false,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"string\",\n    \"country\": \"string\",\n    \"number\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"extension\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"numberable_id\": 8105,\n  \"numberable_type\": \"string\",\n  \"numberable\": {\n    \"id\": 3997,\n    \"organization_id\": 4826,\n    \"owner_id\": 5297,\n    \"team_id\": 5576,\n    \"name\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"},{"id":"36a8b086-2cba-4001-9d75-b084356b1a31","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"reassign_number_id\": 1398,\n  \"reassign\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/:number/unassign-from-inbox","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers",":number","unassign-from-inbox"],"variable":[{"key":"number","value":"","description":"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\": \"string\",\n  \"number\": \"string\"\n}"},{"id":"31a7b48c-25a0-47d3-b58e-c39c26efa80b","name":"Invalid Number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"reassign_number_id\": 1398,\n  \"reassign\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/:number/unassign-from-inbox","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers",":number","unassign-from-inbox"],"variable":[{"key":"number","value":"","description":"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\": \"string\"\n}"}],"_postman_id":"7b9372da-2452-4298-b4d4-dbfea3a3f428"}],"id":"59f991b5-ae2b-4cbb-97e9-81cc7441ea40","_postman_id":"59f991b5-ae2b-4cbb-97e9-81cc7441ea40","description":""}],"id":"d497ebb5-ed3e-4d17-a553-3c61333d9ef3","_postman_id":"d497ebb5-ed3e-4d17-a553-3c61333d9ef3","description":""},{"name":"assign-inbox","item":[{"name":"{team}","item":[{"name":"Assign numbers to the inbox","id":"5abe7bf6-97f0-4572-9072-fa1f4eeaa9a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/assign-inbox/:team","description":"<p>REQUIRED SCOPES <code>['numbers:write']</code><br />Assign numbers to the inbox</p>\n","urlObject":{"path":["numbers","assign-inbox",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"e522b68e-a67b-46e6-8b4b-2c7f25b69d60","description":{"content":"<p>The ID of the Team</p>\n","type":"text/plain"},"type":"any","value":"","key":"team"}]}},"response":[{"id":"bd279bc4-2ebd-430c-945d-aa9049b60ce3","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/assign-inbox/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","assign-inbox",":team"],"variable":[{"key":"team","value":"","description":"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\": 6490,\n    \"organization_id\": 1025,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 4301,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 2283,\n    \"is_landline\": 4658,\n    \"is_toll_free\": true,\n    \"is_mobile\": 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\": \"string\",\n    \"area_code\": {\n      \"id\": 6120,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 2346\n    },\n    \"landline\": {\n      \"id\": 4197,\n      \"number_id\": 2366,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 6114,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 7818,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 1857,\n      \"is_active\": true,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 9932,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 1809,\n      \"number_id\": 1162,\n      \"is_active\": false,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 5380,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 5895,\n      \"organization_id\": 9364,\n      \"owner_id\": 63,\n      \"team_id\": 3685,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  {\n    \"id\": 2404,\n    \"organization_id\": 2499,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 1306,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7272,\n    \"is_landline\": 8791,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": \"string\",\n    \"area_code\": {\n      \"id\": 8184,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 853\n    },\n    \"landline\": {\n      \"id\": 4037,\n      \"number_id\": 59,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 4447,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 4154,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 6584,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 3730,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9361,\n      \"number_id\": 6540,\n      \"is_active\": true,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 3998,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 1814,\n      \"organization_id\": 4801,\n      \"owner_id\": 5156,\n      \"team_id\": 6541,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  }\n]"},{"id":"3c718ca1-e9dd-4efd-9f46-28e56cd0b1c7","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/assign-inbox/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","assign-inbox",":team"],"variable":[{"key":"team","value":"","description":"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\": \"string\",\n  \"inbox\": \"string\"\n}"}],"_postman_id":"5abe7bf6-97f0-4572-9072-fa1f4eeaa9a8"}],"id":"91ecc5b0-1db3-4279-bd70-18da29afacc8","_postman_id":"91ecc5b0-1db3-4279-bd70-18da29afacc8","description":""}],"id":"cb0ace8b-1dc7-4598-a983-45c4ee3962e7","_postman_id":"cb0ace8b-1dc7-4598-a983-45c4ee3962e7","description":""},{"name":"landline","item":[{"name":"document","item":[{"name":"create","item":[{"name":"Create landline document","id":"77e39152-4558-4501-aa7a-a3741e917a98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/document/create","description":"<p>REQUIRED SCOPES <code>['numbers-landline:write']</code><br />Create landline document</p>\n","urlObject":{"path":["numbers","landline","document","create"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"2976d613-6737-4f00-8d88-a02d64cc7bb2","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/document/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"number\": {\n    \"id\": 1262,\n    \"organization_id\": 8697,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 5257,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 5776,\n    \"is_landline\": 3886,\n    \"is_toll_free\": false,\n    \"is_mobile\": 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\": \"string\",\n    \"area_code\": {\n      \"id\": 5403,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 2653\n    },\n    \"landline\": {\n      \"id\": 734,\n      \"number_id\": 2755,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 7759,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 3108,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 8174,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 6048,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": true,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 2390,\n      \"number_id\": 5866,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": false,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9296,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 346,\n      \"organization_id\": 9995,\n      \"owner_id\": 4403,\n      \"team_id\": 4395,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"document\": \"string\"\n}"},{"id":"004a60ac-7649-4b3c-8155-1b46df9acede","name":"Number Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/document/create"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"26981352-ff1a-40a1-8fa8-2a784b1e72c3","name":"Incorrect Number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/document/create"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\",\n  \"raw_error\": \"string\"\n}"}],"_postman_id":"77e39152-4558-4501-aa7a-a3741e917a98"}],"id":"2afd9bf0-f933-477b-9e93-cc3da0332eca","_postman_id":"2afd9bf0-f933-477b-9e93-cc3da0332eca","description":""}],"id":"deb3d221-ee00-4333-b599-1929bc2a6f03","_postman_id":"deb3d221-ee00-4333-b599-1929bc2a6f03","description":""},{"name":"create","item":[{"name":"Create landline number","id":"282b1800-66a5-4ff0-bc2d-565e8a8675f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\",\n  \"friendly_name\": \"string\",\n  \"street\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"zip\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/create","description":"<p>REQUIRED SCOPES <code>['numbers-landline:write']</code><br />Create landline number</p>\n","urlObject":{"path":["numbers","landline","create"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"fb568cd7-3adf-4682-b3c9-81ae2ab43f25","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\",\n  \"friendly_name\": \"string\",\n  \"street\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"zip\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9721,\n  \"organization_id\": 400,\n  \"country\": \"string\",\n  \"state\": \"string\",\n  \"city\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 2827,\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"short_code\": 9687,\n  \"is_landline\": 9017,\n  \"is_toll_free\": true,\n  \"is_mobile\": 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\": true,\n  \"verified_status\": \"string\",\n  \"area_code\": {\n    \"id\": 5112,\n    \"area_code\": \"string\",\n    \"state_code\": \"string\",\n    \"state_name\": \"string\",\n    \"country_code\": \"string\",\n    \"time_zone\": \"string\",\n    \"group_id\": 1436\n  },\n  \"landline\": {\n    \"id\": 1530,\n    \"number_id\": 9734,\n    \"address_sid\": \"string\",\n    \"sid\": \"string\",\n    \"document_sid\": \"string\",\n    \"status\": \"string\",\n    \"verification_attempts\": 7512,\n    \"last_verify_attempt_at\": \"string\",\n    \"landline_name\": \"string\",\n    \"street_address\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"zip_code\": \"string\",\n    \"completed\": 5065,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_vendor\": {\n    \"id\": 9738,\n    \"is_active\": false,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"credentials_prefix\": \"string\",\n    \"twilio_sid\": \"string\",\n    \"twilio_auth_token\": \"string\",\n    \"is_billable\": 3237,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_caller_id\": {\n    \"caller_id_sid\": \"string\",\n    \"verified\": true,\n    \"failed_reason\": \"string\"\n  },\n  \"call_forwarding\": {\n    \"id\": 9558,\n    \"number_id\": 1596,\n    \"is_active\": true,\n    \"is_screening\": false,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"string\",\n    \"country\": \"string\",\n    \"number\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"extension\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"numberable_id\": 8105,\n  \"numberable_type\": \"string\",\n  \"numberable\": {\n    \"id\": 3997,\n    \"organization_id\": 4826,\n    \"owner_id\": 5297,\n    \"team_id\": 5576,\n    \"name\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"},{"id":"02640d89-f786-498f-93db-23709daedd73","name":"Incorrect Number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\",\n  \"friendly_name\": \"string\",\n  \"street\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"zip\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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\": \"string\",\n  \"raw_error\": \"string\"\n}"}],"_postman_id":"282b1800-66a5-4ff0-bc2d-565e8a8675f8"}],"id":"9f5a8695-5c58-4a51-9b00-99ffba5efb95","_postman_id":"9f5a8695-5c58-4a51-9b00-99ffba5efb95","description":""},{"name":"fetch","item":[{"name":"Get landline numbers","id":"e2e88a39-8f54-4c8b-9e98-4e841f0ae61b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/fetch?phone=string","description":"<p>REQUIRED SCOPES <code>['numbers-landline:read']</code><br />Get landline numbers</p>\n","urlObject":{"path":["numbers","landline","fetch"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Phone</p>\n","type":"text/plain"},"key":"phone","value":"string"}],"variable":[]}},"response":[{"id":"f07eefb0-d3f6-46e4-aab0-d58d513bf9cb","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/landline/fetch?phone=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","landline","fetch"],"query":[{"description":"Phone","key":"phone","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"message\": \"string\"\n}"}],"_postman_id":"e2e88a39-8f54-4c8b-9e98-4e841f0ae61b"}],"id":"0756571f-fcb1-468f-858b-6e75be48365a","_postman_id":"0756571f-fcb1-468f-858b-6e75be48365a","description":""},{"name":"delete","item":[{"name":"Delete landline","id":"8984c7cf-a55b-442f-b47d-3fc617b32a2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/delete?phone=string","description":"<p>REQUIRED SCOPES <code>['numbers-landline:write']</code><br />Delete landline</p>\n","urlObject":{"path":["numbers","landline","delete"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Phone</p>\n","type":"text/plain"},"key":"phone","value":"string"}],"variable":[]}},"response":[{"id":"78e6dea0-4ec9-4341-8df6-92d975a5b6c4","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/landline/delete?phone=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","landline","delete"],"query":[{"description":"Phone","key":"phone","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9721,\n  \"organization_id\": 400,\n  \"country\": \"string\",\n  \"state\": \"string\",\n  \"city\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 2827,\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"short_code\": 9687,\n  \"is_landline\": 9017,\n  \"is_toll_free\": true,\n  \"is_mobile\": 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\": true,\n  \"verified_status\": \"string\",\n  \"area_code\": {\n    \"id\": 5112,\n    \"area_code\": \"string\",\n    \"state_code\": \"string\",\n    \"state_name\": \"string\",\n    \"country_code\": \"string\",\n    \"time_zone\": \"string\",\n    \"group_id\": 1436\n  },\n  \"landline\": {\n    \"id\": 1530,\n    \"number_id\": 9734,\n    \"address_sid\": \"string\",\n    \"sid\": \"string\",\n    \"document_sid\": \"string\",\n    \"status\": \"string\",\n    \"verification_attempts\": 7512,\n    \"last_verify_attempt_at\": \"string\",\n    \"landline_name\": \"string\",\n    \"street_address\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"zip_code\": \"string\",\n    \"completed\": 5065,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_vendor\": {\n    \"id\": 9738,\n    \"is_active\": false,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"credentials_prefix\": \"string\",\n    \"twilio_sid\": \"string\",\n    \"twilio_auth_token\": \"string\",\n    \"is_billable\": 3237,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_caller_id\": {\n    \"caller_id_sid\": \"string\",\n    \"verified\": true,\n    \"failed_reason\": \"string\"\n  },\n  \"call_forwarding\": {\n    \"id\": 9558,\n    \"number_id\": 1596,\n    \"is_active\": true,\n    \"is_screening\": false,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"string\",\n    \"country\": \"string\",\n    \"number\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"extension\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"numberable_id\": 8105,\n  \"numberable_type\": \"string\",\n  \"numberable\": {\n    \"id\": 3997,\n    \"organization_id\": 4826,\n    \"owner_id\": 5297,\n    \"team_id\": 5576,\n    \"name\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"}],"_postman_id":"8984c7cf-a55b-442f-b47d-3fc617b32a2a"}],"id":"b45bc864-e1cb-44ed-8bab-cb9f672aaad7","_postman_id":"b45bc864-e1cb-44ed-8bab-cb9f672aaad7","description":""},{"name":"team","item":[{"name":"create","item":[{"name":"Create inbox","id":"4d381bde-10ec-4c43-bfda-3a77de04788e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\",\n  \"name\": \"string\",\n  \"members\": [\n    3034,\n    1247\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/team/create","description":"<p>REQUIRED SCOPES <code>['numbers-landline:write']</code><br />Create inbox</p>\n","urlObject":{"path":["numbers","landline","team","create"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"c9ececfa-a277-4574-9a57-14d996e95681","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\",\n  \"name\": \"string\",\n  \"members\": [\n    3034,\n    1247\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/team/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"}],"_postman_id":"4d381bde-10ec-4c43-bfda-3a77de04788e"}],"id":"de3ed586-d8e4-43c9-a27c-78ee213905e9","_postman_id":"de3ed586-d8e4-43c9-a27c-78ee213905e9","description":""}],"id":"3bbfc516-4fbd-434a-88e2-6798b22ef0ea","_postman_id":"3bbfc516-4fbd-434a-88e2-6798b22ef0ea","description":""},{"name":"inbox","item":[{"name":"update","item":[{"name":"Update inbox","id":"090cc046-8f2c-457b-90ef-d0fafecaa27a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"landline_phone\": \"string\",\n  \"phone_to_replace\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/inbox/update","description":"<p>REQUIRED SCOPES <code>['numbers-landline:write']</code><br />Update inbox</p>\n","urlObject":{"path":["numbers","landline","inbox","update"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"1412ced9-5288-4e08-bb5f-e7973d985c35","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"landline_phone\": \"string\",\n  \"phone_to_replace\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/inbox/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9721,\n  \"organization_id\": 400,\n  \"country\": \"string\",\n  \"state\": \"string\",\n  \"city\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 2827,\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"short_code\": 9687,\n  \"is_landline\": 9017,\n  \"is_toll_free\": true,\n  \"is_mobile\": 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\": true,\n  \"verified_status\": \"string\",\n  \"area_code\": {\n    \"id\": 5112,\n    \"area_code\": \"string\",\n    \"state_code\": \"string\",\n    \"state_name\": \"string\",\n    \"country_code\": \"string\",\n    \"time_zone\": \"string\",\n    \"group_id\": 1436\n  },\n  \"landline\": {\n    \"id\": 1530,\n    \"number_id\": 9734,\n    \"address_sid\": \"string\",\n    \"sid\": \"string\",\n    \"document_sid\": \"string\",\n    \"status\": \"string\",\n    \"verification_attempts\": 7512,\n    \"last_verify_attempt_at\": \"string\",\n    \"landline_name\": \"string\",\n    \"street_address\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"zip_code\": \"string\",\n    \"completed\": 5065,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_vendor\": {\n    \"id\": 9738,\n    \"is_active\": false,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"credentials_prefix\": \"string\",\n    \"twilio_sid\": \"string\",\n    \"twilio_auth_token\": \"string\",\n    \"is_billable\": 3237,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_caller_id\": {\n    \"caller_id_sid\": \"string\",\n    \"verified\": true,\n    \"failed_reason\": \"string\"\n  },\n  \"call_forwarding\": {\n    \"id\": 9558,\n    \"number_id\": 1596,\n    \"is_active\": true,\n    \"is_screening\": false,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"string\",\n    \"country\": \"string\",\n    \"number\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"extension\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"numberable_id\": 8105,\n  \"numberable_type\": \"string\",\n  \"numberable\": {\n    \"id\": 3997,\n    \"organization_id\": 4826,\n    \"owner_id\": 5297,\n    \"team_id\": 5576,\n    \"name\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"}],"_postman_id":"090cc046-8f2c-457b-90ef-d0fafecaa27a"}],"id":"dc39ac8d-31df-43ae-999e-dfeab00eafb4","_postman_id":"dc39ac8d-31df-43ae-999e-dfeab00eafb4","description":""}],"id":"486cb9fb-8233-4c5f-9bba-345ed679a660","_postman_id":"486cb9fb-8233-4c5f-9bba-345ed679a660","description":""},{"name":"verify","item":[{"name":"request","item":[{"name":"Request landline verification","id":"e7070dca-dbe6-421b-807d-ac6d5fb86800","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/landline/verify/request","description":"<p>REQUIRED SCOPES <code>['numbers-landline:write']</code><br />Request landline verification</p>\n","urlObject":{"path":["numbers","landline","verify","request"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"90702809-1375-4578-b262-1981cfc93ae7","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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\": 9485,\n    \"organization_id\": 519,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 2597,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 6656,\n    \"is_landline\": 1262,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\n    \"voice\": false,\n    \"use_organization_call_settings\": true,\n    \"voice_outbound\": false,\n    \"mms\": true,\n    \"disabled\": false,\n    \"has_profile\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 2906,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 3340\n    },\n    \"landline\": {\n      \"id\": 2783,\n      \"number_id\": 6238,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 3172,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 4996,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5593,\n      \"is_active\": true,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 842,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 3672,\n      \"number_id\": 867,\n      \"is_active\": false,\n      \"is_screening\": false,\n      \"is_call_whisper\": false,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 8709,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 9354,\n      \"organization_id\": 5743,\n      \"owner_id\": 279,\n      \"team_id\": 1341,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"verification_code\": \"string\"\n}"}],"_postman_id":"e7070dca-dbe6-421b-807d-ac6d5fb86800"}],"id":"78b09e4a-b011-4976-981c-67cdd1b8c359","_postman_id":"78b09e4a-b011-4976-981c-67cdd1b8c359","description":""}],"id":"1fefb8e6-a93c-45f0-bd63-57710e5da67b","_postman_id":"1fefb8e6-a93c-45f0-bd63-57710e5da67b","description":""}],"id":"fa586232-42e2-4a02-8bf3-ee482dabded9","_postman_id":"fa586232-42e2-4a02-8bf3-ee482dabded9","description":""},{"name":"lookup","item":[{"name":"Lookup a phone number","id":"6274b443-72c6-4132-9d5b-56ede1dbaa62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/lookup?number=string","description":"<p>REQUIRED SCOPES <code>['numbers:read']</code><br />Lookup a phone number using the lookup tool</p>\n","urlObject":{"path":["numbers","lookup"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Number</p>\n","type":"text/plain"},"key":"number","value":"string"}],"variable":[]}},"response":[{"id":"a2792130-855f-4aab-802d-f0c1c52aeaf6","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/lookup?number=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","lookup"],"query":[{"description":"Number","key":"number","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"number\": \"string\",\n  \"formatted_number\": \"string\",\n  \"country\": \"string\",\n  \"carrier\": \"string\",\n  \"type\": \"string\"\n}"},{"id":"e90e4597-f586-4bd2-990f-dd544ce57790","name":"Incorrect Number","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/lookup?number=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","lookup"],"query":[{"description":"Number","key":"number","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"6274b443-72c6-4132-9d5b-56ede1dbaa62"}],"id":"88957ca9-6229-49ab-9da6-566792691c57","_postman_id":"88957ca9-6229-49ab-9da6-566792691c57","description":""},{"name":"get-from-pool","item":[{"name":"Search for unused numbers in the number pool","id":"0b53a6e1-0033-45b4-9f47-d4dbac2d7948","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/get-from-pool?state=string&limit=2491","description":"<p>REQUIRED SCOPES <code>['numbers:read']</code><br />Search for unused numbers in the number pool</p>\n","urlObject":{"path":["numbers","get-from-pool"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>State code to search for numbers</p>\n","type":"text/plain"},"key":"state","value":"string"},{"description":{"content":"<p>Limit the number of results</p>\n","type":"text/plain"},"key":"limit","value":"2491"}],"variable":[]}},"response":[{"id":"38a69cf0-048f-4864-bf12-306e7c1dfaa7","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/get-from-pool?state=string&limit=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","get-from-pool"],"query":[{"description":"State code to search for numbers","key":"state","value":"string"},{"description":"Limit the number of results","key":"limit","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"number\": \"string\",\n    \"formatted\": \"string\",\n    \"country\": \"string\",\n    \"state\": \"string\"\n  },\n  {\n    \"number\": \"string\",\n    \"formatted\": \"string\",\n    \"country\": \"string\",\n    \"state\": \"string\"\n  }\n]"},{"id":"4547df16-e54c-45c6-8824-ee2cc715c677","name":"Unauthenticated","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.3/numbers/get-from-pool?state=string&limit=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","get-from-pool"],"query":[{"description":"State code to search for numbers","key":"state","value":"string"},{"description":"Limit the number of results","key":"limit","value":"2491"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f0f396f9-8b51-4dd4-aaaa-402d93873282","name":"Forbidden","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.3/numbers/get-from-pool?state=string&limit=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","get-from-pool"],"query":[{"description":"State code to search for numbers","key":"state","value":"string"},{"description":"Limit the number of results","key":"limit","value":"2491"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"44d4d9cb-7879-4b9f-99bb-a3f03bd18fae","name":"Validation 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.3/numbers/get-from-pool?state=string&limit=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","get-from-pool"],"query":[{"description":"State code to search for numbers","key":"state","value":"string"},{"description":"Limit the number of results","key":"limit","value":"2491"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0b53a6e1-0033-45b4-9f47-d4dbac2d7948"}],"id":"3e699a3a-431c-4620-b03a-f0cf5b9c9929","_postman_id":"3e699a3a-431c-4620-b03a-f0cf5b9c9929","description":""},{"name":"pft","item":[{"name":"Save PFT number","id":"5ef7bad3-4be6-4326-9619-d0160f920179","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"pft_number\": \"+1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/pft","description":"<p>REQUIRED SCOPES <code>['numbers:write']</code><br />Save PFT number</p>\n","urlObject":{"path":["numbers","pft"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"73417ec2-ae19-4150-b642-c51697d8b05d","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"pft_number\": \"+1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/pft"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"pft_number\": {\n    \"id\": 3799,\n    \"organization_id\": 156,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 5480,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7154,\n    \"is_landline\": 4135,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\n    \"is_aircall\": false,\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\": \"string\",\n    \"area_code\": {\n      \"id\": 7185,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8295\n    },\n    \"landline\": {\n      \"id\": 4348,\n      \"number_id\": 5299,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 4090,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 3944,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 4210,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 6718,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 6440,\n      \"number_id\": 8783,\n      \"is_active\": false,\n      \"is_screening\": true,\n      \"is_call_whisper\": false,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 9118,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 5011,\n      \"organization_id\": 6010,\n      \"owner_id\": 2475,\n      \"team_id\": 9642,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  }\n}"},{"id":"1b3b76b8-6482-434c-a1d8-b28fc2dc929c","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"pft_number\": \"+1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/pft"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fe72999e-d32f-4dd0-9b19-8312f497d141","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"pft_number\": \"+1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/pft"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ed80b9f9-7dc5-42ab-a180-64a51b3d4a10","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"pft_number\": \"+1234567890\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/pft"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": [\n    \"string\",\n    \"string\"\n  ],\n  \"is_require_pft_number\": false,\n  \"is_pft_trial_flow\": true\n}"}],"_postman_id":"5ef7bad3-4be6-4326-9619-d0160f920179"}],"id":"6a10297a-0724-4f35-92bf-cf5134be39d6","_postman_id":"6a10297a-0724-4f35-92bf-cf5134be39d6","description":""},{"name":"search","item":[{"name":"Search numbers","id":"b2fcf418-3e4a-4b4c-a598-d18fbd7de4d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/search?country=US&search=string&toll_free=true&limit=12","description":"<p>REQUIRED SCOPES <code>['numbers:write']</code><br />Search numbers</p>\n","urlObject":{"path":["numbers","search"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Country code (Alpha-2 code)</p>\n","type":"text/plain"},"key":"country","value":"US"},{"description":{"content":"<p>The string to search for..</p>\n","type":"text/plain"},"key":"search","value":"string"},{"description":{"content":"<p>Toll free.</p>\n","type":"text/plain"},"key":"toll_free","value":"true"},{"description":{"content":"<p>Results limit</p>\n","type":"text/plain"},"key":"limit","value":"12"}],"variable":[]}},"response":[{"id":"3926468d-650e-4053-ad53-ee8c478098ce","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers/search?country=US&search=string&toll_free=true&limit=12","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers","search"],"query":[{"description":"Country code (Alpha-2 code)","key":"country","value":"US"},{"description":"The string to search for..","key":"search","value":"string"},{"description":"Toll free.","key":"toll_free","value":"true"},{"description":"Results limit","key":"limit","value":"12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 6490,\n    \"organization_id\": 1025,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 4301,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 2283,\n    \"is_landline\": 4658,\n    \"is_toll_free\": true,\n    \"is_mobile\": 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\": \"string\",\n    \"area_code\": {\n      \"id\": 6120,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 2346\n    },\n    \"landline\": {\n      \"id\": 4197,\n      \"number_id\": 2366,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 6114,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 7818,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 1857,\n      \"is_active\": true,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 9932,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 1809,\n      \"number_id\": 1162,\n      \"is_active\": false,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 5380,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 5895,\n      \"organization_id\": 9364,\n      \"owner_id\": 63,\n      \"team_id\": 3685,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  {\n    \"id\": 2404,\n    \"organization_id\": 2499,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 1306,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7272,\n    \"is_landline\": 8791,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": \"string\",\n    \"area_code\": {\n      \"id\": 8184,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 853\n    },\n    \"landline\": {\n      \"id\": 4037,\n      \"number_id\": 59,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 4447,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 4154,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 6584,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 3730,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9361,\n      \"number_id\": 6540,\n      \"is_active\": true,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 3998,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 1814,\n      \"organization_id\": 4801,\n      \"owner_id\": 5156,\n      \"team_id\": 6541,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  }\n]"}],"_postman_id":"b2fcf418-3e4a-4b4c-a598-d18fbd7de4d1"}],"id":"770fd4f8-2c06-4194-b85a-3570368fe1fb","_postman_id":"770fd4f8-2c06-4194-b85a-3570368fe1fb","description":""},{"name":"shortcodes","item":[{"name":"Get shortcodes","id":"0849aa45-3dcd-48c8-b02e-6be66ec161dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/shortcodes","description":"<p>REQUIRED SCOPES <code>['numbers:read']</code><br />Get shortcodes</p>\n","urlObject":{"path":["numbers","shortcodes"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"f6945c2a-095d-4e9b-9e4f-bebbdcff6f11","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/shortcodes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9721,\n  \"organization_id\": 400,\n  \"country\": \"string\",\n  \"state\": \"string\",\n  \"city\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 2827,\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"short_code\": 9687,\n  \"is_landline\": 9017,\n  \"is_toll_free\": true,\n  \"is_mobile\": 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\": true,\n  \"verified_status\": \"string\",\n  \"area_code\": {\n    \"id\": 5112,\n    \"area_code\": \"string\",\n    \"state_code\": \"string\",\n    \"state_name\": \"string\",\n    \"country_code\": \"string\",\n    \"time_zone\": \"string\",\n    \"group_id\": 1436\n  },\n  \"landline\": {\n    \"id\": 1530,\n    \"number_id\": 9734,\n    \"address_sid\": \"string\",\n    \"sid\": \"string\",\n    \"document_sid\": \"string\",\n    \"status\": \"string\",\n    \"verification_attempts\": 7512,\n    \"last_verify_attempt_at\": \"string\",\n    \"landline_name\": \"string\",\n    \"street_address\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"zip_code\": \"string\",\n    \"completed\": 5065,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_vendor\": {\n    \"id\": 9738,\n    \"is_active\": false,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"credentials_prefix\": \"string\",\n    \"twilio_sid\": \"string\",\n    \"twilio_auth_token\": \"string\",\n    \"is_billable\": 3237,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_caller_id\": {\n    \"caller_id_sid\": \"string\",\n    \"verified\": true,\n    \"failed_reason\": \"string\"\n  },\n  \"call_forwarding\": {\n    \"id\": 9558,\n    \"number_id\": 1596,\n    \"is_active\": true,\n    \"is_screening\": false,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"string\",\n    \"country\": \"string\",\n    \"number\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"extension\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"numberable_id\": 8105,\n  \"numberable_type\": \"string\",\n  \"numberable\": {\n    \"id\": 3997,\n    \"organization_id\": 4826,\n    \"owner_id\": 5297,\n    \"team_id\": 5576,\n    \"name\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"}],"_postman_id":"0849aa45-3dcd-48c8-b02e-6be66ec161dc"}],"id":"bb4b19ed-0d39-42d9-b659-074ef721d2cc","_postman_id":"bb4b19ed-0d39-42d9-b659-074ef721d2cc","description":""},{"name":"unassigned","item":[{"name":"create","item":[{"name":"Create unassigned number","id":"a5e7ca93-b1a7-411a-9e98-aff3329e7d0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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\": 1796,\n  \"vendor_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/unassigned/create","description":"<p>REQUIRED SCOPES <code>['numbers:write']</code><br />Create unassigned numbers</p>\n","urlObject":{"path":["numbers","unassigned","create"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"29ba329a-b023-43e2-a9f1-80db3678c2e4","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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\": 1796,\n  \"vendor_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/numbers/unassigned/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9721,\n  \"organization_id\": 400,\n  \"country\": \"string\",\n  \"state\": \"string\",\n  \"city\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 2827,\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"short_code\": 9687,\n  \"is_landline\": 9017,\n  \"is_toll_free\": true,\n  \"is_mobile\": 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\": true,\n  \"verified_status\": \"string\",\n  \"area_code\": {\n    \"id\": 5112,\n    \"area_code\": \"string\",\n    \"state_code\": \"string\",\n    \"state_name\": \"string\",\n    \"country_code\": \"string\",\n    \"time_zone\": \"string\",\n    \"group_id\": 1436\n  },\n  \"landline\": {\n    \"id\": 1530,\n    \"number_id\": 9734,\n    \"address_sid\": \"string\",\n    \"sid\": \"string\",\n    \"document_sid\": \"string\",\n    \"status\": \"string\",\n    \"verification_attempts\": 7512,\n    \"last_verify_attempt_at\": \"string\",\n    \"landline_name\": \"string\",\n    \"street_address\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"zip_code\": \"string\",\n    \"completed\": 5065,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_vendor\": {\n    \"id\": 9738,\n    \"is_active\": false,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"credentials_prefix\": \"string\",\n    \"twilio_sid\": \"string\",\n    \"twilio_auth_token\": \"string\",\n    \"is_billable\": 3237,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_caller_id\": {\n    \"caller_id_sid\": \"string\",\n    \"verified\": true,\n    \"failed_reason\": \"string\"\n  },\n  \"call_forwarding\": {\n    \"id\": 9558,\n    \"number_id\": 1596,\n    \"is_active\": true,\n    \"is_screening\": false,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"string\",\n    \"country\": \"string\",\n    \"number\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"extension\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"numberable_id\": 8105,\n  \"numberable_type\": \"string\",\n  \"numberable\": {\n    \"id\": 3997,\n    \"organization_id\": 4826,\n    \"owner_id\": 5297,\n    \"team_id\": 5576,\n    \"name\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"},{"id":"02afbef1-7d65-43d8-8b03-f3504880fa7a","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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\": 1796,\n  \"vendor_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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\": \"string\",\n  \"number\": \"string\"\n}"}],"_postman_id":"a5e7ca93-b1a7-411a-9e98-aff3329e7d0f"}],"id":"4a1db162-d2ac-4726-9b73-ad0974d06601","_postman_id":"4a1db162-d2ac-4726-9b73-ad0974d06601","description":""},{"name":"Get unassigned numbers","id":"f3ed9b42-6104-4add-b5fa-936582b1d313","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/numbers/unassigned","description":"<p>REQUIRED SCOPES <code>['numbers:read']</code><br />Get unassigned numbers</p>\n","urlObject":{"path":["numbers","unassigned"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"ac92e463-9178-4b1d-88c2-be731a821d24","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.3/numbers/unassigned"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f3ed9b42-6104-4add-b5fa-936582b1d313"}],"id":"4852dbf0-0000-4a22-ac77-2016e28f4aa7","_postman_id":"4852dbf0-0000-4a22-ac77-2016e28f4aa7","description":""},{"name":"vendors","item":[{"name":"integration","item":[{"name":"List number vendors","id":"83d4ca95-0454-4699-88da-d7a4d8658104","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/vendors/integration","description":"<p>REQUIRED SCOPES <code>['numbers:read']</code><br />List number vendors</p>\n","urlObject":{"path":["numbers","vendors","integration"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"0f22f261-ce20-4e9c-9891-b678aa2f3895","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/vendors/integration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"key_0\": {},\n  \"key_1\": {}\n}"},{"id":"47a82519-70e6-48fb-b80b-eebeec550e6b","name":"Unauthenticated","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.3/numbers/vendors/integration"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0c22ef53-cd84-41b7-9699-ae0ee8edfe91","name":"Forbidden","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.3/numbers/vendors/integration"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"83d4ca95-0454-4699-88da-d7a4d8658104"}],"id":"7dbad371-3b97-4020-b775-aac0fb415223","_postman_id":"7dbad371-3b97-4020-b775-aac0fb415223","description":""},{"name":"Get numbers vendors","id":"45299031-1568-49ad-bfab-ff2679047850","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/vendors","description":"<p>REQUIRED SCOPES <code>['numbers:read']</code><br />Get numbers vendors</p>\n","urlObject":{"path":["numbers","vendors"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"2355ffba-a7c3-4971-a3ee-941294acc47e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers/vendors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 3604.028034003436,\n    \"name\": \"string\",\n    \"text\": \"string\",\n    \"Key\": \"string\"\n  },\n  {\n    \"id\": 2620.1751290169263,\n    \"name\": \"string\",\n    \"text\": \"string\",\n    \"Key\": \"string\"\n  }\n]"}],"_postman_id":"45299031-1568-49ad-bfab-ff2679047850"}],"id":"0469b149-2a0e-4a11-aefc-d2963ee7518b","_postman_id":"0469b149-2a0e-4a11-aefc-d2963ee7518b","description":""},{"name":"Get numbers","id":"639b5a37-e350-4a8a-9d6f-bcf6e1994ac2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/numbers?query=&ids[]=1786&ids[]=1861&page=1&limit=10","description":"<p>REQUIRED SCOPES <code>['numbers:read']</code><br />Get numbers</p>\n","urlObject":{"path":["numbers"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Search by number</p>\n","type":"text/plain"},"key":"query","value":""},{"description":{"content":"<p>The IDs of Numbers</p>\n","type":"text/plain"},"key":"ids[]","value":"1786"},{"description":{"content":"<p>The IDs of Numbers</p>\n","type":"text/plain"},"key":"ids[]","value":"1861"},{"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":"limit","value":"10"}],"variable":[]}},"response":[{"id":"19f2fab1-853b-4a4a-b011-a07100800631","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.3/numbers?query=&ids[]=1861&page=1&limit=10","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers"],"query":[{"description":"Search by number","key":"query","value":""},{"description":"The IDs of Numbers","key":"ids[]","value":"1861"},{"description":"Page number","key":"page","value":"1"},{"description":"Results per page","key":"limit","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"639b5a37-e350-4a8a-9d6f-bcf6e1994ac2"},{"name":"Create number","id":"08ed1989-eb03-4450-8338-e2bcdea1a163","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/numbers?number=string","description":"<p>REQUIRED SCOPES <code>['numbers:write']</code><br />Create number</p>\n","urlObject":{"path":["numbers"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Number</p>\n","type":"text/plain"},"key":"number","value":"string"}],"variable":[]}},"response":[{"id":"6dea728a-b2b6-467e-b272-01eacef0d21f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers?number=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers"],"query":[{"description":"Number","key":"number","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9721,\n  \"organization_id\": 400,\n  \"country\": \"string\",\n  \"state\": \"string\",\n  \"city\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 2827,\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"short_code\": 9687,\n  \"is_landline\": 9017,\n  \"is_toll_free\": true,\n  \"is_mobile\": 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\": true,\n  \"verified_status\": \"string\",\n  \"area_code\": {\n    \"id\": 5112,\n    \"area_code\": \"string\",\n    \"state_code\": \"string\",\n    \"state_name\": \"string\",\n    \"country_code\": \"string\",\n    \"time_zone\": \"string\",\n    \"group_id\": 1436\n  },\n  \"landline\": {\n    \"id\": 1530,\n    \"number_id\": 9734,\n    \"address_sid\": \"string\",\n    \"sid\": \"string\",\n    \"document_sid\": \"string\",\n    \"status\": \"string\",\n    \"verification_attempts\": 7512,\n    \"last_verify_attempt_at\": \"string\",\n    \"landline_name\": \"string\",\n    \"street_address\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"zip_code\": \"string\",\n    \"completed\": 5065,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_vendor\": {\n    \"id\": 9738,\n    \"is_active\": false,\n    \"key\": \"string\",\n    \"name\": \"string\",\n    \"credentials_prefix\": \"string\",\n    \"twilio_sid\": \"string\",\n    \"twilio_auth_token\": \"string\",\n    \"is_billable\": 3237,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"number_caller_id\": {\n    \"caller_id_sid\": \"string\",\n    \"verified\": true,\n    \"failed_reason\": \"string\"\n  },\n  \"call_forwarding\": {\n    \"id\": 9558,\n    \"number_id\": 1596,\n    \"is_active\": true,\n    \"is_screening\": false,\n    \"is_call_whisper\": true,\n    \"call_whisper\": \"string\",\n    \"country\": \"string\",\n    \"number\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"extension\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"numberable_id\": 8105,\n  \"numberable_type\": \"string\",\n  \"numberable\": {\n    \"id\": 3997,\n    \"organization_id\": 4826,\n    \"owner_id\": 5297,\n    \"team_id\": 5576,\n    \"name\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"},{"id":"596a2dd5-0c34-4c9f-a974-a1a432c2fa8c","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers?number=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers"],"query":[{"description":"Number","key":"number","value":"string"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f627df09-9217-412a-b783-52e23cd31882","name":"Invalid Number","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/numbers?number=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["numbers"],"query":[{"description":"Number","key":"number","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"08ed1989-eb03-4450-8338-e2bcdea1a163"}],"id":"f36eb6e3-3bf3-447d-9041-e52918a57bfd","_postman_id":"f36eb6e3-3bf3-447d-9041-e52918a57bfd","description":""},{"name":"business-hours","item":[{"name":"Update business hours","id":"165713a6-6abc-4129-b43f-f146c48f7038","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"hourable_id\": \"string\",\n  \"hourable_type\": \"App\\\\Teams\\\\Team\",\n  \"timezone\": \"string\",\n  \"days\": [\n    \"string\",\n    \"string\"\n  ],\n  \"message\": \"string\",\n  \"is_active\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/business-hours","description":"<p>REQUIRED SCOPES <code>['off-hours:write']</code><br />Update business hours</p>\n","urlObject":{"path":["business-hours"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"5d9effa9-a622-4916-908d-82e33c7df863","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"hourable_id\": \"string\",\n  \"hourable_type\": \"App\\\\Teams\\\\Team\",\n  \"timezone\": \"string\",\n  \"days\": [\n    \"string\",\n    \"string\"\n  ],\n  \"message\": \"string\",\n  \"is_active\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/business-hours"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"1016e6d2-8f4f-4b72-a69e-478bf55d74ac","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"hourable_id\": \"string\",\n  \"hourable_type\": \"App\\\\Teams\\\\Team\",\n  \"timezone\": \"string\",\n  \"days\": [\n    \"string\",\n    \"string\"\n  ],\n  \"message\": \"string\",\n  \"is_active\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/business-hours"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"},{"id":"0437d52a-aacd-44d7-8220-5cbe511ed816","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"hourable_id\": \"string\",\n  \"hourable_type\": \"App\\\\Teams\\\\Team\",\n  \"timezone\": \"string\",\n  \"days\": [\n    \"string\",\n    \"string\"\n  ],\n  \"message\": \"string\",\n  \"is_active\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/business-hours"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"165713a6-6abc-4129-b43f-f146c48f7038"}],"id":"613db37f-504b-4adf-8dca-58e810d919ba","_postman_id":"613db37f-504b-4adf-8dca-58e810d919ba","description":""},{"name":"agency","item":[{"name":"invites","item":[{"name":"{clientInvitation}","item":[{"name":"resend","item":[{"name":"Resend the invitation","id":"fab7d18a-e94a-4f0e-89ed-16c5c8f50229","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[],"url":"https://api.salesmessage.com/pub/v2.3/agency/invites/:clientInvitation/resend","description":"<p>REQUIRED SCOPES <code>['organizations-agency:write']</code><br />Resend the invitation</p>\n","urlObject":{"path":["agency","invites",":clientInvitation","resend"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"706f900e-1256-4a3f-aba0-8be3c705868b","description":{"content":"<p>The ID of the Client invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"clientInvitation"}]}},"response":[{"id":"507848d3-4ca7-41d1-abf4-db08aa190634","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.3/agency/invites/:clientInvitation/resend","host":["https://api.salesmessage.com/pub/v2.3"],"path":["agency","invites",":clientInvitation","resend"],"variable":[{"key":"clientInvitation","value":"","description":"The ID of the Client invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fab7d18a-e94a-4f0e-89ed-16c5c8f50229"}],"id":"84ebf934-7996-427d-923b-6c39ddf5d838","_postman_id":"84ebf934-7996-427d-923b-6c39ddf5d838","description":""},{"name":"Update the invitation","id":"4e2b2c3f-8a05-4123-8bdc-11943c92594b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"test@test.test\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/agency/invites/:clientInvitation","description":"<p>REQUIRED SCOPES <code>['organizations-agency:write']</code><br />Update the invitation</p>\n","urlObject":{"path":["agency","invites",":clientInvitation"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"82cb5f0d-3f6e-455d-94ff-221d0cc67cfe","description":{"content":"<p>The ID of the Client invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"clientInvitation"}]}},"response":[{"id":"20b5684b-f042-45c9-9ac8-6311271b7507","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/agency/invites/:clientInvitation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["agency","invites",":clientInvitation"],"variable":[{"key":"clientInvitation","value":"","description":"The ID of the Client invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4e2b2c3f-8a05-4123-8bdc-11943c92594b"},{"name":"Delete the invitation","id":"bc95c3c2-e36a-4522-808d-9eadeafc8ac0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.3/agency/invites/:clientInvitation","description":"<p>REQUIRED SCOPES <code>['organizations-agency:write']</code><br />Delete the invitation</p>\n","urlObject":{"path":["agency","invites",":clientInvitation"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"c26940c5-2932-4e8a-8a8a-13e5e001c5c4","description":{"content":"<p>The ID of the Client invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"clientInvitation"}]}},"response":[{"id":"3ee33121-c0dc-4ad9-8ea8-0c8814078ea8","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.3/agency/invites/:clientInvitation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["agency","invites",":clientInvitation"],"variable":[{"key":"clientInvitation","value":"","description":"The ID of the Client invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bc95c3c2-e36a-4522-808d-9eadeafc8ac0"}],"id":"14a0cd43-3d24-49d8-a878-5ab9594b559c","_postman_id":"14a0cd43-3d24-49d8-a878-5ab9594b559c","description":""},{"name":"validate","item":[{"name":"Validate email on invitation create","id":"704d1824-a50a-4da1-b7ba-12a31e34c97a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/agency/invites/validate","description":"<p>REQUIRED SCOPES <code>['organizations-agency:write']</code><br />Validate email on invitation create</p>\n","urlObject":{"path":["agency","invites","validate"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"c0f01dd0-ceb1-4f83-a349-d7240fe86031","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/agency/invites/validate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"valid\": false\n}"}],"_postman_id":"704d1824-a50a-4da1-b7ba-12a31e34c97a"}],"id":"f4bf6cb3-4095-4380-b3a7-582f1bad206a","_postman_id":"f4bf6cb3-4095-4380-b3a7-582f1bad206a","description":""},{"name":"Get agency`s invitations","id":"f5108128-2631-451d-8210-30454d5f73eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/agency/invites","description":"<p>REQUIRED SCOPES <code>['organizations-agency:read']</code><br />Get agency`s invitations</p>\n","urlObject":{"path":["agency","invites"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"daea8697-2cfc-4236-96a8-58b6a8ed4ef8","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.3/agency/invites"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f5108128-2631-451d-8210-30454d5f73eb"},{"name":"Create agency's invitation","id":"e7153db6-1818-4b10-bb26-a0269fe9ba0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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  \"affiliate_link\": \"https://www.salesmessage.com/?fp_ref=example\",\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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/agency/invites","description":"<p>REQUIRED SCOPES <code>['organizations-agency:write']</code><br />Create agency's invitation</p>\n","urlObject":{"path":["agency","invites"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"9af9660e-d104-48db-92dd-a03a7253a358","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"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  \"affiliate_link\": \"https://www.salesmessage.com/?fp_ref=example\",\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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/agency/invites"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b34145fd-008c-4d8b-aefd-1dcc1a8b504f","name":"Create Customer Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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  \"affiliate_link\": \"https://www.salesmessage.com/?fp_ref=example\",\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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/agency/invites"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"e7153db6-1818-4b10-bb26-a0269fe9ba0d"}],"id":"c6c3524d-2a18-462b-9707-3d913563fd3a","_postman_id":"c6c3524d-2a18-462b-9707-3d913563fd3a","description":""},{"name":"clients","item":[{"name":"{client}","item":[{"name":"Deletes the client from an agency","id":"9391a08d-d25f-447b-afc3-45acd2a5d2c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.3/agency/clients/:client","description":"<p>REQUIRED SCOPES <code>['organizations-agency:write']</code><br />Deletes the client from an agency</p>\n","urlObject":{"path":["agency","clients",":client"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"7488a662-bc81-491f-9b32-124389904c88","description":{"content":"<p>The ID of the Client</p>\n","type":"text/plain"},"type":"any","value":"","key":"client"}]}},"response":[{"id":"63f79413-7183-4e31-9de8-d33457e449a1","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.3/agency/clients/:client","host":["https://api.salesmessage.com/pub/v2.3"],"path":["agency","clients",":client"],"variable":[{"key":"client","value":"","description":"The ID of the Client"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9391a08d-d25f-447b-afc3-45acd2a5d2c1"}],"id":"9389b843-c92c-48b4-ba12-e1fa38ce30d5","_postman_id":"9389b843-c92c-48b4-ba12-e1fa38ce30d5","description":""},{"name":"Get clients","id":"5a183517-7443-4ddf-a071-1042e3fc2894","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/agency/clients?sortBy=name&sortOrder=asc&all=false&search=string&length=20&page=1&fields_list=string&fields_list=string","description":"<p>REQUIRED SCOPES <code>['organizations-agency:read']</code><br />Fetches a list of clients based on specified criteria.</p>\n","urlObject":{"path":["agency","clients"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Field to sort by</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"sortOrder","value":"asc"},{"description":{"content":"<p>Fetch all clients without pagination</p>\n","type":"text/plain"},"key":"all","value":"false"},{"description":{"content":"<p>Search term</p>\n","type":"text/plain"},"key":"search","value":"string"},{"description":{"content":"<p>Number of results per page</p>\n","type":"text/plain"},"key":"length","value":"20"},{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>List of specific fields to return</p>\n","type":"text/plain"},"key":"fields_list","value":"string"},{"description":{"content":"<p>List of specific fields to return</p>\n","type":"text/plain"},"key":"fields_list","value":"string"}],"variable":[]}},"response":[{"id":"0e8e85b7-ecc4-4514-8649-136a6178132d","name":"Successful retrieval of client list","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/agency/clients?sortBy=name&sortOrder=asc&all=false&search=string&length=20&page=1&fields_list=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["agency","clients"],"query":[{"description":"Field to sort by","key":"sortBy","value":"name"},{"description":"Sort order","key":"sortOrder","value":"asc"},{"description":"Fetch all clients without pagination","key":"all","value":"false"},{"description":"Search term","key":"search","value":"string"},{"description":"Number of results per page","key":"length","value":"20"},{"description":"Page number","key":"page","value":"1"},{"description":"List of specific fields to return","key":"fields_list","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 1,\n    \"name\": \"SalesMessage Inc.\",\n    \"country\": \"US\",\n    \"is_agency\": true,\n    \"agency_id\": 321,\n    \"vendor_id\": \"vnd-567\",\n    \"stripe_id\": \"stripe-5678\",\n    \"created_at\": \"2024-03-18T14:23:00Z\",\n    \"updated_at\": \"2024-03-19T10:15:00Z\"\n  },\n  {\n    \"id\": 1,\n    \"name\": \"SalesMessage Inc.\",\n    \"country\": \"US\",\n    \"is_agency\": true,\n    \"agency_id\": 321,\n    \"vendor_id\": \"vnd-567\",\n    \"stripe_id\": \"stripe-5678\",\n    \"created_at\": \"2024-03-18T14:23:00Z\",\n    \"updated_at\": \"2024-03-19T10:15:00Z\"\n  }\n]"},{"id":"1e7683ae-5c74-499c-b806-9160859be3e9","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.3/agency/clients?sortBy=name&sortOrder=asc&all=false&search=string&length=20&page=1&fields_list=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["agency","clients"],"query":[{"description":"Field to sort by","key":"sortBy","value":"name"},{"description":"Sort order","key":"sortOrder","value":"asc"},{"description":"Fetch all clients without pagination","key":"all","value":"false"},{"description":"Search term","key":"search","value":"string"},{"description":"Number of results per page","key":"length","value":"20"},{"description":"Page number","key":"page","value":"1"},{"description":"List of specific fields to return","key":"fields_list","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5a183517-7443-4ddf-a071-1042e3fc2894"}],"id":"ec2720a6-e20b-4978-b291-da7fb57dba0b","_postman_id":"ec2720a6-e20b-4978-b291-da7fb57dba0b","description":""}],"id":"4a4fa3f8-621b-4347-8456-4a9abe1c7955","_postman_id":"4a4fa3f8-621b-4347-8456-4a9abe1c7955","description":""},{"name":"organization","item":[{"name":"analytics","item":[{"name":"Get organization analytics","id":"59950831-5a6d-4c67-a84d-d11beee8ecb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/analytics?from=1947-04-23&to=1947-04-23&timezone=string&page=1&sort=name&order=asc","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Get organization analytics</p>\n","urlObject":{"path":["organization","analytics"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Start date for analytics (format: Y-m-d)</p>\n","type":"text/plain"},"key":"from","value":"1947-04-23"},{"description":{"content":"<p>End date for analytics (format: Y-m-d)</p>\n","type":"text/plain"},"key":"to","value":"1947-04-23"},{"description":{"content":"<p>Timezone for the dates</p>\n","type":"text/plain"},"key":"timezone","value":"string"},{"description":{"content":"<p>Page number for inbox pagination</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Field to sort by</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"description":{"content":"<p>Sort order (asc or desc)</p>\n","type":"text/plain"},"key":"order","value":"asc"}],"variable":[]}},"response":[{"id":"9e5ef60b-09d3-42c6-87e5-11487147f18a","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/analytics?from=1947-04-23&to=1947-04-23&timezone=string&page=1&sort=name&order=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","analytics"],"query":[{"description":"Start date for analytics (format: Y-m-d)","key":"from","value":"1947-04-23"},{"description":"End date for analytics (format: Y-m-d)","key":"to","value":"1947-04-23"},{"description":"Timezone for the dates","key":"timezone","value":"string"},{"description":"Page number for inbox pagination","key":"page","value":"1"},{"description":"Field to sort by","key":"sort","value":"name"},{"description":"Sort order (asc or desc)","key":"order","value":"asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"inboxes\": {},\n  \"calls\": [\n    {\n      \"date\": \"string\",\n      \"label\": \"string\",\n      \"forwarded\": 9371,\n      \"inbound\": 6328,\n      \"outbound\": 3318,\n      \"total\": 1923\n    },\n    {\n      \"date\": \"string\",\n      \"label\": \"string\",\n      \"forwarded\": 256,\n      \"inbound\": 8916,\n      \"outbound\": 9211,\n      \"total\": 6472\n    }\n  ]\n}"},{"id":"03a767c6-e663-4818-b723-6538aeb30520","name":"Unauthenticated","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.3/organization/analytics?from=1947-04-23&to=1947-04-23&timezone=string&page=1&sort=name&order=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","analytics"],"query":[{"description":"Start date for analytics (format: Y-m-d)","key":"from","value":"1947-04-23"},{"description":"End date for analytics (format: Y-m-d)","key":"to","value":"1947-04-23"},{"description":"Timezone for the dates","key":"timezone","value":"string"},{"description":"Page number for inbox pagination","key":"page","value":"1"},{"description":"Field to sort by","key":"sort","value":"name"},{"description":"Sort order (asc or desc)","key":"order","value":"asc"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"78a4e8dd-e414-4e09-b6ae-abfd4e839261","name":"Forbidden","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.3/organization/analytics?from=1947-04-23&to=1947-04-23&timezone=string&page=1&sort=name&order=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","analytics"],"query":[{"description":"Start date for analytics (format: Y-m-d)","key":"from","value":"1947-04-23"},{"description":"End date for analytics (format: Y-m-d)","key":"to","value":"1947-04-23"},{"description":"Timezone for the dates","key":"timezone","value":"string"},{"description":"Page number for inbox pagination","key":"page","value":"1"},{"description":"Field to sort by","key":"sort","value":"name"},{"description":"Sort order (asc or desc)","key":"order","value":"asc"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b2547b83-be0d-47c3-8867-e58c80c4055c","name":"Validation 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.3/organization/analytics?from=1947-04-23&to=1947-04-23&timezone=string&page=1&sort=name&order=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","analytics"],"query":[{"description":"Start date for analytics (format: Y-m-d)","key":"from","value":"1947-04-23"},{"description":"End date for analytics (format: Y-m-d)","key":"to","value":"1947-04-23"},{"description":"Timezone for the dates","key":"timezone","value":"string"},{"description":"Page number for inbox pagination","key":"page","value":"1"},{"description":"Field to sort by","key":"sort","value":"name"},{"description":"Sort order (asc or desc)","key":"order","value":"asc"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"59950831-5a6d-4c67-a84d-d11beee8ecb1"}],"id":"f4ec4189-e2e9-46ca-a293-89d26ecf2000","_postman_id":"f4ec4189-e2e9-46ca-a293-89d26ecf2000","description":""},{"name":"auto-close-setting","item":[{"name":"Updates organization's auto close setting","id":"85e45260-e9f0-4983-9de1-0d93b9255d66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_setting\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-setting","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Updates organization's auto close setting</p>\n","urlObject":{"path":["organization","auto-close-setting"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"b5a3e776-c74d-4287-a808-ebcb87b4e20f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_setting\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-setting"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"41bc252c-9e8a-4460-b9f5-6eafdb2335e0","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_setting\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-setting"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0ba4dbdf-136e-4987-a068-d829bb5336db","name":"Unprocessable Content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_setting\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-setting"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"auto_close_setting\": true\n}"}],"_postman_id":"85e45260-e9f0-4983-9de1-0d93b9255d66"}],"id":"beaf5e36-e657-4501-9466-7c0725570aa0","_postman_id":"beaf5e36-e657-4501-9466-7c0725570aa0","description":""},{"name":"auto-close-days","item":[{"name":"Updates organization's auto close days","id":"2ce4cea8-0088-4a68-802e-888e495e36af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_days\": 8441\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-days","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Updates organization's auto close days</p>\n","urlObject":{"path":["organization","auto-close-days"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"6e7d2639-b0e8-431b-a942-5b9d5ee1097e","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_days\": 8441\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-days"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"da9510f4-3b57-4999-b91e-43bc173be8ca","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_days\": 8441\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-days"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"447828a0-dd66-4eb6-8db7-9939b2ca0a12","name":"Unprocessable Content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_days\": 8441\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-days"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"auto_close_days\": 2824\n}"}],"_postman_id":"2ce4cea8-0088-4a68-802e-888e495e36af"}],"id":"27a7468b-fa9c-4409-a129-8d341b260c17","_postman_id":"27a7468b-fa9c-4409-a129-8d341b260c17","description":""},{"name":"auto-close-unsubscribe","item":[{"name":"Updates organization's auto close unsubscribe setting","id":"1c2e412c-a031-49ba-81e6-e07086e2403e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_setting\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-unsubscribe","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Updates organization's auto close unsubscribe setting</p>\n","urlObject":{"path":["organization","auto-close-unsubscribe"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"318698e9-e4ff-4bde-bd08-18d0e7cdaf29","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_setting\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-unsubscribe"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b8f7ce3d-e9db-4520-a0d2-bcc5816f4c37","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_setting\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-unsubscribe"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"493ecf5a-d51b-489e-8e1c-4e705b86f6b7","name":"Unprocessable Content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"auto_close_setting\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/auto-close-unsubscribe"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"auto_close_unsubscribe\": true\n}"}],"_postman_id":"1c2e412c-a031-49ba-81e6-e07086e2403e"}],"id":"711076fd-71af-4800-bb79-d815cf58c648","_postman_id":"711076fd-71af-4800-bb79-d815cf58c648","description":""},{"name":"call-queue-participants","item":[{"name":"{team?}","item":[{"name":"Get list of call queue participants","id":"dfc7db63-9bde-48c5-84e0-7883aaef285d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/call-queue-participants/:team?","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Get list of call queue participants</p>\n","urlObject":{"path":["organization","call-queue-participants",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"key":"","value":null}],"variable":[{"id":"262c00ed-797a-4742-b652-9a9a910dfbc6","description":{"content":"<p>ID of the team (optional)</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"ccdb6598-111a-4b09-846b-33ccff5c38e5","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/call-queue-participants/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-queue-participants",":team"],"variable":[{"key":"team","value":"2491","description":"ID of the team (optional)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 8491,\n    \"name\": \"string\",\n    \"email\": \"string\",\n    \"role\": \"string\"\n  },\n  {\n    \"id\": 1265,\n    \"name\": \"string\",\n    \"email\": \"string\",\n    \"role\": \"string\"\n  }\n]"},{"id":"f78f52b7-d5d9-4d8a-806d-222167e86663","name":"Unauthenticated","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.3/organization/call-queue-participants/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-queue-participants",":team"],"variable":[{"key":"team","value":"2491","description":"ID of the team (optional)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"dc9f3cbc-f9f9-4e4c-ad57-99b3841fdfb0","name":"Forbidden","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.3/organization/call-queue-participants/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-queue-participants",":team"],"variable":[{"key":"team","value":"2491","description":"ID of the team (optional)"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"bcfcf358-65ef-4984-b2da-f3859f837cff","name":"Team 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.3/organization/call-queue-participants/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-queue-participants",":team"],"variable":[{"key":"team","value":"2491","description":"ID of the team (optional)"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dfc7db63-9bde-48c5-84e0-7883aaef285d"}],"id":"9a225712-9d9f-4f86-953e-9e345fe6a11f","_postman_id":"9a225712-9d9f-4f86-953e-9e345fe6a11f","description":""}],"id":"7d7d0e81-21e8-4ede-bf8e-fd25b47bae82","_postman_id":"7d7d0e81-21e8-4ede-bf8e-fd25b47bae82","description":""},{"name":"call-status","item":[{"name":"Updates organization's calling status","id":"2c81c001-f1bc-45ed-a066-7cc3506e94a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/call-status","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Updates organization's calling status</p>\n","urlObject":{"path":["organization","call-status"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"7854c879-f0af-488f-9e0e-a387b477c743","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/call-status"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"60e0806f-887c-480e-8c68-5111595357f1","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/call-status"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"56ac0437-ef49-4030-bf64-edcbeaee338b","name":"Unprocessable Content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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":"2c81c001-f1bc-45ed-a066-7cc3506e94a6"}],"id":"81bede19-7bf1-4df9-8065-4d0657ec1fe0","_postman_id":"81bede19-7bf1-4df9-8065-4d0657ec1fe0","description":""},{"name":"conversation-history-settings","item":[{"name":"Update conversation history settings for the organization","id":"f43a11fe-cd57-4696-8988-7c518f98e988","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/conversation-history-settings","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Update conversation history settings for the organization</p>\n","urlObject":{"path":["organization","conversation-history-settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"23a0dc41-1fd3-48f2-8676-de2696fa5e89","name":"Settings updated successfully","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/conversation-history-settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"use_global_conversation_history\": false\n}"},{"id":"9ba294bb-052d-4e30-9c68-7c295e0dc9c9","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/conversation-history-settings"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"8c82bc6b-4979-4556-ae60-9e6055d165ab","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/conversation-history-settings"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"af32d514-84a2-4c3d-9dc1-76fa31b75730","name":"Not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/conversation-history-settings"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b311c866-3937-435d-9a3e-f32eabfd185a","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/conversation-history-settings"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f43a11fe-cd57-4696-8988-7c518f98e988"}],"id":"495848f4-f398-4931-a099-2abd9095b3a6","_postman_id":"495848f4-f398-4931-a099-2abd9095b3a6","description":""},{"name":"current","item":[{"name":"Get Current Organization","id":"ce85576b-d33c-4e32-b949-a856168976fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/current","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Get Current Organization</p>\n","urlObject":{"path":["organization","current"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"efa6fab8-4794-4eb8-ae91-dd6204ac56fb","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/current"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"account_balance\": true,\n  \"account_credits\": 5830,\n  \"auto_close_days\": 4342,\n  \"auto_close_setting\": true,\n  \"auto_close_unsubscribe\": false,\n  \"auto_assign_contact_owner\": true,\n  \"use_global_conversation_history\": true,\n  \"extended_international_texting\": false,\n  \"broadcast_limits\": [\n    {\n      \"broadcasts_long_code\": 6006,\n      \"broadcasts_short_code\": 2894,\n      \"broadcasts_toll_free\": 2413,\n      \"broadcasts_mobile\": 629\n    },\n    {\n      \"broadcasts_long_code\": 6530,\n      \"broadcasts_short_code\": 5293,\n      \"broadcasts_toll_free\": 83,\n      \"broadcasts_mobile\": 2869\n    }\n  ],\n  \"clients_plan\": \"string\",\n  \"country\": \"string\",\n  \"created_at\": \"string\",\n  \"custom_fields_list\": [\n    {\n      \"0\": [\n        {\n          \"id\": 8355,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"organization_id\": 8282,\n          \"type\": \"string\",\n          \"visible\": 995\n        },\n        {\n          \"id\": 7144,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"organization_id\": 3414,\n          \"type\": \"string\",\n          \"visible\": 4632\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"id\": 7219,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"organization_id\": 7305,\n          \"type\": \"string\",\n          \"visible\": 6963\n        },\n        {\n          \"id\": 9099,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"organization_id\": 4329,\n          \"type\": \"string\",\n          \"visible\": 1496\n        }\n      ]\n    }\n  ],\n  \"dlc_status\": \"string\",\n  \"double_opt_in\": [\n    {\n      \"is_active\": true\n    },\n    {\n      \"is_active\": true\n    }\n  ],\n  \"first_promoter_ref_id\": \"string\",\n  \"franchise\": true,\n  \"hasAffiliateLink\": true,\n  \"hasTwilioNumbers\": true,\n  \"hash_id\": \"string\",\n  \"id\": 2197,\n  \"is_agency\": false,\n  \"ivr_greetings\": [\n    {\n      \"0\": [\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 5501,\n          \"name\": \"string\",\n          \"organization_id\": 313,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        },\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 230,\n          \"name\": \"string\",\n          \"organization_id\": 1386,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 6889,\n          \"name\": \"string\",\n          \"organization_id\": 6220,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        },\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 1411,\n          \"name\": \"string\",\n          \"organization_id\": 9894,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"name\": \"string\",\n  \"settings\": [\n    \"\",\n    \"\"\n  ],\n  \"trial_credits\": 7416,\n  \"owner_id\": 963,\n  \"trial_ends_at\": \"string\",\n  \"two_fa_enabled\": true,\n  \"voicemail_greetings\": [\n    {\n      \"0\": [\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 2675,\n          \"name\": \"string\",\n          \"organization_id\": 4069,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        },\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 7188,\n          \"name\": \"string\",\n          \"organization_id\": 8627,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 3396,\n          \"name\": \"string\",\n          \"organization_id\": 6604,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        },\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 5034,\n          \"name\": \"string\",\n          \"organization_id\": 283,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"number_vendor\": [\n    {\n      \"key\": \"string\"\n    },\n    {\n      \"key\": \"string\"\n    }\n  ],\n  \"organization_call\": [\n    {\n      \"is_active\": true,\n      \"is_active_inbound\": true\n    },\n    {\n      \"is_active\": true,\n      \"is_active_inbound\": true\n    }\n  ]\n}"},{"id":"c3848d9e-2c85-493c-967f-6def5fa58dca","name":"Unauthenticated","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.3/organization/current"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e90b3639-4509-4370-a834-9d37c861c300","name":"Forbidden","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.3/organization/current"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"65aaa00a-67ed-42c1-a6ac-7decccf87ade","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.3/organization/current"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ce85576b-d33c-4e32-b949-a856168976fd"}],"id":"948cc975-24f7-4321-9872-3f242ebf8385","_postman_id":"948cc975-24f7-4321-9872-3f242ebf8385","description":""},{"name":"double-opt-in","item":[{"name":"Updates an organization's double opt in setting","id":"41c0f736-df3f-4190-9535-26500fa0ba0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/double-opt-in","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Updates an organization's double opt in setting</p>\n","urlObject":{"path":["organization","double-opt-in"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"fbbc43fd-3814-4c60-9dfd-4406ae100f42","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/double-opt-in"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9978,\n  \"organization_id\": 8819,\n  \"is_active\": true\n}"},{"id":"50f4ce3b-5d86-458e-a002-67bda83dbe7c","name":"Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/double-opt-in"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6dc68832-22f7-4822-ab70-4dac6ddde4d6","name":"Unprocessable Content","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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":"41c0f736-df3f-4190-9535-26500fa0ba0c"}],"id":"ecec9118-cf56-4974-b38b-d931d69ffeb4","_postman_id":"ecec9118-cf56-4974-b38b-d931d69ffeb4","description":""},{"name":"fallback-inbox","item":[{"name":"Delete fallback inbox","id":"a5454dd0-e26b-4e4e-a4c2-ad60477c9936","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/fallback-inbox","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Delete fallback inbox</p>\n","urlObject":{"path":["organization","fallback-inbox"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"5623f21d-ac1a-4243-aa77-82af9931e7ec","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/fallback-inbox"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"organization_id\": 9086,\n  \"fallback_team_id\": 1203\n}"},{"id":"aa2cd699-640d-4c87-88dd-2e13442a0fb1","name":"Failed to reset fallback inbox","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/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\": \"string\"\n}"}],"_postman_id":"a5454dd0-e26b-4e4e-a4c2-ad60477c9936"}],"id":"35e929a9-e1f9-49f5-876e-48306a6faf8d","_postman_id":"35e929a9-e1f9-49f5-876e-48306a6faf8d","description":""},{"name":"set-fallback-inbox","item":[{"name":"{team}","item":[{"name":"Update organization's fallback inbox","id":"2dabd9aa-43ab-4f27-9d65-e557212a7486","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/set-fallback-inbox/:team","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Update organization's fallback inbox</p>\n","urlObject":{"path":["organization","set-fallback-inbox",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"35061d08-5779-4eea-9b1d-6b617ffb8dc7","description":{"content":"<p>The ID of the Team</p>\n","type":"text/plain"},"type":"any","value":"","key":"team"}]}},"response":[{"id":"30dffdd6-9519-4285-9d38-1666eeffa2f5","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/set-fallback-inbox/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","set-fallback-inbox",":team"],"variable":[{"key":"team","value":"","description":"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\": 9086,\n  \"fallback_team_id\": 1203\n}"},{"id":"a329ed78-e018-4186-8f06-9fb53508e1f3","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/set-fallback-inbox/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","set-fallback-inbox",":team"],"variable":[{"key":"team","value":"","description":"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\": \"string\"\n}"}],"_postman_id":"2dabd9aa-43ab-4f27-9d65-e557212a7486"}],"id":"ec8fb115-0720-47ac-8d9f-8b292cad7e9c","_postman_id":"ec8fb115-0720-47ac-8d9f-8b292cad7e9c","description":""}],"id":"25e8ef3f-19fc-4d0c-ba95-57e19b599321","_postman_id":"25e8ef3f-19fc-4d0c-ba95-57e19b599321","description":""},{"name":"segments","item":[{"name":"create","item":[{"name":"Create filter","id":"95289f42-0ddf-416c-895a-fde2ad989e86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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  \"is_favorite\": false,\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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/segments/create","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Create filter</p>\n","urlObject":{"path":["organization","segments","create"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"01cd34d8-05dc-43d8-b1ab-eb8a0380450a","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Segment\",\n  \"is_favorite\": false,\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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/segments/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4746,\n  \"organization_id\": 9204,\n  \"name\": \"string\",\n  \"is_favorite\": true,\n  \"filters\": [\n    \"\",\n    \"\"\n  ]\n}"},{"id":"77d9ccfd-658f-4f4a-a63e-40c86416c77c","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Segment\",\n  \"is_favorite\": false,\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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/segments/create"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"95289f42-0ddf-416c-895a-fde2ad989e86"}],"id":"046177e7-64ca-4641-98d2-1e930a5a482b","_postman_id":"046177e7-64ca-4641-98d2-1e930a5a482b","description":""},{"name":"{organizationFilter}","item":[{"name":"update","item":[{"name":"Update the filter","id":"e1e2bb45-146e-4c6d-aa8f-0d69879296d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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  \"is_favorite\": false,\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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/segments/:organizationFilter/update","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Update the filter</p>\n","urlObject":{"path":["organization","segments",":organizationFilter","update"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"9d425be2-b4ec-4ef0-9194-0dd2dbd39172","description":{"content":"<p>The ID of the Organization filter</p>\n","type":"text/plain"},"type":"any","value":"","key":"organizationFilter"}]}},"response":[{"id":"8862b23c-c48b-447e-8b5e-a28e2b2e9ff3","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Segment\",\n  \"is_favorite\": false,\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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/segments/:organizationFilter/update","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","segments",":organizationFilter","update"],"variable":[{"key":"organizationFilter","value":"","description":"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\": 4746,\n  \"organization_id\": 9204,\n  \"name\": \"string\",\n  \"is_favorite\": true,\n  \"filters\": [\n    \"\",\n    \"\"\n  ]\n}"},{"id":"814c0aaf-977b-4b3b-8df3-d61af4b9a9d9","name":"Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Segment\",\n  \"is_favorite\": false,\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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/segments/:organizationFilter/update","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","segments",":organizationFilter","update"],"variable":[{"key":"organizationFilter","value":"","description":"The ID of the Organization filter"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e1e2bb45-146e-4c6d-aa8f-0d69879296d1"}],"id":"f5e40e54-045c-40c1-a036-5e8d8458f096","_postman_id":"f5e40e54-045c-40c1-a036-5e8d8458f096","description":""},{"name":"delete","item":[{"name":"Delete the filter","id":"c6d8021d-1f64-4c23-8a0f-542228d812a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.3/organization/segments/:organizationFilter/delete","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Delete the filter</p>\n","urlObject":{"path":["organization","segments",":organizationFilter","delete"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"9e74a32c-898b-444a-8e15-9893fa9aba89","description":{"content":"<p>The ID of the Organization filter</p>\n","type":"text/plain"},"type":"any","value":"","key":"organizationFilter"}]}},"response":[{"id":"c366eedc-54b3-469d-9d25-5374b3ed9cc7","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.3/organization/segments/:organizationFilter/delete","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","segments",":organizationFilter","delete"],"variable":[{"key":"organizationFilter","value":"","description":"The ID of the Organization filter"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c6d8021d-1f64-4c23-8a0f-542228d812a0"}],"id":"9569c928-648b-4377-bdee-fe53c926bb38","_postman_id":"9569c928-648b-4377-bdee-fe53c926bb38","description":""}],"id":"c0ba37a8-65ec-4b1b-a0b3-5fbaa234ab01","_postman_id":"c0ba37a8-65ec-4b1b-a0b3-5fbaa234ab01","description":""},{"name":"search","item":[{"name":"Search segments","id":"74dc6792-4462-4625-b9df-bc70e0de62f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/segments/search?page=1&per_page=10&ids=1786&ids=1861&include_deleted=true","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Search segments</p>\n","urlObject":{"path":["organization","segments","search"],"host":["https://api.salesmessage.com/pub/v2.3"],"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"},{"description":{"content":"<p>Array of IDs</p>\n","type":"text/plain"},"key":"ids","value":"1786"},{"description":{"content":"<p>Array of IDs</p>\n","type":"text/plain"},"key":"ids","value":"1861"},{"description":{"content":"<p>Indicates if soft deleted should be included</p>\n","type":"text/plain"},"key":"include_deleted","value":"true"}],"variable":[]}},"response":[{"id":"e6270d96-6219-420c-ac9a-c2a77f6a9e19","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/segments/search?page=1&per_page=10&ids=1861&include_deleted=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","segments","search"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Results per page","key":"per_page","value":"10"},{"description":"Array of IDs","key":"ids","value":"1861"},{"description":"Indicates if soft deleted should be included","key":"include_deleted","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"results\": [\n    \"\",\n    \"\"\n  ],\n  \"total\": 802,\n  \"current_page\": 4830,\n  \"last_page\": 4765,\n  \"per_page\": 6633\n}"}],"_postman_id":"74dc6792-4462-4625-b9df-bc70e0de62f4"}],"id":"8443d258-2ab1-475b-bea7-9f2386fe3115","_postman_id":"8443d258-2ab1-475b-bea7-9f2386fe3115","description":""}],"id":"e3c43bef-cf33-4409-be9c-6647009d2ba2","_postman_id":"e3c43bef-cf33-4409-be9c-6647009d2ba2","description":""},{"name":"invites","item":[{"name":"{invitation}","item":[{"name":"resend","item":[{"name":"Resend the invitation","id":"fdfa7c10-2000-42c9-ab6e-7774394b8669","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/invites/:invitation/resend","description":"<p>REQUIRED SCOPES <code>['organizations-invitations:write']</code><br />Resend the invitation</p>\n","urlObject":{"path":["organization","invites",":invitation","resend"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"a5a61a45-9e94-4b3a-ac82-ae0580db1b1e","description":{"content":"<p>The ID of the invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"invitation"}]}},"response":[{"id":"11866622-1db2-4f47-9b02-63bee7afec1d","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/invites/:invitation/resend","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","invites",":invitation","resend"],"variable":[{"key":"invitation","value":"","description":"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\": \"string\",\n  \"organization_id\": 3349,\n  \"owner_id\": 9977,\n  \"user_id\": 2299,\n  \"email\": \"string\",\n  \"team_id\": 2624,\n  \"number\": \"string\"\n}"}],"_postman_id":"fdfa7c10-2000-42c9-ab6e-7774394b8669"}],"id":"a6a495c2-8232-449f-9499-b2f9828a4250","_postman_id":"a6a495c2-8232-449f-9499-b2f9828a4250","description":""},{"name":"Get details of a specific invitation","id":"5931594f-06bf-43df-b3b2-da002e399f90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/invites/:invitation","description":"<p>REQUIRED SCOPES <code>['organizations-invitations:read']</code><br />Get details of a specific invitation</p>\n","urlObject":{"path":["organization","invites",":invitation"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"3e9e2087-0765-4559-83c3-119365a1a5e7","description":{"content":"<p>ID of the invitation</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"invitation"}]}},"response":[{"id":"26b0e4fd-b097-4d1f-aa9b-a83f1a43fd80","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"2491","description":"ID of the invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 3884,\n  \"email\": \"string\",\n  \"token\": \"string\",\n  \"url\": \"string\",\n  \"owner_id\": 3698,\n  \"organization_id\": 9492,\n  \"user_id\": 9425,\n  \"team_id\": 2565,\n  \"profile_id\": 9254,\n  \"created_at\": \"1994-07-19T14:05:06.593Z\",\n  \"updated_at\": \"1989-11-13T14:41:40.178Z\",\n  \"user\": {\n    \"id\": 2217,\n    \"name\": \"string\",\n    \"email\": \"string\",\n    \"profile\": {\n      \"id\": 3030,\n      \"first_name\": \"string\",\n      \"last_name\": \"string\"\n    }\n  },\n  \"organization\": {\n    \"id\": 2253,\n    \"name\": \"string\"\n  }\n}"},{"id":"10724f26-2d5c-48ec-aa00-c510a502ff80","name":"Unauthenticated","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.3/organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"2491","description":"ID of the invitation"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"96474a7c-68ec-4273-a57e-c30330bf44bf","name":"Forbidden","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.3/organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"2491","description":"ID of the invitation"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"8a0e1b8a-f959-46d0-999e-865a55ea397e","name":"Invitation 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.3/organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"2491","description":"ID of the invitation"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5931594f-06bf-43df-b3b2-da002e399f90"},{"name":"Update the invitation","id":"630e2cf3-a559-4dca-996a-ef7872dc629e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/invites/:invitation","description":"<p>REQUIRED SCOPES <code>['organizations-invitations:write']</code><br />Update the invitation</p>\n","urlObject":{"path":["organization","invites",":invitation"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"a337f957-c36d-43ae-b468-cc530edce52f","description":{"content":"<p>The ID of the invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"invitation"}]}},"response":[{"id":"51a672e9-c47b-4f67-b0a0-a0d46f7e8931","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"","description":"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\": \"string\",\n  \"organization_id\": 3349,\n  \"owner_id\": 9977,\n  \"user_id\": 2299,\n  \"email\": \"string\",\n  \"team_id\": 2624,\n  \"number\": \"string\"\n}"},{"id":"e6b22adc-643d-4d0b-adf6-349557ebb041","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"","description":"The ID of the invitation"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"630e2cf3-a559-4dca-996a-ef7872dc629e"},{"name":"Delete the invitation","id":"9f6ab08d-2241-4704-af7e-04a5afefa0bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.3/organization/invites/:invitation","description":"<p>REQUIRED SCOPES <code>['organizations-invitations:write']</code><br />Delete the invitation</p>\n","urlObject":{"path":["organization","invites",":invitation"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"b4d7fe25-de9d-4ecf-a7fd-559e1675a463","description":{"content":"<p>The ID of the invitation</p>\n","type":"text/plain"},"type":"any","value":"","key":"invitation"}]}},"response":[{"id":"e294e7dd-e012-418f-a5f5-fb1b9f4291ae","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.3/organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"","description":"The ID of the invitation"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6296883d-0fc9-45d0-8d01-7c11b7c1aa43","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.3/organization/invites/:invitation","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","invites",":invitation"],"variable":[{"key":"invitation","value":"","description":"The ID of the invitation"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9f6ab08d-2241-4704-af7e-04a5afefa0bc"}],"id":"2252b164-158f-4617-9aad-04486ec4bc89","_postman_id":"2252b164-158f-4617-9aad-04486ec4bc89","description":""},{"name":"Get organization's invites","id":"be4618d0-4c0f-4152-9478-531f63dfcc5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/invites","description":"<p>REQUIRED SCOPES <code>['organizations-invitations:read']</code><br />Get organization's invites</p>\n","urlObject":{"path":["organization","invites"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"62b395e6-60ad-4fb0-ab9d-a9ae902bd5db","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/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\": \"string\",\n      \"organization_id\": 7671,\n      \"owner_id\": 9249,\n      \"user_id\": 304,\n      \"email\": \"string\",\n      \"team_id\": 7883,\n      \"number\": \"string\"\n    },\n    {\n      \"id\": \"string\",\n      \"organization_id\": 9940,\n      \"owner_id\": 1123,\n      \"user_id\": 9618,\n      \"email\": \"string\",\n      \"team_id\": 1447,\n      \"number\": \"string\"\n    }\n  ],\n  \"invitation_requests\": [\n    {\n      \"id\": \"string\",\n      \"$integration\": \"string\",\n      \"integration_user_id\": 486,\n      \"organization_id\": 4618,\n      \"owner_id\": 1287,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"request_date\": \"string\"\n    },\n    {\n      \"id\": \"string\",\n      \"$integration\": \"string\",\n      \"integration_user_id\": 953,\n      \"organization_id\": 3787,\n      \"owner_id\": 9297,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"request_date\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"be4618d0-4c0f-4152-9478-531f63dfcc5e"},{"name":"Create organization's invite","id":"ef798853-646a-4bb9-bcbd-06a70c336338","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"string\",\n    \"role\": \"string\",\n    \"team_id\": 783,\n    \"team_ids\": [\n      4854,\n      8625\n    ],\n    \"use_organization_settings\": true\n  },\n  {\n    \"email\": \"string\",\n    \"role\": \"string\",\n    \"team_id\": 574,\n    \"team_ids\": [\n      4852,\n      5533\n    ],\n    \"use_organization_settings\": false\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/invites","description":"<p>REQUIRED SCOPES <code>['organizations-invitations:write']</code><br />Create organization's invite</p>\n","urlObject":{"path":["organization","invites"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"06f83f16-4a07-4b71-9e37-a5394e3a5352","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"string\",\n    \"role\": \"string\",\n    \"team_id\": 783,\n    \"team_ids\": [\n      4854,\n      8625\n    ],\n    \"use_organization_settings\": true\n  },\n  {\n    \"email\": \"string\",\n    \"role\": \"string\",\n    \"team_id\": 574,\n    \"team_ids\": [\n      4852,\n      5533\n    ],\n    \"use_organization_settings\": false\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/invites"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"string\",\n    \"organization_id\": 5513,\n    \"owner_id\": 3539,\n    \"user_id\": 1474,\n    \"email\": \"string\",\n    \"team_id\": 4250,\n    \"number\": \"string\",\n    \"use_organization_settings\": true\n  },\n  {\n    \"id\": \"string\",\n    \"organization_id\": 7179,\n    \"owner_id\": 4518,\n    \"user_id\": 8817,\n    \"email\": \"string\",\n    \"team_id\": 5459,\n    \"number\": \"string\",\n    \"use_organization_settings\": false\n  }\n]"},{"id":"2e8d652b-0d94-4383-a527-dfb07c763ac8","name":"Payment error from Stripe","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"string\",\n    \"role\": \"string\",\n    \"team_id\": 783,\n    \"team_ids\": [\n      4854,\n      8625\n    ],\n    \"use_organization_settings\": true\n  },\n  {\n    \"email\": \"string\",\n    \"role\": \"string\",\n    \"team_id\": 574,\n    \"team_ids\": [\n      4852,\n      5533\n    ],\n    \"use_organization_settings\": false\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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  \"errors\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"6782ad14-6e4a-4acb-910d-47f8ed39e814","name":"Unexpected server error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"string\",\n    \"role\": \"string\",\n    \"team_id\": 783,\n    \"team_ids\": [\n      4854,\n      8625\n    ],\n    \"use_organization_settings\": true\n  },\n  {\n    \"email\": \"string\",\n    \"role\": \"string\",\n    \"team_id\": 574,\n    \"team_ids\": [\n      4852,\n      5533\n    ],\n    \"use_organization_settings\": false\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/invites"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    \"string\",\n    \"string\"\n  ]\n}"}],"_postman_id":"ef798853-646a-4bb9-bcbd-06a70c336338"}],"id":"da0779d6-00da-4e6c-a4bb-72d0deeb1139","_postman_id":"da0779d6-00da-4e6c-a4bb-72d0deeb1139","description":""},{"name":"members","item":[{"name":"{member}","item":[{"name":"Update the member","id":"c5fc7663-d2b8-4688-a932-c5c08e677411","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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  \"use_organization_settings\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/members/:member","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Update the member</p>\n","urlObject":{"path":["organization","members",":member"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"c2beada6-2849-4914-9b03-7d67dbb2a9d5","description":{"content":"<p>The ID of the member</p>\n","type":"text/plain"},"type":"any","value":"","key":"member"}]}},"response":[{"id":"71245ed1-c820-4ac0-a969-9c4513faf958","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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  \"use_organization_settings\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/members/:member","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"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\": 2747,\n  \"email\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"role\": \"string\",\n  \"inbox_id\": 317,\n  \"organization_id\": 1568,\n  \"photo_url\": \"string\",\n  \"unread\": 5036,\n  \"number\": \"string\",\n  \"formatted_number\": \"string\",\n  \"isRingEverywhere\": false,\n  \"organizationNumber\": [\n    {\n      \"id\": 9441,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    },\n    {\n      \"id\": 4940,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    }\n  ],\n  \"userPermissions\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"f7ef027b-7274-4525-9527-1b14a68aefa5","name":"Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"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  \"use_organization_settings\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/members/:member","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"The ID of the member"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7893e1c7-fe9b-4e87-bee3-6b9c6d7751f0","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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  \"use_organization_settings\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/members/:member","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"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\": \"string\"\n}"}],"_postman_id":"c5fc7663-d2b8-4688-a932-c5c08e677411"},{"name":"Delete the member","id":"7e00e6b2-d846-446d-9861-3c8835bc6865","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/members/:member","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Delete the member</p>\n","urlObject":{"path":["organization","members",":member"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"1cc9762c-6021-4c71-a527-bcd26e8582ec","description":{"content":"<p>The ID of the member</p>\n","type":"text/plain"},"type":"any","value":"","key":"member"}]}},"response":[{"id":"b6379fd1-200e-4d60-9b7e-0c2065fb934a","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/members/:member","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"The ID of the member"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d50c3790-3e3c-4b4c-a421-2832f6553ff0","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/members/:member","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"The ID of the member"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1c14c60e-ad09-48b7-9c47-2011cfc61360","name":"Unprocessable Content","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/members/:member","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","members",":member"],"variable":[{"key":"member","value":"","description":"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":"7e00e6b2-d846-446d-9861-3c8835bc6865"}],"id":"0ec7746c-bb3a-4feb-8356-cdab9b316ea5","_postman_id":"0ec7746c-bb3a-4feb-8356-cdab9b316ea5","description":""},{"name":"logout","item":[{"name":"Logout organization members","id":"dd9fa8af-ada7-4db0-b6b1-41ff2a17dc32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"all\": true,\n  \"ids\": [\n    5823,\n    3130\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/members/logout","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Logout organization members</p>\n","urlObject":{"path":["organization","members","logout"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"d2431653-440c-4752-8925-bd7d24d2a813","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"all\": true,\n  \"ids\": [\n    5823,\n    3130\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/members/logout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"string\"\n}"},{"id":"d33e97b8-cdbf-4a39-924f-a297e98f9ccc","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"all\": true,\n  \"ids\": [\n    5823,\n    3130\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/members/logout"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"44481b2e-b075-46ff-b9d8-cfe061883163","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"all\": true,\n  \"ids\": [\n    5823,\n    3130\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/members/logout"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"74776f4e-89b6-4e0b-aa9e-156401cf12c7","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"all\": true,\n  \"ids\": [\n    5823,\n    3130\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/members/logout"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dd9fa8af-ada7-4db0-b6b1-41ff2a17dc32"}],"id":"b8d34a62-9d20-47ce-bfd4-d205c77ae136","_postman_id":"b8d34a62-9d20-47ce-bfd4-d205c77ae136","description":""},{"name":"Get members","id":"07e64b9e-17a4-4856-bc27-8f87575b5f8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/members","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Get members</p>\n","urlObject":{"path":["organization","members"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"cf698c53-6690-4198-b4e4-841704cd7a7b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/members"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5067,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5004,\n    \"organization_id\": 2563,\n    \"photo_url\": \"string\",\n    \"unread\": 3245,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 3041,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 641,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  {\n    \"id\": 8208,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5571,\n    \"organization_id\": 4996,\n    \"photo_url\": \"string\",\n    \"unread\": 6717,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": true,\n    \"organizationNumber\": [\n      {\n        \"id\": 6565,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1923,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n]"}],"_postman_id":"07e64b9e-17a4-4856-bc27-8f87575b5f8f"}],"id":"7d5948c3-7694-4563-85f2-ce784818a54e","_postman_id":"7d5948c3-7694-4563-85f2-ce784818a54e","description":""},{"name":"update-messaging-canada-only","item":[{"name":"Update messaging Canada-only setting for the organization","id":"3f3fe1bf-6ae7-45aa-a8bb-997eae433d99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"is_canada_only\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/update-messaging-canada-only","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Update messaging Canada-only setting for the organization</p>\n","urlObject":{"path":["organization","update-messaging-canada-only"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"71ae2802-ffbc-469a-a0d6-e09bb1c5de7f","name":"Setting updated successfully","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_canada_only\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/update-messaging-canada-only"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"organization_id\": 1931,\n  \"is_messaging_canada_only\": false\n}"},{"id":"3154963c-6da1-4dd4-812c-2a7a3ff67576","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_canada_only\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/update-messaging-canada-only"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b93830f5-bbf8-4f80-bfa5-2f158cd667b0","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_canada_only\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/update-messaging-canada-only"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"52355bff-5672-46cd-8367-4ce083ae6cfa","name":"Validation error or update failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_canada_only\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/update-messaging-canada-only"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"is_canada_only\": \"string\"\n}"}],"_postman_id":"3f3fe1bf-6ae7-45aa-a8bb-997eae433d99"}],"id":"e3edc95f-59ed-4bf7-b253-ffc2a1f938b7","_postman_id":"e3edc95f-59ed-4bf7-b253-ffc2a1f938b7","description":""},{"name":"multiorganizations","item":[{"name":"list","item":[{"name":"Get list of organizations for a profile","id":"7c4725e3-c60a-4392-8a03-1debcff352cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/multiorganizations/list?search=string&sortOrder=string","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Get list of organizations for a profile</p>\n","urlObject":{"path":["organization","multiorganizations","list"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"key":"search","value":"string"},{"key":"sortOrder","value":"string"}],"variable":[]}},"response":[{"id":"7313a164-7e20-4800-91b5-03bf6a8fd0ff","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/multiorganizations/list?search=string&sortOrder=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","multiorganizations","list"],"query":[{"key":"search","value":"string"},{"key":"sortOrder","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 2706,\n      \"owner_id\": 2229,\n      \"number_vendor_id\": 8313,\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 6796,\n      \"owner_id\": 8566,\n      \"number_vendor_id\": 8266,\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ]\n}"},{"id":"391d6495-1be3-4a64-b28c-1806426d74ab","name":"Unauthenticated","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.3/organization/multiorganizations/list?search=string&sortOrder=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","multiorganizations","list"],"query":[{"key":"search","value":"string"},{"key":"sortOrder","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"bf8cefd1-29c4-4a89-9fb1-43e83a13b38f","name":"Forbidden","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.3/organization/multiorganizations/list?search=string&sortOrder=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","multiorganizations","list"],"query":[{"key":"search","value":"string"},{"key":"sortOrder","value":"string"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6490ee58-3d88-44ea-8b69-94bce40cf9e9","name":"Validation 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.3/organization/multiorganizations/list?search=string&sortOrder=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","multiorganizations","list"],"query":[{"key":"search","value":"string"},{"key":"sortOrder","value":"string"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7c4725e3-c60a-4392-8a03-1debcff352cd"}],"id":"a004afa2-82b6-4d1b-a621-ceb59115d33d","_postman_id":"a004afa2-82b6-4d1b-a621-ceb59115d33d","description":""}],"id":"769e8eb8-7be6-4904-a85c-5c5d89a5ebfa","_postman_id":"769e8eb8-7be6-4904-a85c-5c5d89a5ebfa","description":""},{"name":"number","item":[{"name":"Get Number","id":"2c736e70-c8ee-438f-a8e9-0aae1560c199","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/number","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Get Number</p>\n","urlObject":{"path":["organization","number"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"9c30d3c9-7a87-4559-8289-df5a16836cae","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/number"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"city\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"disabled\": true,\n  \"formattedNumber\": \"string\",\n  \"formatted_number\": \"string\",\n  \"has_profile\": true,\n  \"voice\": false,\n  \"voice_outbound\": true,\n  \"use_organization_call_settings\": true,\n  \"id\": 373,\n  \"is_aircall\": true,\n  \"is_toll_free\": true,\n  \"is_transcribe_voice_to_text\": true,\n  \"is_landline\": 9700,\n  \"is_zipwhip\": 7020,\n  \"landline\": \"string\",\n  \"mms\": true,\n  \"national_number\": \"string\",\n  \"number\": \"string\",\n  \"number_vendor_id\": 3920,\n  \"organization_id\": 8478,\n  \"short_code\": 2227,\n  \"state\": \"string\",\n  \"toll_free_verification_sid\": \"string\",\n  \"type\": \"string\",\n  \"verified_status\": \"string\",\n  \"area_code\": [\n    {\n      \"area_code\": \"string\",\n      \"country_code\": \"string\",\n      \"id\": 1556,\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"time_zone\": \"string\"\n    },\n    {\n      \"area_code\": \"string\",\n      \"country_code\": \"string\",\n      \"id\": 318,\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"time_zone\": \"string\"\n    }\n  ],\n  \"number_vendor\": [\n    {\n      \"id\": 9281,\n      \"is_active\": true,\n      \"key\": \"string\",\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 7579,\n      \"is_active\": true,\n      \"key\": \"string\",\n      \"name\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"2c736e70-c8ee-438f-a8e9-0aae1560c199"}],"id":"82048af7-4931-47e8-bf96-556abadbcf1f","_postman_id":"82048af7-4931-47e8-bf96-556abadbcf1f","description":""},{"name":"phone-checker","item":[{"name":"enable","item":[{"name":"Enable phone checker","id":"598b2f81-4220-4a6c-be09-d01864156572","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/phone-checker/enable","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Enable phone checker</p>\n","urlObject":{"path":["organization","phone-checker","enable"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"bb175d8c-a750-4e1b-b0e9-592dfd7a6d68","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/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\": 6965,\n  \"is_active\": true,\n  \"enabled_at\": \"string\"\n}"}],"_postman_id":"598b2f81-4220-4a6c-be09-d01864156572"}],"id":"9af91d03-5ad8-4966-90e0-217653d3764a","_postman_id":"9af91d03-5ad8-4966-90e0-217653d3764a","description":""},{"name":"disable","item":[{"name":"Disable phone checker","id":"b825d313-0ebf-4352-b55c-3d1f5b828223","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/phone-checker/disable","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Disable phone checker</p>\n","urlObject":{"path":["organization","phone-checker","disable"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"d5979eb7-73ba-4e7e-856d-5039b73e2802","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/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\": 6965,\n  \"is_active\": true,\n  \"enabled_at\": \"string\"\n}"}],"_postman_id":"b825d313-0ebf-4352-b55c-3d1f5b828223"}],"id":"b2ffb844-1c88-4a48-91b9-47e02f4fb6d1","_postman_id":"b2ffb844-1c88-4a48-91b9-47e02f4fb6d1","description":""}],"id":"d176c31b-f7d5-44d6-a57a-11b8e5363bf5","_postman_id":"d176c31b-f7d5-44d6-a57a-11b8e5363bf5","description":""},{"name":"profile","item":[{"name":"Update organization profile","id":"0d16e809-79c0-452d-8161-1c49d8f358ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Company\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/profile","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Update organization profile</p>\n","urlObject":{"path":["organization","profile"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"149a1c98-cacf-4512-bbd6-72c602728405","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Company\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 5401,\n  \"owner_id\": 6898,\n  \"number_vendor_id\": 7717,\n  \"name\": \"string\",\n  \"photo_url\": \"string\"\n}"},{"id":"10f73990-9326-4461-bdbf-740f339102ca","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Company\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/profile"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ffdd7d10-035f-46dd-b80d-32c7ed8c4304","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Test Company\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/profile"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": [\n    \"string\",\n    \"string\"\n  ]\n}"}],"_postman_id":"0d16e809-79c0-452d-8161-1c49d8f358ba"}],"id":"0a2528f5-2b22-47d3-9af3-f2c178660ac5","_postman_id":"0a2528f5-2b22-47d3-9af3-f2c178660ac5","description":""},{"name":"settings","item":[{"name":"Get organization's settings","id":"1a717da6-5e7c-4e78-8c64-92d7be2d3e28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/settings","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Get organization's settings</p>\n","urlObject":{"path":["organization","settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"1ef03f55-2cba-40ac-a905-502bce1aa02b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"0\": [\n    {\n      \"created_at\": \"string\",\n      \"description\": \"string\",\n      \"key\": \"string\",\n      \"updated_at\": \"string\",\n      \"name\": \"string\",\n      \"id\": 8936,\n      \"default_settings\": [\n        {\n          \"active\": true\n        },\n        {\n          \"active\": false\n        }\n      ],\n      \"settings\": [\n        {\n          \"active\": false\n        },\n        {\n          \"active\": true\n        }\n      ]\n    },\n    {\n      \"created_at\": \"string\",\n      \"description\": \"string\",\n      \"key\": \"string\",\n      \"updated_at\": \"string\",\n      \"name\": \"string\",\n      \"id\": 4486,\n      \"default_settings\": [\n        {\n          \"active\": false\n        },\n        {\n          \"active\": true\n        }\n      ],\n      \"settings\": [\n        {\n          \"active\": true\n        },\n        {\n          \"active\": false\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"1a717da6-5e7c-4e78-8c64-92d7be2d3e28"},{"name":"Update organization's settings","id":"5561054c-456c-4aaa-b418-9f9bfbd661c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PATCH","header":[],"url":"https://api.salesmessage.com/pub/v2.3/organization/settings?featureKey=string&settingsKey=string&value=string&user=2491","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Update organization's settings</p>\n","urlObject":{"path":["organization","settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Featured Key</p>\n","type":"text/plain"},"key":"featureKey","value":"string"},{"description":{"content":"<p>Settings Key</p>\n","type":"text/plain"},"key":"settingsKey","value":"string"},{"description":{"content":"<p>Value</p>\n","type":"text/plain"},"key":"value","value":"string"},{"description":{"content":"<p>User ID</p>\n","type":"text/plain"},"key":"user","value":"2491"}],"variable":[]}},"response":[{"id":"1837e4de-6487-4621-91fc-a2500458ca11","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.3/organization/settings?featureKey=string&settingsKey=string&value=string&user=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","settings"],"query":[{"description":"Featured Key","key":"featureKey","value":"string"},{"description":"Settings Key","key":"settingsKey","value":"string"},{"description":"Value","key":"value","value":"string"},{"description":"User ID","key":"user","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5561054c-456c-4aaa-b418-9f9bfbd661c4"}],"id":"70e05476-668e-4c02-8593-8575d72668d5","_postman_id":"70e05476-668e-4c02-8593-8575d72668d5","description":""},{"name":"subscription","item":[{"name":"Get Subscription","id":"6abf3ad4-221d-48fd-8b6f-0f125978eb99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/subscription","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Get Subscription</p>\n","urlObject":{"path":["organization","subscription"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"4a98981b-6f90-451c-8dc2-c0041cbc4604","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/subscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"created_at\": \"string\",\n  \"id\": 7648,\n  \"numbers\": [\n    {\n      \"left\": 7231,\n      \"total\": 1551,\n      \"used\": 2716\n    },\n    {\n      \"left\": 328,\n      \"total\": 5258,\n      \"used\": 4729\n    }\n  ],\n  \"period_ends_at\": \"string\",\n  \"plan\": [\n    {\n      \"active\": false,\n      \"additional_credit_amount\": 4928.452097829873,\n      \"custom\": true,\n      \"id\": 4682,\n      \"interval\": \"string\",\n      \"meta\": \"string\",\n      \"name\": \"string\",\n      \"price\": 6208,\n      \"seats_plan_id\": \"string\",\n      \"shared_inboxes_plan_id\": \"string\",\n      \"features\": [\n        {\n          \"broadcasts-access\": true,\n          \"broadcasts-long-code\": 2235,\n          \"broadcasts-short-code\": 706,\n          \"broadcasts-toll-free\": 3798,\n          \"broadcasts-mobile\": 187,\n          \"business-hours-access\": true,\n          \"canned-messages\": true,\n          \"integrations-activecampaign\": true,\n          \"integrations-aircall\": true,\n          \"integrations-google\": true,\n          \"integrations-hubspot\": true,\n          \"integrations-infusionsoft\": false,\n          \"integrations-intercom\": false,\n          \"integrations-marketo\": true,\n          \"integrations-pipedrive\": true,\n          \"integrations-salesforce\": true,\n          \"integrations-slack\": true,\n          \"integrations-zapier\": true,\n          \"message-receive-mms\": false,\n          \"message-send-mms\": true,\n          \"message-send-scheduled\": false,\n          \"shared-inboxes\": false,\n          \"tags-access\": true,\n          \"triggers-access\": false,\n          \"triggers-short-code\": false\n        },\n        {\n          \"broadcasts-access\": false,\n          \"broadcasts-long-code\": 5444,\n          \"broadcasts-short-code\": 2857,\n          \"broadcasts-toll-free\": 1658,\n          \"broadcasts-mobile\": 9552,\n          \"business-hours-access\": true,\n          \"canned-messages\": false,\n          \"integrations-activecampaign\": true,\n          \"integrations-aircall\": false,\n          \"integrations-google\": true,\n          \"integrations-hubspot\": true,\n          \"integrations-infusionsoft\": false,\n          \"integrations-intercom\": false,\n          \"integrations-marketo\": false,\n          \"integrations-pipedrive\": false,\n          \"integrations-salesforce\": true,\n          \"integrations-slack\": false,\n          \"integrations-zapier\": false,\n          \"message-receive-mms\": false,\n          \"message-send-mms\": true,\n          \"message-send-scheduled\": true,\n          \"shared-inboxes\": true,\n          \"tags-access\": true,\n          \"triggers-access\": true,\n          \"triggers-short-code\": true\n        }\n      ]\n    },\n    {\n      \"active\": false,\n      \"additional_credit_amount\": 4450.078594649628,\n      \"custom\": true,\n      \"id\": 9658,\n      \"interval\": \"string\",\n      \"meta\": \"string\",\n      \"name\": \"string\",\n      \"price\": 487,\n      \"seats_plan_id\": \"string\",\n      \"shared_inboxes_plan_id\": \"string\",\n      \"features\": [\n        {\n          \"broadcasts-access\": true,\n          \"broadcasts-long-code\": 9067,\n          \"broadcasts-short-code\": 4367,\n          \"broadcasts-toll-free\": 5907,\n          \"broadcasts-mobile\": 2583,\n          \"business-hours-access\": false,\n          \"canned-messages\": true,\n          \"integrations-activecampaign\": true,\n          \"integrations-aircall\": false,\n          \"integrations-google\": true,\n          \"integrations-hubspot\": false,\n          \"integrations-infusionsoft\": true,\n          \"integrations-intercom\": false,\n          \"integrations-marketo\": true,\n          \"integrations-pipedrive\": false,\n          \"integrations-salesforce\": true,\n          \"integrations-slack\": true,\n          \"integrations-zapier\": false,\n          \"message-receive-mms\": false,\n          \"message-send-mms\": true,\n          \"message-send-scheduled\": true,\n          \"shared-inboxes\": false,\n          \"tags-access\": true,\n          \"triggers-access\": false,\n          \"triggers-short-code\": false\n        },\n        {\n          \"broadcasts-access\": true,\n          \"broadcasts-long-code\": 6629,\n          \"broadcasts-short-code\": 777,\n          \"broadcasts-toll-free\": 439,\n          \"broadcasts-mobile\": 3825,\n          \"business-hours-access\": true,\n          \"canned-messages\": true,\n          \"integrations-activecampaign\": false,\n          \"integrations-aircall\": true,\n          \"integrations-google\": false,\n          \"integrations-hubspot\": true,\n          \"integrations-infusionsoft\": true,\n          \"integrations-intercom\": false,\n          \"integrations-marketo\": false,\n          \"integrations-pipedrive\": false,\n          \"integrations-salesforce\": true,\n          \"integrations-slack\": true,\n          \"integrations-zapier\": false,\n          \"message-receive-mms\": true,\n          \"message-send-mms\": true,\n          \"message-send-scheduled\": true,\n          \"shared-inboxes\": false,\n          \"tags-access\": false,\n          \"triggers-access\": false,\n          \"triggers-short-code\": true\n        }\n      ]\n    }\n  ],\n  \"dlc_status\": \"string\",\n  \"first_promoter_ref_id\": \"string\",\n  \"franchise\": true,\n  \"hasTwilioNumbers\": false,\n  \"hash_id\": \"string\",\n  \"is_agency\": true,\n  \"ivr_greetings\": [\n    {\n      \"0\": [\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 4640,\n          \"name\": \"string\",\n          \"organization_id\": 4460,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        },\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 7514,\n          \"name\": \"string\",\n          \"organization_id\": 2047,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 8726,\n          \"name\": \"string\",\n          \"organization_id\": 9640,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        },\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 1812,\n          \"name\": \"string\",\n          \"organization_id\": 511,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"name\": \"string\",\n  \"trial_credits\": 5289,\n  \"owner_id\": 7796,\n  \"trial_ends_at\": \"string\",\n  \"two_fa_enabled\": false,\n  \"voicemail_greetings\": [\n    {\n      \"0\": [\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 7890,\n          \"name\": \"string\",\n          \"organization_id\": 1721,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        },\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 5601,\n          \"name\": \"string\",\n          \"organization_id\": 6116,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        }\n      ]\n    },\n    {\n      \"0\": [\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 1486,\n          \"name\": \"string\",\n          \"organization_id\": 4521,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        },\n        {\n          \"content_type\": \"string\",\n          \"created_at\": \"string\",\n          \"id\": 8385,\n          \"name\": \"string\",\n          \"organization_id\": 9227,\n          \"updated_at\": \"string\",\n          \"url\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"number_vendor\": [\n    {\n      \"key\": \"string\"\n    },\n    {\n      \"key\": \"string\"\n    }\n  ],\n  \"organization_call\": [\n    {\n      \"is_active\": false,\n      \"is_active_inbound\": false\n    },\n    {\n      \"is_active\": false,\n      \"is_active_inbound\": true\n    }\n  ]\n}"}],"_postman_id":"6abf3ad4-221d-48fd-8b6f-0f125978eb99"}],"id":"cf0ae3c5-cb7d-4121-9187-1162a8258966","_postman_id":"cf0ae3c5-cb7d-4121-9187-1162a8258966","description":""},{"name":"permissions","item":[{"name":"save","item":[{"name":"Save role permissions","id":"45515528-72dd-42c9-8b3d-7c09cc4deec4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"role\": \"member\",\n  \"permissions\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/permissions/save","description":"<p>REQUIRED SCOPES <code>['role-permissions:write']</code><br />Save role permissions</p>\n","urlObject":{"path":["organization","permissions","save"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"3eb7154b-037a-4168-801f-4763e085c7da","name":"Role permissions saved successfully","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"role\": \"member\",\n  \"permissions\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/permissions/save"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Role permissions saved successfully\",\n  \"data\": {}\n}"},{"id":"79224dd5-845f-429c-911f-2d39e3219d75","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"role\": \"member\",\n  \"permissions\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/permissions/save"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Can't save role permissions! Please contact support.\"\n}"}],"_postman_id":"45515528-72dd-42c9-8b3d-7c09cc4deec4"}],"id":"5b08af6f-a6ef-4281-aa13-53530d8c3f4f","_postman_id":"5b08af6f-a6ef-4281-aa13-53530d8c3f4f","description":""}],"id":"1bb3299d-dadf-48ca-8601-cd1c46750512","_postman_id":"1bb3299d-dadf-48ca-8601-cd1c46750512","description":""},{"name":"call-settings","item":[{"name":"{title}","item":[{"name":"Save call settings","id":"c35295d7-4579-49a2-9553-5ba729d33bc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"level\": \"string\",\n  \"level_id\": 4872,\n  \"organization_id\": 3553,\n  \"settings\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/organization/call-settings/:title","description":"<p>REQUIRED SCOPES <code>['organizations:write']</code><br />Save call settings</p>\n","urlObject":{"path":["organization","call-settings",":title"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"59126c4c-35f2-41ef-8ea5-16a6deb1f26b","description":{"content":"<p>The title of the settings</p>\n","type":"text/plain"},"type":"any","value":"call-distribution","key":"title"}]}},"response":[{"id":"4d2d44c8-4555-4d3f-98cc-f6fcab029404","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"level\": \"string\",\n  \"level_id\": 4872,\n  \"organization_id\": 3553,\n  \"settings\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/call-settings/:title","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-settings",":title"],"variable":[{"key":"title","value":"call-distribution","description":"The title of the settings"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2720,\n  \"title\": \"string\",\n  \"organization_id\": 5579,\n  \"is_active\": false,\n  \"settings\": {}\n}"},{"id":"0f3012f9-62b8-44ce-a532-d6533c5c5cfe","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"level\": \"string\",\n  \"level_id\": 4872,\n  \"organization_id\": 3553,\n  \"settings\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/call-settings/:title","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-settings",":title"],"variable":[{"key":"title","value":"call-distribution","description":"The title of the settings"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e0a1a81e-0ab1-4ba8-b79a-6570d633724a","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"level\": \"string\",\n  \"level_id\": 4872,\n  \"organization_id\": 3553,\n  \"settings\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/call-settings/:title","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-settings",":title"],"variable":[{"key":"title","value":"call-distribution","description":"The title of the settings"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a169a98c-2f7f-4f02-8cea-c1da94a62669","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"level\": \"string\",\n  \"level_id\": 4872,\n  \"organization_id\": 3553,\n  \"settings\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/call-settings/:title","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-settings",":title"],"variable":[{"key":"title","value":"call-distribution","description":"The title of the settings"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c35295d7-4579-49a2-9553-5ba729d33bc6"}],"id":"c63a4819-e658-45a5-813d-5143493c5f17","_postman_id":"c63a4819-e658-45a5-813d-5143493c5f17","description":""},{"name":"Get call settings","id":"37b65c67-35b6-4943-9e51-2ed0d2210193","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/organization/call-settings?level=string&level_id=2491&organization_id=2491","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Get call settings</p>\n","urlObject":{"path":["organization","call-settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Level of settings (e.g., 'organization', 'team', 'user')</p>\n","type":"text/plain"},"key":"level","value":"string"},{"description":{"content":"<p>ID of the level entity</p>\n","type":"text/plain"},"key":"level_id","value":"2491"},{"description":{"content":"<p>ID of the organization</p>\n","type":"text/plain"},"key":"organization_id","value":"2491"}],"variable":[]}},"response":[{"id":"65e43277-13db-450b-9721-ad1149c57fa7","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/organization/call-settings?level=string&level_id=2491&organization_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-settings"],"query":[{"description":"Level of settings (e.g., 'organization', 'team', 'user')","key":"level","value":"string"},{"description":"ID of the level entity","key":"level_id","value":"2491"},{"description":"ID of the organization","key":"organization_id","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"key_0\": {},\n  \"key_1\": {}\n}"},{"id":"bf2ec906-384d-4777-abed-2df9eefd744c","name":"Unauthenticated","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.3/organization/call-settings?level=string&level_id=2491&organization_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-settings"],"query":[{"description":"Level of settings (e.g., 'organization', 'team', 'user')","key":"level","value":"string"},{"description":"ID of the level entity","key":"level_id","value":"2491"},{"description":"ID of the organization","key":"organization_id","value":"2491"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"19eb4384-493a-4f88-a451-d045ce6f2f60","name":"Forbidden","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.3/organization/call-settings?level=string&level_id=2491&organization_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-settings"],"query":[{"description":"Level of settings (e.g., 'organization', 'team', 'user')","key":"level","value":"string"},{"description":"ID of the level entity","key":"level_id","value":"2491"},{"description":"ID of the organization","key":"organization_id","value":"2491"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"89ff2913-ae53-4b7f-9092-6ed81c18b245","name":"Validation 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.3/organization/call-settings?level=string&level_id=2491&organization_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["organization","call-settings"],"query":[{"description":"Level of settings (e.g., 'organization', 'team', 'user')","key":"level","value":"string"},{"description":"ID of the level entity","key":"level_id","value":"2491"},{"description":"ID of the organization","key":"organization_id","value":"2491"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"37b65c67-35b6-4943-9e51-2ed0d2210193"}],"id":"99736fbc-c127-443e-80f2-2d0f5919acfb","_postman_id":"99736fbc-c127-443e-80f2-2d0f5919acfb","description":""}],"id":"549c04db-c47f-4852-b598-df5f1e7fdc0d","_postman_id":"549c04db-c47f-4852-b598-df5f1e7fdc0d","description":""},{"name":"blacklist","item":[{"name":"check","item":[{"name":"Check if a message is blacklisted","id":"3b847131-ba39-4994-b4d8-e46b340e7f3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"string\",\n  \"types\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/blacklist/check","description":"<p>REQUIRED SCOPES <code>['messages:read']</code></p>\n","urlObject":{"path":["blacklist","check"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"c591615e-94d3-41ed-a76c-dbf333ce41fd","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"string\",\n  \"types\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/blacklist/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"is_blacklisted\": true\n}"},{"id":"6173b6dc-3d5d-4eb0-841d-ae766073baec","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"string\",\n  \"types\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/blacklist/check"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e988ad3a-181a-41e3-bffd-a35be4d592b8","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"string\",\n  \"types\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/blacklist/check"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fe848762-a5d9-4ccc-8ec4-75f7329a1517","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"message\": \"string\",\n  \"types\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/blacklist/check"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3b847131-ba39-4994-b4d8-e46b340e7f3c"}],"id":"14742f8e-3e3e-4295-868e-5f41ded73813","_postman_id":"14742f8e-3e3e-4295-868e-5f41ded73813","description":""}],"id":"5c100f79-bc1a-44d0-8a6a-d45d01556781","_postman_id":"5c100f79-bc1a-44d0-8a6a-d45d01556781","description":""},{"name":"tags","item":[{"name":"contact","item":[{"name":"{contact}","item":[{"name":"{tag}","item":[{"name":"Add tag for contact","id":"09dbb75a-d247-46be-86b6-cb8c71da2c54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/tags/contact/:contact/:tag","description":"<p>REQUIRED SCOPES <code>['tags:write']</code><br />Add tag for contact</p>\n","urlObject":{"path":["tags","contact",":contact",":tag"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"e6c2de61-67ae-40be-91c3-67acdaee6280","description":{"content":"<p>The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"string","key":"contact"},{"id":"23abfa8c-7c5a-4e96-b256-8456df91994a","description":{"content":"<p>The ID of the Tag</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tag"}]}},"response":[{"id":"c7d43413-a4db-4c0c-9a80-f8125c244623","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"string","description":"The ID of the Contact"},{"key":"tag","value":"string","description":"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\": \"string\",\n  \"message\": \"string\"\n}"},{"id":"ccd8bc5d-ae8a-461f-9cfd-ac3afcf67c12","name":"Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"string","description":"The ID of the Contact"},{"key":"tag","value":"string","description":"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":"c18f6aa6-3a65-477b-a3b6-0956f0cff8d3","name":"Not Found","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"string","description":"The ID of the Contact"},{"key":"tag","value":"string","description":"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":"09dbb75a-d247-46be-86b6-cb8c71da2c54"},{"name":"Remove tag from contact","id":"9099ef6f-7d77-451d-9820-b8125692d626","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/tags/contact/:contact/:tag","description":"<p>REQUIRED SCOPES <code>['tags:write']</code><br />Remove tag from contact</p>\n","urlObject":{"path":["tags","contact",":contact",":tag"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"8c32557e-f2f7-40a8-9a7e-3e139f7bb53d","description":{"content":"<p>The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"string","key":"contact"},{"id":"f8165ea4-6540-4992-ae2f-c11a59b9c79a","description":{"content":"<p>The ID of the Tag</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tag"}]}},"response":[{"id":"52811dd1-10b7-43ea-8888-48ee1d4d7e52","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"string","description":"The ID of the Contact"},{"key":"tag","value":"string","description":"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\": \"string\",\n  \"message\": \"string\"\n}"},{"id":"53d5264c-1136-4996-ae09-ff710455c471","name":"Forbidden","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"string","description":"The ID of the Contact"},{"key":"tag","value":"string","description":"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":"1012d569-0539-4190-9213-1d339f44ad63","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/contact/:contact/:tag","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags","contact",":contact",":tag"],"variable":[{"key":"contact","value":"string","description":"The ID of the Contact"},{"key":"tag","value":"string","description":"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":"9099ef6f-7d77-451d-9820-b8125692d626"}],"id":"e52eb27b-1db5-40b6-aace-019cfdf47594","_postman_id":"e52eb27b-1db5-40b6-aace-019cfdf47594","description":""},{"name":"create","item":[{"name":"Create tag for contact","id":"fbb19663-00be-4b99-bd31-d885f00461ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/tags/contact/:contact/create?label=string","description":"<p>REQUIRED SCOPES <code>['tags:write']</code><br />Create tag for contact</p>\n","urlObject":{"path":["tags","contact",":contact","create"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Tag label</p>\n","type":"text/plain"},"key":"label","value":"string"}],"variable":[{"id":"2d8cfbe8-9e66-415e-bc1d-020136fbd55a","description":{"content":"<p>The ID of the Contact</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"contact"}]}},"response":[{"id":"a9b09e6b-78f1-4235-b1fa-3582ba247de8","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/contact/:contact/create?label=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags","contact",":contact","create"],"query":[{"description":"Tag label","key":"label","value":"string"}],"variable":[{"key":"contact","value":"2491","description":"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\": 3438,\n  \"owner_id\": 385,\n  \"organization_id\": 8836,\n  \"label\": \"string\",\n  \"name\": \"string\",\n  \"type\": \"string\",\n  \"classname\": \"string\"\n}"}],"_postman_id":"fbb19663-00be-4b99-bd31-d885f00461ba"}],"id":"e535711e-32f6-4ef6-9678-4f5454c1bfaf","_postman_id":"e535711e-32f6-4ef6-9678-4f5454c1bfaf","description":""}],"id":"6075dfc6-6946-404d-bd53-8007952ffd45","_postman_id":"6075dfc6-6946-404d-bd53-8007952ffd45","description":""}],"id":"bf66569d-1633-4a84-9f2f-dcbe2337d17b","_postman_id":"bf66569d-1633-4a84-9f2f-dcbe2337d17b","description":""},{"name":"{tag}","item":[{"name":"Get tag","id":"7158100f-7769-45e7-a2d4-b50a56486e62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/tags/:tag","description":"<p>REQUIRED SCOPES <code>['tags:read']</code><br />Get tag</p>\n","urlObject":{"path":["tags",":tag"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"dc016d07-d0b1-4a44-8e54-90ddfc8f7bf0","description":{"content":"<p>The ID of the Tag</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tag"}]}},"response":[{"id":"065614e5-d72d-4b68-b33a-1a2f7825eeab","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/:tag","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags",":tag"],"variable":[{"key":"tag","value":"string","description":"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\": 3438,\n  \"owner_id\": 385,\n  \"organization_id\": 8836,\n  \"label\": \"string\",\n  \"name\": \"string\",\n  \"type\": \"string\",\n  \"classname\": \"string\"\n}"}],"_postman_id":"7158100f-7769-45e7-a2d4-b50a56486e62"},{"name":"Update tag","id":"8bd6f655-c641-47c9-9382-2b160e24249e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/tags/:tag?label=string","description":"<p>REQUIRED SCOPES <code>['tags:write']</code><br />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.3"],"query":[{"description":{"content":"<p>Tag label</p>\n","type":"text/plain"},"key":"label","value":"string"}],"variable":[{"id":"39f0753c-2b0c-4f62-9b70-ddc71bb1186d","description":{"content":"<p>Tag id</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"tag"}]}},"response":[{"id":"7113f8aa-772a-4659-aec6-4310874ea236","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/:tag?label=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags",":tag"],"query":[{"description":"Tag label","key":"label","value":"string"}],"variable":[{"key":"tag","value":"2491","description":"Tag id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 3438,\n  \"owner_id\": 385,\n  \"organization_id\": 8836,\n  \"label\": \"string\",\n  \"name\": \"string\",\n  \"type\": \"string\",\n  \"classname\": \"string\"\n}"}],"_postman_id":"8bd6f655-c641-47c9-9382-2b160e24249e"},{"name":"Delete a tag","id":"d260070c-7e65-4027-8319-efdbe6419973","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/tags/:tag","description":"<p>REQUIRED SCOPES <code>['tags:write']</code><br />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.3"],"query":[],"variable":[{"id":"1723d6dd-8f48-4a7f-85d9-daf40e711557","description":{"content":"<p>Tag id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"tag"}]}},"response":[{"id":"8b9d1fed-78f4-4ed7-9301-8612c82ed2b7","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/:tag","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags",":tag"],"variable":[{"key":"tag","value":"1","description":"Tag id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\",\n  \"message\": \"string\"\n}"},{"id":"7d0c1cd4-d4dd-43ce-872c-84edf97de0d6","name":"Organization not found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/:tag","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags",":tag"],"variable":[{"key":"tag","value":"1","description":"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":"d260070c-7e65-4027-8319-efdbe6419973"}],"id":"1c9bf1e1-17c9-4c46-9a4c-bdbdef4ec645","_postman_id":"1c9bf1e1-17c9-4c46-9a4c-bdbdef4ec645","description":""},{"name":"paginated","item":[{"name":"Get tags paginated","id":"212c45fa-e6bc-4d30-844d-e5972075d94c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/tags/paginated?sortBy=string&sortOrder=asc&page=1&search=string&exclude[]=1786&exclude[]=1861&ids[]=1786&ids[]=1861&length=10","description":"<p>REQUIRED SCOPES <code>['tags:read']</code><br />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","paginated"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Sort by field (name, label, etc)</p>\n","type":"text/plain"},"key":"sortBy","value":"string"},{"description":{"content":"<p>Sorting order</p>\n","type":"text/plain"},"key":"sortOrder","value":"asc"},{"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":"string"},{"description":{"content":"<p>The IDs of the Tags to exclude from searching</p>\n","type":"text/plain"},"key":"exclude[]","value":"1786"},{"description":{"content":"<p>The IDs of the Tags to exclude from searching</p>\n","type":"text/plain"},"key":"exclude[]","value":"1861"},{"description":{"content":"<p>The IDs of the Tags to include</p>\n","type":"text/plain"},"key":"ids[]","value":"1786"},{"description":{"content":"<p>The IDs of the Tags to include</p>\n","type":"text/plain"},"key":"ids[]","value":"1861"},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"length","value":"10"}],"variable":[]}},"response":[{"id":"555df5bc-04a8-43f5-bf8e-78750565dc2f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/paginated?sortBy=string&sortOrder=asc&page=1&search=string&exclude[]=1861&ids[]=1861&length=10","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags","paginated"],"query":[{"description":"Sort by field (name, label, etc)","key":"sortBy","value":"string"},{"description":"Sorting order","key":"sortOrder","value":"asc"},{"description":"Page number","key":"page","value":"1"},{"description":"Tag label","key":"search","value":"string"},{"description":"The IDs of the Tags to exclude from searching","key":"exclude[]","value":"1861"},{"description":"The IDs of the Tags to include","key":"ids[]","value":"1861"},{"description":"Results per page","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\": 8186,\n      \"owner_id\": 1952,\n      \"organization_id\": 6743,\n      \"label\": \"string\",\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"classname\": \"string\"\n    },\n    {\n      \"id\": 1272,\n      \"owner_id\": 8557,\n      \"organization_id\": 6810,\n      \"label\": \"string\",\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"classname\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"212c45fa-e6bc-4d30-844d-e5972075d94c"}],"id":"243774cb-9bc8-49a8-9cb9-bdccf586febc","_postman_id":"243774cb-9bc8-49a8-9cb9-bdccf586febc","description":""},{"name":"search","item":[{"name":"Search tags","id":"bbfb0bca-7b72-424e-9f54-0b35593d2b1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/tags/search?term=string&per_page=50&page=1&exclude[]=1786&exclude[]=1861","description":"<p>REQUIRED SCOPES <code>['tags:read']</code><br />Search tags</p>\n","urlObject":{"path":["tags","search"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Term</p>\n","type":"text/plain"},"key":"term","value":"string"},{"description":{"content":"<p>Per Page</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>The IDs of the Tags</p>\n","type":"text/plain"},"key":"exclude[]","value":"1786"},{"description":{"content":"<p>The IDs of the Tags</p>\n","type":"text/plain"},"key":"exclude[]","value":"1861"}],"variable":[]}},"response":[{"id":"4822de5f-c56f-4d89-b7f6-c33dc0a154f7","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags/search?term=string&per_page=50&page=1&exclude[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags","search"],"query":[{"description":"Term","key":"term","value":"string"},{"description":"Per Page","key":"per_page","value":"50"},{"description":"Page","key":"page","value":"1"},{"description":"The IDs of the Tags","key":"exclude[]","value":"1861"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"results\": [\n    {\n      \"id\": 4201,\n      \"owner_id\": 3412,\n      \"organization_id\": 7109,\n      \"label\": \"string\",\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"classname\": \"string\"\n    },\n    {\n      \"id\": 7967,\n      \"owner_id\": 5656,\n      \"organization_id\": 3151,\n      \"label\": \"string\",\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"classname\": \"string\"\n    }\n  ],\n  \"total\": 9905,\n  \"errors\": true\n}"}],"_postman_id":"bbfb0bca-7b72-424e-9f54-0b35593d2b1d"}],"id":"4ccd3af2-6625-4f5e-bb9b-146d7fae8299","_postman_id":"4ccd3af2-6625-4f5e-bb9b-146d7fae8299","description":""},{"name":"Get tags","id":"d66fed89-a523-4915-93c9-4de725cf06cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/tags?sortBy=string&sortOrder=asc&page=1&search=string&exclude[]=1786&exclude[]=1861&ids[]=1786&ids[]=1861&length=10","description":"<p>REQUIRED SCOPES <code>['tags:read']</code><br />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.3"],"query":[{"description":{"content":"<p>Sort by field (name, label, etc)</p>\n","type":"text/plain"},"key":"sortBy","value":"string"},{"description":{"content":"<p>Sorting order</p>\n","type":"text/plain"},"key":"sortOrder","value":"asc"},{"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":"string"},{"description":{"content":"<p>The IDs of the Tags to exclude from searching</p>\n","type":"text/plain"},"key":"exclude[]","value":"1786"},{"description":{"content":"<p>The IDs of the Tags to exclude from searching</p>\n","type":"text/plain"},"key":"exclude[]","value":"1861"},{"description":{"content":"<p>The IDs of the Tags to include</p>\n","type":"text/plain"},"key":"ids[]","value":"1786"},{"description":{"content":"<p>The IDs of the Tags to include</p>\n","type":"text/plain"},"key":"ids[]","value":"1861"},{"description":{"content":"<p>Results per page</p>\n","type":"text/plain"},"key":"length","value":"10"}],"variable":[]}},"response":[{"id":"66012410-ce1e-498e-91f7-c1f33f099eee","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags?sortBy=string&sortOrder=asc&page=1&search=string&exclude[]=1861&ids[]=1861&length=10","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags"],"query":[{"description":"Sort by field (name, label, etc)","key":"sortBy","value":"string"},{"description":"Sorting order","key":"sortOrder","value":"asc"},{"description":"Page number","key":"page","value":"1"},{"description":"Tag label","key":"search","value":"string"},{"description":"The IDs of the Tags to exclude from searching","key":"exclude[]","value":"1861"},{"description":"The IDs of the Tags to include","key":"ids[]","value":"1861"},{"description":"Results per page","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\": 8186,\n      \"owner_id\": 1952,\n      \"organization_id\": 6743,\n      \"label\": \"string\",\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"classname\": \"string\"\n    },\n    {\n      \"id\": 1272,\n      \"owner_id\": 8557,\n      \"organization_id\": 6810,\n      \"label\": \"string\",\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"classname\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"d66fed89-a523-4915-93c9-4de725cf06cc"},{"name":"Create tag","id":"691cd036-e8fb-40e9-b8e3-e1d6764bb129","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/tags?label=string","description":"<p>REQUIRED SCOPES <code>['tags:write']</code><br />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.3"],"query":[{"description":{"content":"<p>Tag label</p>\n","type":"text/plain"},"key":"label","value":"string"}],"variable":[]}},"response":[{"id":"62df1ed2-46d9-4fcc-a8f4-f5ef37152fdc","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/tags?label=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["tags"],"query":[{"description":"Tag label","key":"label","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 3438,\n  \"owner_id\": 385,\n  \"organization_id\": 8836,\n  \"label\": \"string\",\n  \"name\": \"string\",\n  \"type\": \"string\",\n  \"classname\": \"string\"\n}"}],"_postman_id":"691cd036-e8fb-40e9-b8e3-e1d6764bb129"},{"name":"Bulk delete tags","id":"3abb253c-15db-4951-bb34-1d9d62b3b604","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/tags","description":"<p>REQUIRED SCOPES <code>['tags:write']</code><br />Bulk delete tags</p>\n","urlObject":{"path":["tags"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"506984da-c461-4dac-bdd3-1d321b895512","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/tags"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6f249b35-5044-44b7-a735-42d49a11fbb9","name":"Organization not found","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/tags"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"3abb253c-15db-4951-bb34-1d9d62b3b604"}],"id":"a3a70a7e-1c8c-405b-904f-df7b2e8742cb","_postman_id":"a3a70a7e-1c8c-405b-904f-df7b2e8742cb","description":""},{"name":"teams","item":[{"name":"{team}","item":[{"name":"assigment-settings","item":[{"name":"hubspot-fields","item":[{"name":"Get HubSpot contact fields for assignment","id":"1698fa04-ed1c-4ef0-bcad-85b67a22310c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/assigment-settings/hubspot-fields?cash_ignore=true","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get HubSpot contact fields for assignment</p>\n","urlObject":{"path":["teams",":team","assigment-settings","hubspot-fields"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Whether to ignore cache</p>\n","type":"text/plain"},"key":"cash_ignore","value":"true"}],"variable":[{"id":"fdea8ad4-d7a2-4733-bda4-55c457461ff4","type":"any","key":"team"}]}},"response":[{"id":"b2b2ec30-cd73-42b0-9f2f-8e5b1fae141e","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/assigment-settings/hubspot-fields?cash_ignore=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings","hubspot-fields"],"query":[{"description":"Whether to ignore cache","key":"cash_ignore","value":"true"}],"variable":[{"key":"team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"string\",\n    \"label\": \"string\"\n  },\n  {\n    \"name\": \"string\",\n    \"label\": \"string\"\n  }\n]"},{"id":"b96d6f1e-4672-4949-b491-50f4310ba2d9","name":"Unauthenticated","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.3/teams/:team/assigment-settings/hubspot-fields?cash_ignore=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings","hubspot-fields"],"query":[{"description":"Whether to ignore cache","key":"cash_ignore","value":"true"}],"variable":[{"key":"team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"2181b9ff-56c5-45c2-a168-504daa59e68c","name":"Forbidden","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.3/teams/:team/assigment-settings/hubspot-fields?cash_ignore=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings","hubspot-fields"],"query":[{"description":"Whether to ignore cache","key":"cash_ignore","value":"true"}],"variable":[{"key":"team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"4743b106-4e9d-4b1e-a36e-c1c12b01696e","name":"Validation 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.3/teams/:team/assigment-settings/hubspot-fields?cash_ignore=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings","hubspot-fields"],"query":[{"description":"Whether to ignore cache","key":"cash_ignore","value":"true"}],"variable":[{"key":"team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1698fa04-ed1c-4ef0-bcad-85b67a22310c"}],"id":"ba4e296e-37ca-4e5e-8f84-0ebb03e3efb7","_postman_id":"ba4e296e-37ca-4e5e-8f84-0ebb03e3efb7","description":""},{"name":"Get assignment settings for a team","id":"080bf194-2603-48a8-a32f-05c921585c7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/assigment-settings","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get assignment settings for a team</p>\n","urlObject":{"path":["teams",":team","assigment-settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"78f0753e-9a00-46bd-8b90-772b906df366","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"012f4c45-6da8-4f50-bf16-915858dbd4a2","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/assigment-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"manual\": {\n    \"enabled\": false,\n    \"default_user_id\": 8922,\n    \"smart_assignment_enabled\": false,\n    \"smart_assignment_positive\": 9311,\n    \"smart_assignment_neutral\": 8817,\n    \"smart_assignment_negative\": 4522\n  },\n  \"round_robin\": {\n    \"enabled\": false,\n    \"users\": [\n      2944,\n      7516\n    ]\n  },\n  \"hubspot_assignment\": {\n    \"enabled\": true,\n    \"integration\": true,\n    \"integration_assignment_field\": \"string\",\n    \"integration_assignment_field_deleted\": true\n  }\n}"},{"id":"1d23036a-fd5e-4333-b194-17051b6e320b","name":"Unauthenticated","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.3/teams/:team/assigment-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b442e33a-1fe0-4960-88f8-4206465843f3","name":"Forbidden","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.3/teams/:team/assigment-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"9e311af0-7a9b-4953-ba85-b005957f5656","name":"Team 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.3/teams/:team/assigment-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"080bf194-2603-48a8-a32f-05c921585c7c"},{"name":"Update assignment settings for a team","id":"334d1f11-ecb2-41e0-9fd2-2e9d376ce674","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"manual\": {\n    \"default_user_id\": 7107,\n    \"enabled\": true,\n    \"smart_assignment_enabled\": false,\n    \"smart_assignment_positive\": 9929,\n    \"smart_assignment_neutral\": 1913,\n    \"smart_assignment_negative\": 8730\n  },\n  \"round_robin\": {\n    \"enabled\": false,\n    \"users\": [\n      815,\n      1708\n    ]\n  },\n  \"hubspot_assignment\": {\n    \"enabled\": false,\n    \"integration_assignment_field\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/assigment-settings","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Update assignment settings for a team</p>\n","urlObject":{"path":["teams",":team","assigment-settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"eb664d35-3d89-4295-81e8-3e6cb1beca17","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"f7c02594-2b07-4667-bfb6-af176d78f05b","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"manual\": {\n    \"default_user_id\": 7107,\n    \"enabled\": true,\n    \"smart_assignment_enabled\": false,\n    \"smart_assignment_positive\": 9929,\n    \"smart_assignment_neutral\": 1913,\n    \"smart_assignment_negative\": 8730\n  },\n  \"round_robin\": {\n    \"enabled\": false,\n    \"users\": [\n      815,\n      1708\n    ]\n  },\n  \"hubspot_assignment\": {\n    \"enabled\": false,\n    \"integration_assignment_field\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/assigment-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"manual\": {\n    \"enabled\": false,\n    \"default_user_id\": 8922,\n    \"smart_assignment_enabled\": false,\n    \"smart_assignment_positive\": 9311,\n    \"smart_assignment_neutral\": 8817,\n    \"smart_assignment_negative\": 4522\n  },\n  \"round_robin\": {\n    \"enabled\": false,\n    \"users\": [\n      2944,\n      7516\n    ]\n  },\n  \"hubspot_assignment\": {\n    \"enabled\": true,\n    \"integration\": true,\n    \"integration_assignment_field\": \"string\",\n    \"integration_assignment_field_deleted\": true\n  }\n}"},{"id":"537af643-1b10-42c1-abf4-35eb177336a2","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"manual\": {\n    \"default_user_id\": 7107,\n    \"enabled\": true,\n    \"smart_assignment_enabled\": false,\n    \"smart_assignment_positive\": 9929,\n    \"smart_assignment_neutral\": 1913,\n    \"smart_assignment_negative\": 8730\n  },\n  \"round_robin\": {\n    \"enabled\": false,\n    \"users\": [\n      815,\n      1708\n    ]\n  },\n  \"hubspot_assignment\": {\n    \"enabled\": false,\n    \"integration_assignment_field\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/assigment-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"8441c4fb-7b6f-4add-872d-472792157b6f","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"manual\": {\n    \"default_user_id\": 7107,\n    \"enabled\": true,\n    \"smart_assignment_enabled\": false,\n    \"smart_assignment_positive\": 9929,\n    \"smart_assignment_neutral\": 1913,\n    \"smart_assignment_negative\": 8730\n  },\n  \"round_robin\": {\n    \"enabled\": false,\n    \"users\": [\n      815,\n      1708\n    ]\n  },\n  \"hubspot_assignment\": {\n    \"enabled\": false,\n    \"integration_assignment_field\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/assigment-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"269dd1d2-30b9-4b5c-b54d-58954be5682f","name":"Team not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"manual\": {\n    \"default_user_id\": 7107,\n    \"enabled\": true,\n    \"smart_assignment_enabled\": false,\n    \"smart_assignment_positive\": 9929,\n    \"smart_assignment_neutral\": 1913,\n    \"smart_assignment_negative\": 8730\n  },\n  \"round_robin\": {\n    \"enabled\": false,\n    \"users\": [\n      815,\n      1708\n    ]\n  },\n  \"hubspot_assignment\": {\n    \"enabled\": false,\n    \"integration_assignment_field\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/assigment-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"66fa7e74-f29e-4865-b182-f97c6e47375b","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"manual\": {\n    \"default_user_id\": 7107,\n    \"enabled\": true,\n    \"smart_assignment_enabled\": false,\n    \"smart_assignment_positive\": 9929,\n    \"smart_assignment_neutral\": 1913,\n    \"smart_assignment_negative\": 8730\n  },\n  \"round_robin\": {\n    \"enabled\": false,\n    \"users\": [\n      815,\n      1708\n    ]\n  },\n  \"hubspot_assignment\": {\n    \"enabled\": false,\n    \"integration_assignment_field\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/assigment-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","assigment-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"334d1f11-ecb2-41e0-9fd2-2e9d376ce674"}],"id":"cc09c44d-796b-4994-bf23-502d994b6677","_postman_id":"cc09c44d-796b-4994-bf23-502d994b6677","description":""},{"name":"queue","item":[{"name":"{callSid}","item":[{"name":"Get a call queue participant and initiate a call","id":"141fc425-bd99-46de-af9c-fa3a960bdcd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/queue/:callSid","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get a call queue participant and initiate a call</p>\n","urlObject":{"path":["teams",":team","queue",":callSid"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"24b5e277-828d-4486-8b3f-1e862637e1a2","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"},{"id":"346ab9ad-3193-4aef-afa3-953c87d29d4f","description":{"content":"<p>Twilio Call SID</p>\n","type":"text/plain"},"type":"any","value":"string","key":"callSid"}]}},"response":[{"id":"4489fec0-c4d6-4934-96e1-8e4202fd34d1","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/queue/:callSid","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","queue",":callSid"],"variable":[{"key":"team","value":"2491","description":"ID of the team"},{"key":"callSid","value":"string","description":"Twilio Call SID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true\n}"},{"id":"d750183e-50fe-46e6-9d92-cffbb9e0477c","name":"Bad request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/queue/:callSid","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","queue",":callSid"],"variable":[{"key":"team","value":"2491","description":"ID of the team"},{"key":"callSid","value":"string","description":"Twilio Call SID"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"error\": \"Error message\"\n}"},{"id":"75e08588-524b-4511-b6f5-bc7f13ea5a44","name":"Unauthenticated","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.3/teams/:team/queue/:callSid","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","queue",":callSid"],"variable":[{"key":"team","value":"2491","description":"ID of the team"},{"key":"callSid","value":"string","description":"Twilio Call SID"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"318c7898-cdd1-4f7f-bbf7-76d54ac33e42","name":"Forbidden","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.3/teams/:team/queue/:callSid","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","queue",":callSid"],"variable":[{"key":"team","value":"2491","description":"ID of the team"},{"key":"callSid","value":"string","description":"Twilio Call SID"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"64a8a3b1-fff3-4bc1-a8ac-8dacf3bba090","name":"Call not found or already finished","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/queue/:callSid","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","queue",":callSid"],"variable":[{"key":"team","value":"2491","description":"ID of the team"},{"key":"callSid","value":"string","description":"Twilio Call SID"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"error\": \"Call not found or already finished.\"\n}"}],"_postman_id":"141fc425-bd99-46de-af9c-fa3a960bdcd5"}],"id":"8559b6b1-b088-4152-87e0-eee2bc66f59c","_postman_id":"8559b6b1-b088-4152-87e0-eee2bc66f59c","description":""}],"id":"1e718491-977e-4844-9eca-4916512c3270","_postman_id":"1e718491-977e-4844-9eca-4916512c3270","description":""},{"name":"change-owner","item":[{"name":"Change owner","id":"dd17eb11-9c41-443f-a81c-f39cec90b2d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/change-owner?owner_id=3105.253757479255","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Change owner</p>\n","urlObject":{"path":["teams",":team","change-owner"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Member ID</p>\n","type":"text/plain"},"key":"owner_id","value":"3105.253757479255"}],"variable":[{"id":"268762c5-fd64-4fd5-a918-4d32856e2175","description":{"content":"<p>Team</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"ec9bc5f9-f384-41a5-a4f9-d38909fca9d5","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/change-owner?owner_id=3105.253757479255","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","change-owner"],"query":[{"description":"Member ID","key":"owner_id","value":"3105.253757479255"}],"variable":[{"key":"team","value":"3105.253757479255","description":"Team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5067,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5004,\n    \"organization_id\": 2563,\n    \"photo_url\": \"string\",\n    \"unread\": 3245,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 3041,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 641,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  {\n    \"id\": 8208,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5571,\n    \"organization_id\": 4996,\n    \"photo_url\": \"string\",\n    \"unread\": 6717,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": true,\n    \"organizationNumber\": [\n      {\n        \"id\": 6565,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1923,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n]"},{"id":"2511bf71-ddd5-42d2-9282-1b7b0b183e3b","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/change-owner?owner_id=3105.253757479255","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","change-owner"],"query":[{"description":"Member ID","key":"owner_id","value":"3105.253757479255"}],"variable":[{"key":"team","value":"3105.253757479255","description":"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\": \"string\"\n}"}],"_postman_id":"dd17eb11-9c41-443f-a81c-f39cec90b2d4"}],"id":"09a523ee-3cc1-4a88-9bd8-e60fef02774a","_postman_id":"09a523ee-3cc1-4a88-9bd8-e60fef02774a","description":""},{"name":"color-coding","item":[{"name":"Toggle color-coding","id":"1e1c463d-3045-4ee4-9bf6-6bddeae0c8b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"enabled\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/color-coding?enabled=","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Toggle color-coding</p>\n","urlObject":{"path":["teams",":team","color-coding"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"key":"enabled","value":""}],"variable":[{"id":"391e7d92-f149-4738-aab2-f4ddd9c89430","type":"any","key":"team"}]}},"response":[{"id":"e470db90-1ec0-4275-ba14-b121f02d5bbe","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"enabled\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/color-coding?enabled=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","color-coding"],"query":[{"key":"enabled","value":""}],"variable":[{"key":"team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"}],"_postman_id":"1e1c463d-3045-4ee4-9bf6-6bddeae0c8b3"}],"id":"13396966-560f-4dbb-92e1-aa96629cebb7","_postman_id":"13396966-560f-4dbb-92e1-aa96629cebb7","description":""},{"name":"conversation-history-settings","item":[{"name":"Update conversation history settings for a team","id":"e48d19c2-14ff-434a-9543-e825a1b29254","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/conversation-history-settings","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Update conversation history settings for a team</p>\n","urlObject":{"path":["teams",":team","conversation-history-settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"9996eb1e-8784-4037-9fa1-cbc31b5da566","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"be721cad-00e5-4ec6-bd19-b4ac678f69ef","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/conversation-history-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","conversation-history-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": false\n}"},{"id":"637ee63a-6d92-4ed2-b6ac-221b53ccfa71","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/conversation-history-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","conversation-history-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a2f8997d-0f26-48f6-8404-624cb22d7d64","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/conversation-history-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","conversation-history-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e9ad6e3b-2a6d-4e1d-b14b-934cfec0b484","name":"Team not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/conversation-history-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","conversation-history-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e3080b55-97be-4438-a9a8-aebdb6e65d3a","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/conversation-history-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","conversation-history-settings"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e48d19c2-14ff-434a-9543-e825a1b29254"}],"id":"6634bea0-5ec5-4224-831e-a29f9d122f8a","_postman_id":"6634bea0-5ec5-4224-831e-a29f9d122f8a","description":""},{"name":"default-assignee","item":[{"name":"Show default assignee","id":"75d64e77-66d1-4586-b557-678bdc850cae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/default-assignee","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Show default assignee</p>\n","urlObject":{"path":["teams",":team","default-assignee"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"36032d4a-354c-4155-be6c-ebe6d6785ee6","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"48a170c0-31f3-482b-b75b-15ec18658b81","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/default-assignee","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","default-assignee"],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2747,\n  \"email\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"role\": \"string\",\n  \"inbox_id\": 317,\n  \"organization_id\": 1568,\n  \"photo_url\": \"string\",\n  \"unread\": 5036,\n  \"number\": \"string\",\n  \"formatted_number\": \"string\",\n  \"isRingEverywhere\": false,\n  \"organizationNumber\": [\n    {\n      \"id\": 9441,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    },\n    {\n      \"id\": 4940,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    }\n  ],\n  \"userPermissions\": [\n    \"string\",\n    \"string\"\n  ]\n}"}],"_postman_id":"75d64e77-66d1-4586-b557-678bdc850cae"},{"name":"Update default assignee","id":"2b461240-d547-4a16-9137-aa24ad571c0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/default-assignee?user_id=3105.253757479255","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Update default assignee</p>\n","urlObject":{"path":["teams",":team","default-assignee"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Member ID</p>\n","type":"text/plain"},"key":"user_id","value":"3105.253757479255"}],"variable":[{"id":"4ea21af1-33aa-4c9a-a901-88463555ea0b","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"02d7e737-c344-4c68-b46b-f32ce1e7937a","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/default-assignee?user_id=3105.253757479255","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","default-assignee"],"query":[{"description":"Member ID","key":"user_id","value":"3105.253757479255"}],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"},{"id":"c96480f3-0f5f-4424-9e82-30b946c38f98","name":"Unautorized","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/default-assignee?user_id=3105.253757479255","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","default-assignee"],"query":[{"description":"Member ID","key":"user_id","value":"3105.253757479255"}],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"93507a7b-468a-4925-bb89-2a7c9f60a7ae","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.3/teams/:team/default-assignee?user_id=3105.253757479255","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","default-assignee"],"query":[{"description":"Member ID","key":"user_id","value":"3105.253757479255"}],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2b461240-d547-4a16-9137-aa24ad571c0b"}],"id":"46527de8-8e61-4931-bbe4-5e77acb06c85","_postman_id":"46527de8-8e61-4931-bbe4-5e77acb06c85","description":""},{"name":"geo-match","item":[{"name":"Toggle geo-match","id":"1167ee70-d375-4a7b-a0ae-5d1b2cd92c74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/geo-match","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Toggle geo-match</p>\n","urlObject":{"path":["teams",":team","geo-match"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"604de894-f699-4d15-9eb0-d7aa2f7f3e3e","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"1f173404-20e1-46b6-84bf-e283ac4b492f","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/geo-match","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","geo-match"],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"}],"_postman_id":"1167ee70-d375-4a7b-a0ae-5d1b2cd92c74"}],"id":"cc91f520-042f-4b75-9662-77f742bd73ee","_postman_id":"cc91f520-042f-4b75-9662-77f742bd73ee","description":""},{"name":"hubspot","item":[{"name":"Toggle hubspot","id":"05c79576-babd-43fd-a3d2-48e42c2ba683","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/hubspot","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Toggle hubspot</p>\n","urlObject":{"path":["teams",":team","hubspot"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"b433254a-0d41-4cb6-b39d-1816d64c370a","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"11ec51b7-862d-427b-af52-edc7af967c21","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/hubspot","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","hubspot"],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"}],"_postman_id":"05c79576-babd-43fd-a3d2-48e42c2ba683"}],"id":"e57c7ab8-1344-4d4f-84ed-2638110c4778","_postman_id":"e57c7ab8-1344-4d4f-84ed-2638110c4778","description":""},{"name":"make-default","item":[{"name":"Make default for current user","id":"a6cc86c0-1985-4029-aff8-9a4764f22323","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/make-default","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Make default for current user</p>\n","urlObject":{"path":["teams",":team","make-default"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"2474ea15-5e45-4630-8e62-e45e3e864a51","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"8e1fe5a5-f8cc-41e8-8896-749c7d2ceb49","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/make-default","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","make-default"],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2747,\n  \"email\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"role\": \"string\",\n  \"inbox_id\": 317,\n  \"organization_id\": 1568,\n  \"photo_url\": \"string\",\n  \"unread\": 5036,\n  \"number\": \"string\",\n  \"formatted_number\": \"string\",\n  \"isRingEverywhere\": false,\n  \"organizationNumber\": [\n    {\n      \"id\": 9441,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    },\n    {\n      \"id\": 4940,\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"mms\": \"string\"\n    }\n  ],\n  \"userPermissions\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"7d3e8dd7-4218-4440-b613-77fd61b6ae33","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/make-default","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","make-default"],"variable":[{"key":"team","value":"3105.253757479255","description":"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\": \"string\"\n}"}],"_postman_id":"a6cc86c0-1985-4029-aff8-9a4764f22323"}],"id":"6a2ddfa3-ebb9-48e0-a7b0-42d53c1485fd","_postman_id":"6a2ddfa3-ebb9-48e0-a7b0-42d53c1485fd","description":""},{"name":"make-default-for","item":[{"name":"{member}","item":[{"name":"Make default for member","id":"eee3359c-d471-42b4-b6d0-cc1ff4e1fbfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/make-default-for/:member","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Make default for member</p>\n","urlObject":{"path":["teams",":team","make-default-for",":member"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"fcb59654-5ada-4f25-9025-b2121182eb53","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"},{"id":"c059adb0-f977-4ffa-ae4d-7b63391c1cb5","description":{"content":"<p>Member ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"member"}]}},"response":[{"id":"b05bb3fe-ecd6-4e9c-958c-5eac60464fec","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/make-default-for/:member","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","make-default-for",":member"],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"},{"key":"member","value":"3105.253757479255","description":"Member ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"e992141c-4b96-4d99-8eb2-04fcee613033","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/make-default-for/:member","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","make-default-for",":member"],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"},{"key":"member","value":"3105.253757479255","description":"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\": \"string\"\n}"}],"_postman_id":"eee3359c-d471-42b4-b6d0-cc1ff4e1fbfa"}],"id":"6bb09aa2-672c-4c26-98eb-3365448dba4a","_postman_id":"6bb09aa2-672c-4c26-98eb-3365448dba4a","description":""}],"id":"2d14b20b-9b86-4be8-ae58-4331ecca5354","_postman_id":"2d14b20b-9b86-4be8-ae58-4331ecca5354","description":""},{"name":"members","item":[{"name":"{member}","item":[{"name":"Remove team members","id":"fb1dff40-9561-463c-85b3-8924ba8be4b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/members/:member","description":"<p>REQUIRED SCOPES <code>[‘teams:write’]</code><br />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.3"],"query":[],"variable":[{"id":"bdab44d7-894a-4cda-8e5b-b8db42c58a2a","description":{"content":"<p>Team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"},{"id":"e36e26ab-0d47-4da1-9648-455a0853d8b8","description":{"content":"<p>Member</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"member"}]}},"response":[{"id":"50edfa0b-437d-4d5f-8cd2-843b94ff5699","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/members/:member","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","members",":member"],"variable":[{"key":"team","value":"2491","description":"Team"},{"key":"member","value":"2491","description":"Member"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5067,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5004,\n    \"organization_id\": 2563,\n    \"photo_url\": \"string\",\n    \"unread\": 3245,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 3041,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 641,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  {\n    \"id\": 8208,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5571,\n    \"organization_id\": 4996,\n    \"photo_url\": \"string\",\n    \"unread\": 6717,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": true,\n    \"organizationNumber\": [\n      {\n        \"id\": 6565,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1923,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n]"},{"id":"9ab5d6f0-d70b-4784-bc82-a0866747938d","name":"Conflict - User cannot be removed due to team settings configuration","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/members/:member","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","members",":member"],"variable":[{"key":"team","value":"2491","description":"Team"},{"key":"member","value":"2491","description":"Member"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Cannot remove user from team. User is configured in team settings.\",\n  \"conflicts\": [\n    {\n      \"type\": \"ring_group\",\n      \"message\": \"User is configured in Ring Group settings\",\n      \"endpoint\": \"POST core/voice/settings/members/100015945\"\n    },\n    {\n      \"type\": \"ring_group\",\n      \"message\": \"User is configured in Ring Group settings\",\n      \"endpoint\": \"POST core/voice/settings/members/100015945\"\n    }\n  ]\n}"}],"_postman_id":"fb1dff40-9561-463c-85b3-8924ba8be4b0"}],"id":"b7e288b1-0731-4bc0-92b5-4f8a29f42a70","_postman_id":"b7e288b1-0731-4bc0-92b5-4f8a29f42a70","description":""},{"name":"search","item":[{"name":"Search team members","id":"dc46fca2-cd00-43fe-ae06-0198c2065dbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/members/search?term=string&assigned=2491&limit=&offset=","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />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.3"],"query":[{"description":{"content":"<p>Search user by first_name, last_name, email, number)</p>\n","type":"text/plain"},"key":"term","value":"string"},{"description":{"content":"<p>Member's user id is not equal</p>\n","type":"text/plain"},"key":"assigned","value":"2491"},{"description":{"content":"<p>Limit</p>\n","type":"text/plain"},"key":"limit","value":""},{"description":{"content":"<p>Offset</p>\n","type":"text/plain"},"key":"offset","value":""}],"variable":[{"id":"8e8cba3c-9d56-4b65-ac7d-1a397aa359d7","description":{"content":"<p>Team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"b4ca76cf-5a8f-454f-9493-093a6f1b30e5","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/members/search?term=string&assigned=2491&limit=&offset=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","members","search"],"query":[{"description":"Search user by first_name, last_name, email, number)","key":"term","value":"string"},{"description":"Member's user id is not equal","key":"assigned","value":"2491"},{"description":"Limit","key":"limit","value":""},{"description":"Offset","key":"offset","value":""}],"variable":[{"key":"team","value":"2491","description":"Team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5067,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5004,\n    \"organization_id\": 2563,\n    \"photo_url\": \"string\",\n    \"unread\": 3245,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 3041,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 641,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  {\n    \"id\": 8208,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5571,\n    \"organization_id\": 4996,\n    \"photo_url\": \"string\",\n    \"unread\": 6717,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": true,\n    \"organizationNumber\": [\n      {\n        \"id\": 6565,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1923,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n]"}],"_postman_id":"dc46fca2-cd00-43fe-ae06-0198c2065dbd"}],"id":"4f8fb50a-b495-4b79-acef-74bcc2dd20f4","_postman_id":"4f8fb50a-b495-4b79-acef-74bcc2dd20f4","description":""},{"name":"Get team members","id":"0cd54d47-e44c-48a7-aa21-5c154bbf265e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/members?query=string&limit=&offset=","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />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.3"],"query":[{"description":{"content":"<p>Filter by user's first_name or last_name</p>\n","type":"text/plain"},"key":"query","value":"string"},{"description":{"content":"<p>Limit</p>\n","type":"text/plain"},"key":"limit","value":""},{"description":{"content":"<p>Offset</p>\n","type":"text/plain"},"key":"offset","value":""}],"variable":[{"id":"8050f42e-d283-4a13-9d55-86d268bfd7bb","description":{"content":"<p>Team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"ab90fc94-c679-4755-b159-f5b3c3acfe22","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/members?query=string&limit=&offset=","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","members"],"query":[{"description":"Filter by user's first_name or last_name","key":"query","value":"string"},{"description":"Limit","key":"limit","value":""},{"description":"Offset","key":"offset","value":""}],"variable":[{"key":"team","value":"2491","description":"Team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 7909,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5861,\n    \"organization_id\": 2457,\n    \"photo_url\": \"string\",\n    \"unread\": 257,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 6118,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 5622,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ],\n    \"team_role\": \"member\",\n    \"user_role\": \"admin\",\n    \"has_inbox_access_request\": false,\n    \"has_change_role_request\": false,\n    \"member_teams_count\": 3,\n    \"calling_enabled\": true,\n    \"cannot_remove\": [\n      100015945,\n      100015945\n    ]\n  },\n  {\n    \"id\": 688,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 7138,\n    \"organization_id\": 6824,\n    \"photo_url\": \"string\",\n    \"unread\": 4096,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8105,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 8070,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ],\n    \"team_role\": \"member\",\n    \"user_role\": \"admin\",\n    \"has_inbox_access_request\": false,\n    \"has_change_role_request\": false,\n    \"member_teams_count\": 3,\n    \"calling_enabled\": true,\n    \"cannot_remove\": [\n      100015945,\n      100015945\n    ]\n  }\n]"}],"_postman_id":"0cd54d47-e44c-48a7-aa21-5c154bbf265e"},{"name":"Add team members","id":"56a0be66-c22a-4a2f-acbf-cc248a5433fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/members","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />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.3"],"query":[],"variable":[{"id":"1dab172a-6965-4b11-a03c-332c17ffc176","description":{"content":"<p>Team id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"team"}]}},"response":[{"id":"df7aeadb-bfe1-48f2-8b2f-8428d397e5ff","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/members","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","members"],"variable":[{"key":"team","value":"1","description":"Team id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5067,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5004,\n    \"organization_id\": 2563,\n    \"photo_url\": \"string\",\n    \"unread\": 3245,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 3041,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 641,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  {\n    \"id\": 8208,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 5571,\n    \"organization_id\": 4996,\n    \"photo_url\": \"string\",\n    \"unread\": 6717,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": true,\n    \"organizationNumber\": [\n      {\n        \"id\": 6565,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 1923,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n]"},{"id":"8ec8fc88-a808-4645-a4be-21a86b4d4aec","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/members","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","members"],"variable":[{"key":"team","value":"1","description":"Team id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"42f88a49-128f-44de-a72f-26958026e8da","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/members","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","members"],"variable":[{"key":"team","value":"1","description":"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":"56a0be66-c22a-4a2f-acbf-cc248a5433fe"}],"id":"ae544a70-4c63-470b-9c59-6e7543fa65ec","_postman_id":"ae544a70-4c63-470b-9c59-6e7543fa65ec","description":""},{"name":"mute","item":[{"name":"Mute or unmute a team for the authenticated user","id":"bcd0a1ce-076d-47bf-b4d4-0776d4c8707d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"is_muted\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/mute","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Mute or unmute a team for the authenticated user</p>\n","urlObject":{"path":["teams",":team","mute"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"f4aba6f4-4d0d-4ca5-8df1-3afff135b22c","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"afbd6c32-0b89-46c9-908c-dc99f9543620","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_muted\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/mute","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","mute"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\"\n}"},{"id":"56ad21cd-edf8-4c59-9bac-122f0c06a589","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_muted\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/mute","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","mute"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"56b1e042-e6c8-42af-9e73-b5d9ed58336b","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_muted\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/mute","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","mute"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"bbd3d89c-29dc-4a30-84d6-f586bfe7c9e4","name":"Team not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_muted\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/mute","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","mute"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"59200ae7-08b4-4bdd-a6e7-d0208626f279","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_muted\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/mute","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","mute"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bcd0a1ce-076d-47bf-b4d4-0776d4c8707d"}],"id":"8453d24a-3834-4ced-9a25-499c7fb4e85d","_postman_id":"8453d24a-3834-4ced-9a25-499c7fb4e85d","description":""},{"name":"numbers","item":[{"name":"Get team numbers","id":"e189d6bb-0275-45e8-a186-d66ed719a73a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/numbers","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get team numbers</p>\n","urlObject":{"path":["teams",":team","numbers"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"7054f2ac-8096-4ae7-bdcf-bbbb1c77896c","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"d40376ef-a167-4ea6-a323-ae81c7f54d7c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/numbers","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","numbers"],"variable":[{"key":"team","value":"2491","description":"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\": 3226,\n      \"organization_id\": 5834,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 4393,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 6957,\n      \"is_landline\": 4200,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 5814,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 6190\n      },\n      \"landline\": {\n        \"id\": 8582,\n        \"number_id\": 1456,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 4604,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 9380,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 5238,\n        \"is_active\": false,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 2626,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 8015,\n        \"number_id\": 2819,\n        \"is_active\": false,\n        \"is_screening\": false,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 5984,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 5767,\n        \"organization_id\": 9105,\n        \"owner_id\": 5143,\n        \"team_id\": 219,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 387,\n      \"organization_id\": 1876,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6234,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 6171,\n      \"is_landline\": 5781,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": false,\n      \"voice\": false,\n      \"use_organization_call_settings\": false,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": true,\n      \"has_profile\": false,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 9680,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 9596\n      },\n      \"landline\": {\n        \"id\": 3926,\n        \"number_id\": 9642,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 2997,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 6690,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 7118,\n        \"is_active\": false,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8514,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 2414,\n        \"number_id\": 229,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 3435,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 3912,\n        \"organization_id\": 1289,\n        \"owner_id\": 7665,\n        \"team_id\": 6616,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ]\n}"}],"_postman_id":"e189d6bb-0275-45e8-a186-d66ed719a73a"},{"name":"Add a new number to a team","id":"182a1f45-da59-4264-b565-441d57e069b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"number_vendor_id\": \"string\",\n  \"vendor_id\": \"string\",\n  \"is_mobile\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/numbers","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Add a new number to a team</p>\n","urlObject":{"path":["teams",":team","numbers"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"69dc4610-906b-428e-b58c-034580fecd55","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"1ae65cb7-d5ab-48ef-b9a9-3b116c287345","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"number_vendor_id\": \"string\",\n  \"vendor_id\": \"string\",\n  \"is_mobile\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/numbers","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","numbers"],"variable":[{"key":"team","value":"2491","description":"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\": 6490,\n    \"organization_id\": 1025,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 4301,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 2283,\n    \"is_landline\": 4658,\n    \"is_toll_free\": true,\n    \"is_mobile\": 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\": \"string\",\n    \"area_code\": {\n      \"id\": 6120,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 2346\n    },\n    \"landline\": {\n      \"id\": 4197,\n      \"number_id\": 2366,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 6114,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 7818,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 1857,\n      \"is_active\": true,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 9932,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 1809,\n      \"number_id\": 1162,\n      \"is_active\": false,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 5380,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 5895,\n      \"organization_id\": 9364,\n      \"owner_id\": 63,\n      \"team_id\": 3685,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  {\n    \"id\": 2404,\n    \"organization_id\": 2499,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 1306,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 7272,\n    \"is_landline\": 8791,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": \"string\",\n    \"area_code\": {\n      \"id\": 8184,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 853\n    },\n    \"landline\": {\n      \"id\": 4037,\n      \"number_id\": 59,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 4447,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 4154,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 6584,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 3730,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9361,\n      \"number_id\": 6540,\n      \"is_active\": true,\n      \"is_screening\": true,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 3998,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 1814,\n      \"organization_id\": 4801,\n      \"owner_id\": 5156,\n      \"team_id\": 6541,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  }\n]"},{"id":"4cf07c90-24ba-456a-81cc-fe528df1204e","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"number_vendor_id\": \"string\",\n  \"vendor_id\": \"string\",\n  \"is_mobile\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/numbers","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","numbers"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"da0a8623-2821-426a-b33c-c4c4611f93b2","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"number_vendor_id\": \"string\",\n  \"vendor_id\": \"string\",\n  \"is_mobile\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/numbers","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","numbers"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fa040067-e7e7-4223-98cd-73b40be9f75f","name":"Team not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"number_vendor_id\": \"string\",\n  \"vendor_id\": \"string\",\n  \"is_mobile\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/numbers","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","numbers"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1b9fbd16-c5bb-44d6-9283-fc2b4348f3b6","name":"Validation error or payment failure","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"number\": \"string\",\n  \"number_vendor_id\": \"string\",\n  \"vendor_id\": \"string\",\n  \"is_mobile\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/numbers","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","numbers"],"variable":[{"key":"team","value":"2491","description":"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  \"stripe\": [\n    \"string\",\n    \"string\"\n  ],\n  \"number\": \"string\"\n}"}],"_postman_id":"182a1f45-da59-4264-b565-441d57e069b3"}],"id":"09c5ab7c-242c-4855-971c-461744ca3103","_postman_id":"09c5ab7c-242c-4855-971c-461744ca3103","description":""},{"name":"round-robin","item":[{"name":"users","item":[{"name":"Get round robin users and status for a team","id":"4f81a290-f3ea-401c-9845-19329881d07a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/round-robin/users","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get round robin users and status for a team</p>\n","urlObject":{"path":["teams",":team","round-robin","users"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"28411a4a-a5ec-4434-9cb9-1ed952d791ec","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"896141d4-d366-4509-8976-70ee1a39c3bd","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/round-robin/users","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","round-robin","users"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"users\": [\n    {\n      \"id\": 3736,\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 7356,\n      \"name\": \"string\"\n    }\n  ],\n  \"status\": false\n}"},{"id":"985f62cb-250e-40b7-a386-7cbd455ef7be","name":"Unauthenticated","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.3/teams/:team/round-robin/users","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","round-robin","users"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1d6af645-828d-4946-bf49-9f7dce426d2e","name":"Forbidden","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.3/teams/:team/round-robin/users","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","round-robin","users"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"9b6d2db6-4734-48d3-bff1-d438284dc811","name":"Team 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.3/teams/:team/round-robin/users","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","round-robin","users"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4f81a290-f3ea-401c-9845-19329881d07a"},{"name":"Update round robin users for a team","id":"3b04f3e5-792b-472b-9d5e-da48be74c294","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"users\": [\n    6741,\n    8210\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/round-robin/users","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Update round robin users for a team</p>\n","urlObject":{"path":["teams",":team","round-robin","users"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"c5488fc8-b0ae-42f1-8480-28849c41ed29","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"13b9771a-80eb-42c6-a005-9987e1ce6375","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"users\": [\n    6741,\n    8210\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/round-robin/users","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","round-robin","users"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"},{"id":"1913fc2a-0462-4802-8f5b-079f1ca5945c","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"users\": [\n    6741,\n    8210\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/round-robin/users","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","round-robin","users"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d147e5c2-31c3-411b-82c2-4a6f61370893","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"users\": [\n    6741,\n    8210\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/round-robin/users","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","round-robin","users"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"75358587-da12-4e9e-ac4e-6f644d1d415b","name":"Team not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"users\": [\n    6741,\n    8210\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/round-robin/users","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","round-robin","users"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3c901a62-90d0-4fbf-9791-0a4d11f89372","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"users\": [\n    6741,\n    8210\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/round-robin/users","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","round-robin","users"],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3b04f3e5-792b-472b-9d5e-da48be74c294"}],"id":"e418d92b-1680-420c-9ee0-9b73ee93a038","_postman_id":"e418d92b-1680-420c-9ee0-9b73ee93a038","description":""},{"name":"Toggle team round robin","id":"ea2dc06f-2c41-46ec-b98e-e6977d114c06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/round-robin","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Toggle team round robin</p>\n","urlObject":{"path":["teams",":team","round-robin"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"5c87cfe7-23a3-4eec-bbf1-4e2914200c91","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"d0f066c7-a2bb-4b05-b6b7-297a147d82b6","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/round-robin","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","round-robin"],"variable":[{"key":"team","value":"2491","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"}],"_postman_id":"ea2dc06f-2c41-46ec-b98e-e6977d114c06"}],"id":"b168598a-898c-40ea-8414-731a8f61759a","_postman_id":"b168598a-898c-40ea-8414-731a8f61759a","description":""},{"name":"call-settings","item":[{"name":"audio","item":[{"name":"Create a new call setting audio","id":"0f2d92e9-880e-442a-ba2a-691fce4e0a15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Audio file</p>\n","key":"file","type":"file","value":null},{"key":"call_setting_name","value":"string","type":"text"},{"key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings/audio","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Create a new call setting audio</p>\n","urlObject":{"path":["teams",":team","call-settings","audio"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"0959ef00-9dcf-4388-ac5d-d46c73b7b59b","type":"any","key":"team"}]}},"response":[{"id":"85489414-c14d-4ece-8123-5003c4399fae","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Audio file","key":"file","type":"file","src":[]},{"key":"call_setting_name","value":"string","type":"text"},{"key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings/audio","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings","audio"],"variable":[{"key":"team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9148,\n  \"organization_id\": 749,\n  \"name\": \"string\",\n  \"content_type\": \"string\",\n  \"url\": \"string\",\n  \"call_setting_name\": \"string\"\n}"},{"id":"da865ec2-1de6-401e-a21e-c02f96e800dd","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Audio file","key":"file","type":"file","src":[]},{"key":"call_setting_name","value":"string","type":"text"},{"key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings/audio","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings","audio"],"variable":[{"key":"team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"657e3fc4-e9a1-4da9-b7cc-2218fff94d12","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Audio file","key":"file","type":"file","src":[]},{"key":"call_setting_name","value":"string","type":"text"},{"key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings/audio","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings","audio"],"variable":[{"key":"team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f49d42c2-8484-48cf-ab57-bc94303b1038","name":"Validation error or no file provided","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Audio file","key":"file","type":"file","src":[]},{"key":"call_setting_name","value":"string","type":"text"},{"key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings/audio","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings","audio"],"variable":[{"key":"team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"error\": \"No file.\"\n}"}],"_postman_id":"0f2d92e9-880e-442a-ba2a-691fce4e0a15"}],"id":"17ddff52-dff6-4d9a-aac2-a8f89aafd909","_postman_id":"17ddff52-dff6-4d9a-aac2-a8f89aafd909","description":""},{"name":"{title}","item":[{"name":"Save call settings","id":"78b63ecd-e606-4e9e-b46a-99c58a25671c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"level\": \"string\",\n  \"level_id\": 4872,\n  \"organization_id\": 3553,\n  \"settings\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings/:title","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Save call settings</p>\n","urlObject":{"path":["teams",":team","call-settings",":title"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"64862564-bd0f-4f10-a339-92a104c59028","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"},{"id":"616f576b-24c2-45c8-95a5-4322c7fdc4c4","description":{"content":"<p>The title of the settings</p>\n","type":"text/plain"},"type":"any","value":"call-distribution","key":"title"}]}},"response":[{"id":"18e3f43a-14dd-41aa-ae3e-bfd3976a4927","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"level\": \"string\",\n  \"level_id\": 4872,\n  \"organization_id\": 3553,\n  \"settings\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings/:title","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings",":title"],"variable":[{"key":"team","value":"2491","description":"ID of the team"},{"key":"title","value":"call-distribution","description":"The title of the settings"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2720,\n  \"title\": \"string\",\n  \"organization_id\": 5579,\n  \"is_active\": false,\n  \"settings\": {}\n}"},{"id":"546ba3bc-6118-414b-aade-26c496a17446","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"level\": \"string\",\n  \"level_id\": 4872,\n  \"organization_id\": 3553,\n  \"settings\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings/:title","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings",":title"],"variable":[{"key":"team","value":"2491","description":"ID of the team"},{"key":"title","value":"call-distribution","description":"The title of the settings"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"144e0c2b-8619-453a-a091-0e156d31d314","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"level\": \"string\",\n  \"level_id\": 4872,\n  \"organization_id\": 3553,\n  \"settings\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings/:title","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings",":title"],"variable":[{"key":"team","value":"2491","description":"ID of the team"},{"key":"title","value":"call-distribution","description":"The title of the settings"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d2de084d-e2e1-480e-8de3-3fdaff94e802","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"level\": \"string\",\n  \"level_id\": 4872,\n  \"organization_id\": 3553,\n  \"settings\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings/:title","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings",":title"],"variable":[{"key":"team","value":"2491","description":"ID of the team"},{"key":"title","value":"call-distribution","description":"The title of the settings"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"78b63ecd-e606-4e9e-b46a-99c58a25671c"}],"id":"2a326a47-dfe5-4e53-a623-0b67e514914a","_postman_id":"2a326a47-dfe5-4e53-a623-0b67e514914a","description":""},{"name":"Get call settings","id":"5172bf91-4d4f-401f-bcd4-86ac96fe6b6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings?level=string&level_id=2491&organization_id=2491","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get call settings</p>\n","urlObject":{"path":["teams",":team","call-settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Level of settings (e.g., 'organization', 'team', 'user')</p>\n","type":"text/plain"},"key":"level","value":"string"},{"description":{"content":"<p>ID of the level entity</p>\n","type":"text/plain"},"key":"level_id","value":"2491"},{"description":{"content":"<p>ID of the organization</p>\n","type":"text/plain"},"key":"organization_id","value":"2491"}],"variable":[{"id":"32c73539-88c2-4a35-bf38-b5d46614b87e","description":{"content":"<p>ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"dcbadb43-0e49-434d-9395-32aaf3c75d2c","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings?level=string&level_id=2491&organization_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings"],"query":[{"description":"Level of settings (e.g., 'organization', 'team', 'user')","key":"level","value":"string"},{"description":"ID of the level entity","key":"level_id","value":"2491"},{"description":"ID of the organization","key":"organization_id","value":"2491"}],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"key_0\": {},\n  \"key_1\": {}\n}"},{"id":"03bc77cc-76dd-4884-ae91-4da066214115","name":"Unauthenticated","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.3/teams/:team/call-settings?level=string&level_id=2491&organization_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings"],"query":[{"description":"Level of settings (e.g., 'organization', 'team', 'user')","key":"level","value":"string"},{"description":"ID of the level entity","key":"level_id","value":"2491"},{"description":"ID of the organization","key":"organization_id","value":"2491"}],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"67ef8dae-48fc-4d70-a833-273fea90d456","name":"Forbidden","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.3/teams/:team/call-settings?level=string&level_id=2491&organization_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings"],"query":[{"description":"Level of settings (e.g., 'organization', 'team', 'user')","key":"level","value":"string"},{"description":"ID of the level entity","key":"level_id","value":"2491"},{"description":"ID of the organization","key":"organization_id","value":"2491"}],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"8aaeb57a-13fd-40d3-8b16-4ba1d6ae727b","name":"Validation 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.3/teams/:team/call-settings?level=string&level_id=2491&organization_id=2491","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings"],"query":[{"description":"Level of settings (e.g., 'organization', 'team', 'user')","key":"level","value":"string"},{"description":"ID of the level entity","key":"level_id","value":"2491"},{"description":"ID of the organization","key":"organization_id","value":"2491"}],"variable":[{"key":"team","value":"2491","description":"ID of the team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5172bf91-4d4f-401f-bcd4-86ac96fe6b6b"},{"name":"Toggle call-settings","id":"f0a5b138-1cc8-4ee3-ab12-22d9d2a62a22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Toggle call-settings</p>\n","urlObject":{"path":["teams",":team","call-settings"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"00cd0e1a-49a8-46da-836c-d91f99d79f6f","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"8dc138b2-9e75-4d36-ade5-42c04b88373b","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings"],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"6ad157f3-55cf-4bf8-8366-90e11858f323","name":"Unprocessable Entity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team/call-settings","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team","call-settings"],"variable":[{"key":"team","value":"3105.253757479255","description":"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":"f0a5b138-1cc8-4ee3-ab12-22d9d2a62a22"}],"id":"269c9e64-5392-4801-a841-2e5860371882","_postman_id":"269c9e64-5392-4801-a841-2e5860371882","description":""},{"name":"Get team","id":"2e8cab0b-17ef-4b02-af23-133bebca4f7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team?include_sending_options=true","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get team</p>\n","urlObject":{"path":["teams",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Indicates if we need to calculate and include sending options</p>\n","type":"text/plain"},"key":"include_sending_options","value":"true"}],"variable":[{"id":"f2317c03-4f48-49a2-a36c-a70fc52392e6","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"e240a013-1aba-4b13-8b6e-723ce883fe29","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team?include_sending_options=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team"],"query":[{"description":"Indicates if we need to calculate and include sending options","key":"include_sending_options","value":"true"}],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"}],"_postman_id":"2e8cab0b-17ef-4b02-af23-133bebca4f7e"},{"name":"Update team","id":"9fe42201-8cc2-4f9e-8df0-68b874e92e8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team?name=string","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Update team</p>\n","urlObject":{"path":["teams",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Name</p>\n","type":"text/plain"},"key":"name","value":"string"}],"variable":[{"id":"746a8209-802e-4a66-a2d8-2ba315e22e8c","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"c787111b-df4b-46b1-8952-394b6918f3a7","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team?name=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team"],"query":[{"description":"Name","key":"name","value":"string"}],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"},{"id":"9ce91009-eb31-4b47-8e90-f3fc0b86574a","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team?name=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team"],"query":[{"description":"Name","key":"name","value":"string"}],"variable":[{"key":"team","value":"3105.253757479255","description":"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\": \"string\"\n}"}],"_postman_id":"9fe42201-8cc2-4f9e-8df0-68b874e92e8d"},{"name":"Delete team","id":"5ec23928-5cd8-47a8-9101-25765169d181","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/:team?reassign=App\\Teams\\Team:0","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Delete team</p>\n","urlObject":{"path":["teams",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Re-Assign Team ID</p>\n","type":"text/plain"},"key":"reassign","value":"App\\Teams\\Team:0"}],"variable":[{"id":"6e3ce582-fbcb-449a-a409-6221e5bff988","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"77ec3850-b94a-4dcb-92fa-356a1d1ef28e","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/:team?reassign=App\\Teams\\Team:0","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team"],"query":[{"description":"Re-Assign Team ID","key":"reassign","value":"App\\Teams\\Team:0"}],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1968,\n  \"conversation_id\": 6685,\n  \"automated\": true,\n  \"status\": \"string\",\n  \"type\": \"string\",\n  \"mms_status\": \"string\",\n  \"body\": \"string\",\n  \"body_raw\": \"string\",\n  \"has_tagging\": true,\n  \"icon\": \"string\",\n  \"received_at\": \"string\",\n  \"send_at\": \"string\",\n  \"queued_at\": \"string\",\n  \"sent_at\": \"string\",\n  \"delivered_at\": \"string\",\n  \"failed_at\": \"string\",\n  \"failed_reason\": \"string\",\n  \"created_at\": \"string\",\n  \"stop_on_response\": true,\n  \"is_hipaa\": false,\n  \"record\": {\n    \"id\": 573,\n    \"message_id\": 3261,\n    \"sid\": \"string\",\n    \"record_id\": \"string\",\n    \"duration\": 7649,\n    \"status\": \"string\",\n    \"url\": \"string\",\n    \"is_voicemail\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  },\n  \"user_id\": 9796,\n  \"source_id\": \"string\",\n  \"source\": \"string\",\n  \"contact\": {\n    \"id\": 451,\n    \"owner_id\": 7802,\n    \"color\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"email\": \"string\",\n    \"photo_url\": \"string\",\n    \"number\": \"string\",\n    \"country\": \"string\",\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"typeted_number\": \"string\",\n    \"is_blocked\": true,\n    \"opt_out\": true,\n    \"opt_out_at\": \"string\",\n    \"opt_in_request_at\": \"string\",\n    \"opt_in_requests\": [\n      {\n        \"number_id\": 1131\n      },\n      {\n        \"number_id\": 7671\n      }\n    ],\n    \"opt_in_at\": \"string\",\n    \"shortcode_opt_outs\": [\n      {\n        \"id\": 5695,\n        \"number_id\": 12,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": false\n      },\n      {\n        \"id\": 418,\n        \"number_id\": 5305,\n        \"name\": \"string\",\n        \"disabled\": true,\n        \"timestamp\": \"string\",\n        \"value\": true\n      }\n    ],\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"integration_vendor_id\": 9828,\n    \"prevent_autolink\": true,\n    \"integration\": [\n      {\n        \"id\": 2715,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      },\n      {\n        \"id\": 8356,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"photo_url\": \"string\"\n      }\n    ],\n    \"custom_fields\": [\n      {\n        \"id\": 2411,\n        \"custom_field_id\": 1997,\n        \"contact_id\": 5075,\n        \"field_key\": \"string\",\n        \"organization_id\": 7219,\n        \"text\": \"string\",\n        \"number\": 7778,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      },\n      {\n        \"id\": 2104,\n        \"custom_field_id\": 5284,\n        \"contact_id\": 4041,\n        \"field_key\": \"string\",\n        \"organization_id\": 7536,\n        \"text\": \"string\",\n        \"number\": 4455,\n        \"date\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\",\n        \"value\": [\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          },\n          {\n            \"type\": \"string\",\n            \"value\": \"string\"\n          }\n        ]\n      }\n    ],\n    \"tags\": [\n      {\n        \"id\": 1665,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      },\n      {\n        \"id\": 7236,\n        \"name\": \"string\",\n        \"label\": \"string\",\n        \"created_at\": \"string\"\n      }\n    ],\n    \"notes\": [\n      {\n        \"id\": 5239,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      {\n        \"id\": 6771,\n        \"text\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    ]\n  },\n  \"user\": {\n    \"id\": 4861,\n    \"email\": \"string\",\n    \"first_name\": \"string\",\n    \"last_name\": \"string\",\n    \"full_name\": \"string\",\n    \"role\": \"string\",\n    \"inbox_id\": 8830,\n    \"organization_id\": 8894,\n    \"photo_url\": \"string\",\n    \"unread\": 1241,\n    \"number\": \"string\",\n    \"formatted_number\": \"string\",\n    \"isRingEverywhere\": false,\n    \"organizationNumber\": [\n      {\n        \"id\": 8848,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      },\n      {\n        \"id\": 4045,\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"mms\": \"string\"\n      }\n    ],\n    \"userPermissions\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"pending_mentions\": [\n    {\n      \"id\": 496,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 3766,\n      \"organization_id\": 300,\n      \"photo_url\": \"string\",\n      \"unread\": 3327,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 7087,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 5945,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 8757,\n      \"email\": \"string\",\n      \"first_name\": \"string\",\n      \"last_name\": \"string\",\n      \"full_name\": \"string\",\n      \"role\": \"string\",\n      \"inbox_id\": 665,\n      \"organization_id\": 8775,\n      \"photo_url\": \"string\",\n      \"unread\": 6495,\n      \"number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"isRingEverywhere\": false,\n      \"organizationNumber\": [\n        {\n          \"id\": 855,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        },\n        {\n          \"id\": 2039,\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"mms\": \"string\"\n        }\n      ],\n      \"userPermissions\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"media\": [\n    {\n      \"id\": 6178,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1633,\n      \"content_type\": \"string\",\n      \"source\": \"string\",\n      \"source_short\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ]\n}"},{"id":"82d6de4f-7d44-441a-8479-bba7b39d79a7","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.3/teams/:team?reassign=App\\Teams\\Team:0","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams",":team"],"query":[{"description":"Re-Assign Team ID","key":"reassign","value":"App\\Teams\\Team:0"}],"variable":[{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5ec23928-5cd8-47a8-9101-25765169d181"}],"id":"9d82a6b5-875d-4b66-b720-a4b055ddc638","_postman_id":"9d82a6b5-875d-4b66-b720-a4b055ddc638","description":""},{"name":"unassigned","item":[{"name":"Create team (unassigned)","id":"465490ca-a949-48b6-b67a-6c85f7e05f9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/unassigned?name=string&numberIds[]=3505.398886117308&numberIds[]=5179.574483081574&vendor_id=string&members[]=3505.398886117308&members[]=5179.574483081574","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Create team (unassigned)</p>\n","urlObject":{"path":["teams","unassigned"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Name</p>\n","type":"text/plain"},"key":"name","value":"string"},{"description":{"content":"<p>Number IDs</p>\n","type":"text/plain"},"key":"numberIds[]","value":"3505.398886117308"},{"description":{"content":"<p>Number IDs</p>\n","type":"text/plain"},"key":"numberIds[]","value":"5179.574483081574"},{"description":{"content":"<p>Vendor ID</p>\n","type":"text/plain"},"key":"vendor_id","value":"string"},{"description":{"content":"<p>Member IDs</p>\n","type":"text/plain"},"key":"members[]","value":"3505.398886117308"},{"description":{"content":"<p>Member IDs</p>\n","type":"text/plain"},"key":"members[]","value":"5179.574483081574"}],"variable":[]}},"response":[{"id":"25efe088-3087-4992-ba8e-9a840d503076","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/unassigned?name=string&numberIds[]=5179.574483081574&vendor_id=string&members[]=5179.574483081574","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","unassigned"],"query":[{"description":"Name","key":"name","value":"string"},{"description":"Number IDs","key":"numberIds[]","value":"5179.574483081574"},{"description":"Vendor ID","key":"vendor_id","value":"string"},{"description":"Member IDs","key":"members[]","value":"5179.574483081574"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"},{"id":"1fefdfac-b88f-4fbd-abed-7e090bfc467f","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.3/teams/unassigned?name=string&numberIds[]=5179.574483081574&vendor_id=string&members[]=5179.574483081574","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","unassigned"],"query":[{"description":"Name","key":"name","value":"string"},{"description":"Number IDs","key":"numberIds[]","value":"5179.574483081574"},{"description":"Vendor ID","key":"vendor_id","value":"string"},{"description":"Member IDs","key":"members[]","value":"5179.574483081574"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1ea66d81-accc-4d69-93b3-3184f04619df","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/unassigned?name=string&numberIds[]=5179.574483081574&vendor_id=string&members[]=5179.574483081574","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","unassigned"],"query":[{"description":"Name","key":"name","value":"string"},{"description":"Number IDs","key":"numberIds[]","value":"5179.574483081574"},{"description":"Vendor ID","key":"vendor_id","value":"string"},{"description":"Member IDs","key":"members[]","value":"5179.574483081574"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"stipe\": \"string\",\n  \"number\": \"string\"\n}"},{"id":"423c1f5a-c4a9-4b24-bec3-57ff82de0923","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/unassigned?name=string&numberIds[]=5179.574483081574&vendor_id=string&members[]=5179.574483081574","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","unassigned"],"query":[{"description":"Name","key":"name","value":"string"},{"description":"Number IDs","key":"numberIds[]","value":"5179.574483081574"},{"description":"Vendor ID","key":"vendor_id","value":"string"},{"description":"Member IDs","key":"members[]","value":"5179.574483081574"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"owner\": \"string\"\n}"}],"_postman_id":"465490ca-a949-48b6-b67a-6c85f7e05f9d"}],"id":"d82015ee-5da4-4b5b-ad00-d4e25c6655f2","_postman_id":"d82015ee-5da4-4b5b-ad00-d4e25c6655f2","description":""},{"name":"favorite","item":[{"name":"Mark or unmark an inbox as favorite","id":"ae8e891a-f732-4cfd-b6d8-b49c368f5e23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"inbox_id\": 2384,\n  \"inbox_type\": \"string\",\n  \"favorite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/favorite","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Mark or unmark an inbox as favorite</p>\n","urlObject":{"path":["teams","favorite"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"6ebac3d2-ecc0-4e19-8e5e-6ed7eccdd89b","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"inbox_id\": 2384,\n  \"inbox_type\": \"string\",\n  \"favorite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/favorite"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"status\",\n  \"message\": \"Successfully updated.\"\n}"},{"id":"16dbb4e0-b4e5-4fcb-8ee9-760acc3a9307","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"inbox_id\": 2384,\n  \"inbox_type\": \"string\",\n  \"favorite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/favorite"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0da4065c-576e-41d9-a332-7c1bce80563d","name":"Inbox not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"inbox_id\": 2384,\n  \"inbox_type\": \"string\",\n  \"favorite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/favorite"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"551fd936-d42a-4ab2-954b-76f064008ad0","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"inbox_id\": 2384,\n  \"inbox_type\": \"string\",\n  \"favorite\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/favorite"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ae8e891a-f732-4cfd-b6d8-b49c368f5e23"}],"id":"7b02d4cc-0eb6-465c-a666-9e88483f08c5","_postman_id":"7b02d4cc-0eb6-465c-a666-9e88483f08c5","description":""},{"name":"personal","item":[{"name":"Get personal teams (inboxes)","id":"be3a6b31-c167-4021-a00a-a0185a7e2830","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/personal?withUnified=string","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get personal teams (inboxes)</p>\n","urlObject":{"path":["teams","personal"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>With Unified</p>\n","type":"text/plain"},"key":"withUnified","value":"string"}],"variable":[]}},"response":[{"id":"2c1b08b2-75d7-4042-91b4-7de825fc3dde","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/personal?withUnified=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","personal"],"query":[{"description":"With Unified","key":"withUnified","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 3307,\n    \"organization_id\": 4009,\n    \"owner_id\": 5974,\n    \"default_assigned_user_id\": 2410,\n    \"is_smart\": false,\n    \"is_round_robin\": true,\n    \"color_coding_enabled\": true,\n    \"use_global_conversation_history\": false,\n    \"use_conversation_history\": false,\n    \"round_robin_users\": [\n      183,\n      1729\n    ],\n    \"deprioritized_numbers\": [\n      837,\n      2469\n    ],\n    \"is_geomatch\": true,\n    \"is_hubspot_assignment\": true,\n    \"name\": \"string\",\n    \"inbox_identifier\": \"string\",\n    \"email_to_sms\": null,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"disabled\": null,\n    \"users_count\": 3900,\n    \"member_ids\": [\n      1106,\n      585\n    ],\n    \"business_hours\": null,\n    \"unread\": 0,\n    \"unread_calls\": 4,\n    \"unread_messages_count\": 7,\n    \"unread_mentions_count\": 2,\n    \"number\": {\n      \"id\": 6939,\n      \"organization_id\": 2738,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 9863,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 1100,\n      \"is_landline\": 2383,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 8131,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 2768\n      },\n      \"landline\": {\n        \"id\": 5323,\n        \"number_id\": 3679,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 1981,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 7641,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 7844,\n        \"is_active\": false,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 4994,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 7906,\n        \"number_id\": 4368,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 777,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 3938,\n        \"organization_id\": 916,\n        \"owner_id\": 135,\n        \"team_id\": 8236,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"call_via_aircall\": null,\n    \"numbers\": [\n      {\n        \"id\": 6712,\n        \"organization_id\": 4180,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 9672,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 7857,\n        \"is_landline\": 105,\n        \"is_toll_free\": false,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": false,\n        \"mms\": false,\n        \"disabled\": true,\n        \"has_profile\": false,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 7622,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 1570\n        },\n        \"landline\": {\n          \"id\": 8325,\n          \"number_id\": 3446,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 8311,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 6888,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 9988,\n          \"is_active\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 7243,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": false,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 3356,\n          \"number_id\": 6219,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 5134,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 2589,\n          \"organization_id\": 4681,\n          \"owner_id\": 4480,\n          \"team_id\": 191,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      {\n        \"id\": 598,\n        \"organization_id\": 9411,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 8019,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 3958,\n        \"is_landline\": 2037,\n        \"is_toll_free\": false,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\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\": \"string\",\n        \"area_code\": {\n          \"id\": 9396,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 8973\n        },\n        \"landline\": {\n          \"id\": 5688,\n          \"number_id\": 8820,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 30,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 7623,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 7304,\n          \"is_active\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 3719,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 3469,\n          \"number_id\": 2669,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 9898,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 9849,\n          \"organization_id\": 5862,\n          \"owner_id\": 4981,\n          \"team_id\": 6957,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      }\n    ],\n    \"numbers_count\": 6009,\n    \"voicemail\": null,\n    \"ivr\": null,\n    \"owner\": null,\n    \"is_favorite\": false,\n    \"type\": \"inbox\",\n    \"followup\": null\n  },\n  {\n    \"id\": 4213,\n    \"organization_id\": 557,\n    \"owner_id\": 7868,\n    \"default_assigned_user_id\": 4511,\n    \"is_smart\": false,\n    \"is_round_robin\": true,\n    \"color_coding_enabled\": false,\n    \"use_global_conversation_history\": false,\n    \"use_conversation_history\": true,\n    \"round_robin_users\": [\n      4238,\n      5317\n    ],\n    \"deprioritized_numbers\": [\n      1756,\n      3366\n    ],\n    \"is_geomatch\": false,\n    \"is_hubspot_assignment\": false,\n    \"name\": \"string\",\n    \"inbox_identifier\": \"string\",\n    \"email_to_sms\": null,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"disabled\": null,\n    \"users_count\": 9197,\n    \"member_ids\": [\n      8211,\n      4223\n    ],\n    \"business_hours\": null,\n    \"unread\": 0,\n    \"unread_calls\": 4,\n    \"unread_messages_count\": 7,\n    \"unread_mentions_count\": 2,\n    \"number\": {\n      \"id\": 7059,\n      \"organization_id\": 7615,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 8058,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 1110,\n      \"is_landline\": 4438,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\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\": \"string\",\n      \"area_code\": {\n        \"id\": 9148,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 4192\n      },\n      \"landline\": {\n        \"id\": 2797,\n        \"number_id\": 464,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 7621,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 4685,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3215,\n        \"is_active\": false,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 4461,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 7967,\n        \"number_id\": 9042,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 6240,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 155,\n        \"organization_id\": 9617,\n        \"owner_id\": 152,\n        \"team_id\": 3867,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"call_via_aircall\": null,\n    \"numbers\": [\n      {\n        \"id\": 8142,\n        \"organization_id\": 2449,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 8874,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 442,\n        \"is_landline\": 4873,\n        \"is_toll_free\": true,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": false,\n        \"voice_outbound\": false,\n        \"mms\": false,\n        \"disabled\": false,\n        \"has_profile\": true,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 2905,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 7504\n        },\n        \"landline\": {\n          \"id\": 4103,\n          \"number_id\": 6121,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 6422,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 2737,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 2491,\n          \"is_active\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 9909,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 2477,\n          \"number_id\": 5798,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 2876,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 6350,\n          \"organization_id\": 7604,\n          \"owner_id\": 2020,\n          \"team_id\": 8636,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      {\n        \"id\": 5572,\n        \"organization_id\": 6797,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 6212,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 9510,\n        \"is_landline\": 1125,\n        \"is_toll_free\": true,\n        \"is_mobile\": true,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": true,\n        \"mms\": true,\n        \"disabled\": true,\n        \"has_profile\": true,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 2738,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 6228\n        },\n        \"landline\": {\n          \"id\": 5692,\n          \"number_id\": 2707,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 8553,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 6962,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 168,\n          \"is_active\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 5731,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 9862,\n          \"number_id\": 354,\n          \"is_active\": false,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 6198,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 2442,\n          \"organization_id\": 9026,\n          \"owner_id\": 8515,\n          \"team_id\": 8641,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      }\n    ],\n    \"numbers_count\": 3901,\n    \"voicemail\": null,\n    \"ivr\": null,\n    \"owner\": null,\n    \"is_favorite\": false,\n    \"type\": \"inbox\",\n    \"followup\": null\n  }\n]"}],"_postman_id":"be3a6b31-c167-4021-a00a-a0185a7e2830"}],"id":"07778eea-ce06-4334-b9f8-04cd3774abb7","_postman_id":"07778eea-ce06-4334-b9f8-04cd3774abb7","description":""},{"name":"all","item":[{"name":"Get all teams (inboxes)","id":"d35ca5d9-aa36-41a2-b55d-8c1e2e8dbff5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/all?limit=2491&has_membership=true&exclude_unverified=true&exclude_deprioritized=true","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get all teams (inboxes)</p>\n","urlObject":{"path":["teams","all"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Results limit</p>\n","type":"text/plain"},"key":"limit","value":"2491"},{"description":{"content":"<p>Show only those teams where current user is added as member</p>\n","type":"text/plain"},"key":"has_membership","value":"true"},{"description":{"content":"<p>Exclude unverified toll-free numbers: unverified, declined, blocked</p>\n","type":"text/plain"},"key":"exclude_unverified","value":"true"},{"description":{"content":"<p>Exclude deprioritized numbers for Smart Inboxes</p>\n","type":"text/plain"},"key":"exclude_deprioritized","value":"true"}],"variable":[]}},"response":[{"id":"6ea4884a-1f67-4beb-ac91-8d8dc7c3363a","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/all?limit=2491&has_membership=true&exclude_unverified=true&exclude_deprioritized=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","all"],"query":[{"description":"Results limit","key":"limit","value":"2491"},{"description":"Show only those teams where current user is added as member","key":"has_membership","value":"true"},{"description":"Exclude unverified toll-free numbers: unverified, declined, blocked","key":"exclude_unverified","value":"true"},{"description":"Exclude deprioritized numbers for Smart Inboxes","key":"exclude_deprioritized","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 3307,\n    \"organization_id\": 4009,\n    \"owner_id\": 5974,\n    \"default_assigned_user_id\": 2410,\n    \"is_smart\": false,\n    \"is_round_robin\": true,\n    \"color_coding_enabled\": true,\n    \"use_global_conversation_history\": false,\n    \"use_conversation_history\": false,\n    \"round_robin_users\": [\n      183,\n      1729\n    ],\n    \"deprioritized_numbers\": [\n      837,\n      2469\n    ],\n    \"is_geomatch\": true,\n    \"is_hubspot_assignment\": true,\n    \"name\": \"string\",\n    \"inbox_identifier\": \"string\",\n    \"email_to_sms\": null,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"disabled\": null,\n    \"users_count\": 3900,\n    \"member_ids\": [\n      1106,\n      585\n    ],\n    \"business_hours\": null,\n    \"unread\": 0,\n    \"unread_calls\": 4,\n    \"unread_messages_count\": 7,\n    \"unread_mentions_count\": 2,\n    \"number\": {\n      \"id\": 6939,\n      \"organization_id\": 2738,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 9863,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 1100,\n      \"is_landline\": 2383,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 8131,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 2768\n      },\n      \"landline\": {\n        \"id\": 5323,\n        \"number_id\": 3679,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 1981,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 7641,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 7844,\n        \"is_active\": false,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 4994,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 7906,\n        \"number_id\": 4368,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 777,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 3938,\n        \"organization_id\": 916,\n        \"owner_id\": 135,\n        \"team_id\": 8236,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"call_via_aircall\": null,\n    \"numbers\": [\n      {\n        \"id\": 6712,\n        \"organization_id\": 4180,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 9672,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 7857,\n        \"is_landline\": 105,\n        \"is_toll_free\": false,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": false,\n        \"mms\": false,\n        \"disabled\": true,\n        \"has_profile\": false,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 7622,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 1570\n        },\n        \"landline\": {\n          \"id\": 8325,\n          \"number_id\": 3446,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 8311,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 6888,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 9988,\n          \"is_active\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 7243,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": false,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 3356,\n          \"number_id\": 6219,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 5134,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 2589,\n          \"organization_id\": 4681,\n          \"owner_id\": 4480,\n          \"team_id\": 191,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      {\n        \"id\": 598,\n        \"organization_id\": 9411,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 8019,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 3958,\n        \"is_landline\": 2037,\n        \"is_toll_free\": false,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\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\": \"string\",\n        \"area_code\": {\n          \"id\": 9396,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 8973\n        },\n        \"landline\": {\n          \"id\": 5688,\n          \"number_id\": 8820,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 30,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 7623,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 7304,\n          \"is_active\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 3719,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 3469,\n          \"number_id\": 2669,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 9898,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 9849,\n          \"organization_id\": 5862,\n          \"owner_id\": 4981,\n          \"team_id\": 6957,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      }\n    ],\n    \"numbers_count\": 6009,\n    \"voicemail\": null,\n    \"ivr\": null,\n    \"owner\": null,\n    \"is_favorite\": false,\n    \"type\": \"inbox\",\n    \"followup\": null\n  },\n  {\n    \"id\": 4213,\n    \"organization_id\": 557,\n    \"owner_id\": 7868,\n    \"default_assigned_user_id\": 4511,\n    \"is_smart\": false,\n    \"is_round_robin\": true,\n    \"color_coding_enabled\": false,\n    \"use_global_conversation_history\": false,\n    \"use_conversation_history\": true,\n    \"round_robin_users\": [\n      4238,\n      5317\n    ],\n    \"deprioritized_numbers\": [\n      1756,\n      3366\n    ],\n    \"is_geomatch\": false,\n    \"is_hubspot_assignment\": false,\n    \"name\": \"string\",\n    \"inbox_identifier\": \"string\",\n    \"email_to_sms\": null,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"disabled\": null,\n    \"users_count\": 9197,\n    \"member_ids\": [\n      8211,\n      4223\n    ],\n    \"business_hours\": null,\n    \"unread\": 0,\n    \"unread_calls\": 4,\n    \"unread_messages_count\": 7,\n    \"unread_mentions_count\": 2,\n    \"number\": {\n      \"id\": 7059,\n      \"organization_id\": 7615,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 8058,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 1110,\n      \"is_landline\": 4438,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\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\": \"string\",\n      \"area_code\": {\n        \"id\": 9148,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 4192\n      },\n      \"landline\": {\n        \"id\": 2797,\n        \"number_id\": 464,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 7621,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 4685,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3215,\n        \"is_active\": false,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 4461,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 7967,\n        \"number_id\": 9042,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 6240,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 155,\n        \"organization_id\": 9617,\n        \"owner_id\": 152,\n        \"team_id\": 3867,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"call_via_aircall\": null,\n    \"numbers\": [\n      {\n        \"id\": 8142,\n        \"organization_id\": 2449,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 8874,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 442,\n        \"is_landline\": 4873,\n        \"is_toll_free\": true,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": false,\n        \"voice_outbound\": false,\n        \"mms\": false,\n        \"disabled\": false,\n        \"has_profile\": true,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 2905,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 7504\n        },\n        \"landline\": {\n          \"id\": 4103,\n          \"number_id\": 6121,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 6422,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 2737,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 2491,\n          \"is_active\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 9909,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 2477,\n          \"number_id\": 5798,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 2876,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 6350,\n          \"organization_id\": 7604,\n          \"owner_id\": 2020,\n          \"team_id\": 8636,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      {\n        \"id\": 5572,\n        \"organization_id\": 6797,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 6212,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 9510,\n        \"is_landline\": 1125,\n        \"is_toll_free\": true,\n        \"is_mobile\": true,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": true,\n        \"mms\": true,\n        \"disabled\": true,\n        \"has_profile\": true,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 2738,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 6228\n        },\n        \"landline\": {\n          \"id\": 5692,\n          \"number_id\": 2707,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 8553,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 6962,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 168,\n          \"is_active\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 5731,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 9862,\n          \"number_id\": 354,\n          \"is_active\": false,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 6198,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 2442,\n          \"organization_id\": 9026,\n          \"owner_id\": 8515,\n          \"team_id\": 8641,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      }\n    ],\n    \"numbers_count\": 3901,\n    \"voicemail\": null,\n    \"ivr\": null,\n    \"owner\": null,\n    \"is_favorite\": false,\n    \"type\": \"inbox\",\n    \"followup\": null\n  }\n]"}],"_postman_id":"d35ca5d9-aa36-41a2-b55d-8c1e2e8dbff5"}],"id":"cd7344cc-981f-4bc7-b40a-b7845d08236c","_postman_id":"cd7344cc-981f-4bc7-b40a-b7845d08236c","description":""},{"name":"sorted","item":[{"name":"Get sorted teams (inboxes)","id":"27303b76-ec8c-474f-9b88-bbbb6d4f2515","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/sorted","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get sorted teams (inboxes)</p>\n","urlObject":{"path":["teams","sorted"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"7fff0524-8542-4346-8ac8-2c5a6ccbfe4b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/sorted"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 8276,\n      \"organization_id\": 5620,\n      \"owner_id\": 4927,\n      \"default_assigned_user_id\": 771,\n      \"is_smart\": false,\n      \"is_round_robin\": false,\n      \"color_coding_enabled\": false,\n      \"use_global_conversation_history\": true,\n      \"use_conversation_history\": false,\n      \"round_robin_users\": [\n        5131,\n        6130\n      ],\n      \"deprioritized_numbers\": [\n        501,\n        2283\n      ],\n      \"is_geomatch\": false,\n      \"is_hubspot_assignment\": false,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"email_to_sms\": null,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"disabled\": null,\n      \"users_count\": 5476,\n      \"member_ids\": [\n        7157,\n        6975\n      ],\n      \"business_hours\": null,\n      \"unread\": 0,\n      \"unread_calls\": 4,\n      \"unread_messages_count\": 7,\n      \"unread_mentions_count\": 2,\n      \"number\": {\n        \"id\": 2216,\n        \"organization_id\": 3624,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 7082,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 9151,\n        \"is_landline\": 662,\n        \"is_toll_free\": true,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": false,\n        \"mms\": true,\n        \"disabled\": true,\n        \"has_profile\": true,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 2784,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 7882\n        },\n        \"landline\": {\n          \"id\": 541,\n          \"number_id\": 3894,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 7228,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 7985,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 5739,\n          \"is_active\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 4327,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": false,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 8342,\n          \"number_id\": 1002,\n          \"is_active\": false,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 4837,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 4354,\n          \"organization_id\": 6724,\n          \"owner_id\": 2864,\n          \"team_id\": 8536,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      \"call_via_aircall\": null,\n      \"numbers\": [\n        {\n          \"id\": 2518,\n          \"organization_id\": 1525,\n          \"country\": \"string\",\n          \"state\": \"string\",\n          \"city\": \"string\",\n          \"number\": \"string\",\n          \"number_vendor_id\": 4141,\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formattedNumber\": \"string\",\n          \"formatted_number\": \"string\",\n          \"short_code\": 6222,\n          \"is_landline\": 9773,\n          \"is_toll_free\": true,\n          \"is_mobile\": 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\": \"string\",\n          \"area_code\": {\n            \"id\": 7715,\n            \"area_code\": \"string\",\n            \"state_code\": \"string\",\n            \"state_name\": \"string\",\n            \"country_code\": \"string\",\n            \"time_zone\": \"string\",\n            \"group_id\": 8000\n          },\n          \"landline\": {\n            \"id\": 4968,\n            \"number_id\": 6439,\n            \"address_sid\": \"string\",\n            \"sid\": \"string\",\n            \"document_sid\": \"string\",\n            \"status\": \"string\",\n            \"verification_attempts\": 7469,\n            \"last_verify_attempt_at\": \"string\",\n            \"landline_name\": \"string\",\n            \"street_address\": \"string\",\n            \"city\": \"string\",\n            \"state\": \"string\",\n            \"zip_code\": \"string\",\n            \"completed\": 643,\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"number_vendor\": {\n            \"id\": 1638,\n            \"is_active\": false,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"credentials_prefix\": \"string\",\n            \"twilio_sid\": \"string\",\n            \"twilio_auth_token\": \"string\",\n            \"is_billable\": 3177,\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"number_caller_id\": {\n            \"caller_id_sid\": \"string\",\n            \"verified\": false,\n            \"failed_reason\": \"string\"\n          },\n          \"call_forwarding\": {\n            \"id\": 5096,\n            \"number_id\": 3539,\n            \"is_active\": false,\n            \"is_screening\": true,\n            \"is_call_whisper\": false,\n            \"call_whisper\": \"string\",\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"country_calling_code\": \"string\",\n            \"national_number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"extension\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"numberable_id\": 665,\n          \"numberable_type\": \"string\",\n          \"numberable\": {\n            \"id\": 191,\n            \"organization_id\": 5084,\n            \"owner_id\": 5036,\n            \"team_id\": 8374,\n            \"name\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        },\n        {\n          \"id\": 4306,\n          \"organization_id\": 5062,\n          \"country\": \"string\",\n          \"state\": \"string\",\n          \"city\": \"string\",\n          \"number\": \"string\",\n          \"number_vendor_id\": 5031,\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formattedNumber\": \"string\",\n          \"formatted_number\": \"string\",\n          \"short_code\": 3964,\n          \"is_landline\": 5346,\n          \"is_toll_free\": true,\n          \"is_mobile\": true,\n          \"is_aircall\": true,\n          \"voice\": false,\n          \"use_organization_call_settings\": true,\n          \"voice_outbound\": false,\n          \"mms\": true,\n          \"disabled\": false,\n          \"has_profile\": true,\n          \"verified_status\": \"string\",\n          \"area_code\": {\n            \"id\": 4579,\n            \"area_code\": \"string\",\n            \"state_code\": \"string\",\n            \"state_name\": \"string\",\n            \"country_code\": \"string\",\n            \"time_zone\": \"string\",\n            \"group_id\": 9672\n          },\n          \"landline\": {\n            \"id\": 7487,\n            \"number_id\": 528,\n            \"address_sid\": \"string\",\n            \"sid\": \"string\",\n            \"document_sid\": \"string\",\n            \"status\": \"string\",\n            \"verification_attempts\": 4080,\n            \"last_verify_attempt_at\": \"string\",\n            \"landline_name\": \"string\",\n            \"street_address\": \"string\",\n            \"city\": \"string\",\n            \"state\": \"string\",\n            \"zip_code\": \"string\",\n            \"completed\": 2140,\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"number_vendor\": {\n            \"id\": 2511,\n            \"is_active\": true,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"credentials_prefix\": \"string\",\n            \"twilio_sid\": \"string\",\n            \"twilio_auth_token\": \"string\",\n            \"is_billable\": 5249,\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"number_caller_id\": {\n            \"caller_id_sid\": \"string\",\n            \"verified\": true,\n            \"failed_reason\": \"string\"\n          },\n          \"call_forwarding\": {\n            \"id\": 8411,\n            \"number_id\": 975,\n            \"is_active\": true,\n            \"is_screening\": false,\n            \"is_call_whisper\": false,\n            \"call_whisper\": \"string\",\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"country_calling_code\": \"string\",\n            \"national_number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"extension\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"numberable_id\": 2964,\n          \"numberable_type\": \"string\",\n          \"numberable\": {\n            \"id\": 7152,\n            \"organization_id\": 450,\n            \"owner_id\": 7653,\n            \"team_id\": 225,\n            \"name\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        }\n      ],\n      \"numbers_count\": 1379,\n      \"voicemail\": null,\n      \"ivr\": null,\n      \"owner\": null,\n      \"is_favorite\": false,\n      \"type\": \"inbox\",\n      \"followup\": null\n    },\n    {\n      \"id\": 5045,\n      \"organization_id\": 1796,\n      \"owner_id\": 8399,\n      \"default_assigned_user_id\": 6541,\n      \"is_smart\": true,\n      \"is_round_robin\": true,\n      \"color_coding_enabled\": false,\n      \"use_global_conversation_history\": false,\n      \"use_conversation_history\": true,\n      \"round_robin_users\": [\n        943,\n        5317\n      ],\n      \"deprioritized_numbers\": [\n        1995,\n        869\n      ],\n      \"is_geomatch\": true,\n      \"is_hubspot_assignment\": false,\n      \"name\": \"string\",\n      \"inbox_identifier\": \"string\",\n      \"email_to_sms\": null,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"disabled\": null,\n      \"users_count\": 402,\n      \"member_ids\": [\n        8769,\n        4210\n      ],\n      \"business_hours\": null,\n      \"unread\": 0,\n      \"unread_calls\": 4,\n      \"unread_messages_count\": 7,\n      \"unread_mentions_count\": 2,\n      \"number\": {\n        \"id\": 3497,\n        \"organization_id\": 3467,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 8421,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 7453,\n        \"is_landline\": 7651,\n        \"is_toll_free\": true,\n        \"is_mobile\": false,\n        \"is_aircall\": true,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": true,\n        \"mms\": true,\n        \"disabled\": false,\n        \"has_profile\": false,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 1013,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 1922\n        },\n        \"landline\": {\n          \"id\": 9042,\n          \"number_id\": 346,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 8852,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 9640,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 7941,\n          \"is_active\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 784,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 7655,\n          \"number_id\": 6542,\n          \"is_active\": false,\n          \"is_screening\": false,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 4097,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 5644,\n          \"organization_id\": 6105,\n          \"owner_id\": 9396,\n          \"team_id\": 1673,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      \"call_via_aircall\": null,\n      \"numbers\": [\n        {\n          \"id\": 1292,\n          \"organization_id\": 6886,\n          \"country\": \"string\",\n          \"state\": \"string\",\n          \"city\": \"string\",\n          \"number\": \"string\",\n          \"number_vendor_id\": 7555,\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formattedNumber\": \"string\",\n          \"formatted_number\": \"string\",\n          \"short_code\": 2591,\n          \"is_landline\": 1514,\n          \"is_toll_free\": true,\n          \"is_mobile\": true,\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\": false,\n          \"verified_status\": \"string\",\n          \"area_code\": {\n            \"id\": 7868,\n            \"area_code\": \"string\",\n            \"state_code\": \"string\",\n            \"state_name\": \"string\",\n            \"country_code\": \"string\",\n            \"time_zone\": \"string\",\n            \"group_id\": 9573\n          },\n          \"landline\": {\n            \"id\": 7664,\n            \"number_id\": 4876,\n            \"address_sid\": \"string\",\n            \"sid\": \"string\",\n            \"document_sid\": \"string\",\n            \"status\": \"string\",\n            \"verification_attempts\": 8733,\n            \"last_verify_attempt_at\": \"string\",\n            \"landline_name\": \"string\",\n            \"street_address\": \"string\",\n            \"city\": \"string\",\n            \"state\": \"string\",\n            \"zip_code\": \"string\",\n            \"completed\": 4039,\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"number_vendor\": {\n            \"id\": 3384,\n            \"is_active\": false,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"credentials_prefix\": \"string\",\n            \"twilio_sid\": \"string\",\n            \"twilio_auth_token\": \"string\",\n            \"is_billable\": 6152,\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"number_caller_id\": {\n            \"caller_id_sid\": \"string\",\n            \"verified\": true,\n            \"failed_reason\": \"string\"\n          },\n          \"call_forwarding\": {\n            \"id\": 3595,\n            \"number_id\": 4293,\n            \"is_active\": false,\n            \"is_screening\": true,\n            \"is_call_whisper\": false,\n            \"call_whisper\": \"string\",\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"country_calling_code\": \"string\",\n            \"national_number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"extension\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"numberable_id\": 4176,\n          \"numberable_type\": \"string\",\n          \"numberable\": {\n            \"id\": 5776,\n            \"organization_id\": 4609,\n            \"owner_id\": 5378,\n            \"team_id\": 6704,\n            \"name\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        },\n        {\n          \"id\": 7097,\n          \"organization_id\": 1124,\n          \"country\": \"string\",\n          \"state\": \"string\",\n          \"city\": \"string\",\n          \"number\": \"string\",\n          \"number_vendor_id\": 8662,\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formattedNumber\": \"string\",\n          \"formatted_number\": \"string\",\n          \"short_code\": 3109,\n          \"is_landline\": 687,\n          \"is_toll_free\": true,\n          \"is_mobile\": true,\n          \"is_aircall\": false,\n          \"voice\": true,\n          \"use_organization_call_settings\": false,\n          \"voice_outbound\": false,\n          \"mms\": false,\n          \"disabled\": false,\n          \"has_profile\": true,\n          \"verified_status\": \"string\",\n          \"area_code\": {\n            \"id\": 4677,\n            \"area_code\": \"string\",\n            \"state_code\": \"string\",\n            \"state_name\": \"string\",\n            \"country_code\": \"string\",\n            \"time_zone\": \"string\",\n            \"group_id\": 7001\n          },\n          \"landline\": {\n            \"id\": 656,\n            \"number_id\": 6517,\n            \"address_sid\": \"string\",\n            \"sid\": \"string\",\n            \"document_sid\": \"string\",\n            \"status\": \"string\",\n            \"verification_attempts\": 9543,\n            \"last_verify_attempt_at\": \"string\",\n            \"landline_name\": \"string\",\n            \"street_address\": \"string\",\n            \"city\": \"string\",\n            \"state\": \"string\",\n            \"zip_code\": \"string\",\n            \"completed\": 6762,\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"number_vendor\": {\n            \"id\": 2475,\n            \"is_active\": true,\n            \"key\": \"string\",\n            \"name\": \"string\",\n            \"credentials_prefix\": \"string\",\n            \"twilio_sid\": \"string\",\n            \"twilio_auth_token\": \"string\",\n            \"is_billable\": 9407,\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"number_caller_id\": {\n            \"caller_id_sid\": \"string\",\n            \"verified\": true,\n            \"failed_reason\": \"string\"\n          },\n          \"call_forwarding\": {\n            \"id\": 9480,\n            \"number_id\": 6252,\n            \"is_active\": false,\n            \"is_screening\": false,\n            \"is_call_whisper\": false,\n            \"call_whisper\": \"string\",\n            \"country\": \"string\",\n            \"number\": \"string\",\n            \"country_calling_code\": \"string\",\n            \"national_number\": \"string\",\n            \"formatted_number\": \"string\",\n            \"extension\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          },\n          \"numberable_id\": 4465,\n          \"numberable_type\": \"string\",\n          \"numberable\": {\n            \"id\": 959,\n            \"organization_id\": 1959,\n            \"owner_id\": 1410,\n            \"team_id\": 4502,\n            \"name\": \"string\",\n            \"created_at\": \"string\",\n            \"updated_at\": \"string\"\n          }\n        }\n      ],\n      \"numbers_count\": 2742,\n      \"voicemail\": null,\n      \"ivr\": null,\n      \"owner\": null,\n      \"is_favorite\": false,\n      \"type\": \"inbox\",\n      \"followup\": null\n    }\n  ],\n  \"sort_data\": [\n    {\n      \"\": [\n        {\n          \"id\": 8642,\n          \"type\": \"string\"\n        },\n        {\n          \"id\": 6399,\n          \"type\": \"string\"\n        }\n      ]\n    },\n    {\n      \"\": [\n        {\n          \"id\": 5585,\n          \"type\": \"string\"\n        },\n        {\n          \"id\": 2759,\n          \"type\": \"string\"\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"27303b76-ec8c-474f-9b88-bbbb6d4f2515"}],"id":"11390d8b-cff6-49e6-816b-4b9a7c6da36b","_postman_id":"11390d8b-cff6-49e6-816b-4b9a7c6da36b","description":""},{"name":"search","item":[{"name":"Search teams","id":"3c6a8aab-cae0-479a-b6a3-41657baa0bdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/search?per_page=50&page=1&term=string","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Search teams</p>\n","urlObject":{"path":["teams","search"],"host":["https://api.salesmessage.com/pub/v2.3"],"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>The string to search for.</p>\n","type":"text/plain"},"key":"term","value":"string"}],"variable":[]}},"response":[{"id":"bf2c63ce-f42e-4f8c-bfb5-bf51a5e6b297","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/search?per_page=50&page=1&term=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","search"],"query":[{"description":"The maximum number of teams that you want returned from this call.","key":"per_page","value":"50"},{"description":"Page","key":"page","value":"1"},{"description":"The string to search for.","key":"term","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 3307,\n    \"organization_id\": 4009,\n    \"owner_id\": 5974,\n    \"default_assigned_user_id\": 2410,\n    \"is_smart\": false,\n    \"is_round_robin\": true,\n    \"color_coding_enabled\": true,\n    \"use_global_conversation_history\": false,\n    \"use_conversation_history\": false,\n    \"round_robin_users\": [\n      183,\n      1729\n    ],\n    \"deprioritized_numbers\": [\n      837,\n      2469\n    ],\n    \"is_geomatch\": true,\n    \"is_hubspot_assignment\": true,\n    \"name\": \"string\",\n    \"inbox_identifier\": \"string\",\n    \"email_to_sms\": null,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"disabled\": null,\n    \"users_count\": 3900,\n    \"member_ids\": [\n      1106,\n      585\n    ],\n    \"business_hours\": null,\n    \"unread\": 0,\n    \"unread_calls\": 4,\n    \"unread_messages_count\": 7,\n    \"unread_mentions_count\": 2,\n    \"number\": {\n      \"id\": 6939,\n      \"organization_id\": 2738,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 9863,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 1100,\n      \"is_landline\": 2383,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 8131,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 2768\n      },\n      \"landline\": {\n        \"id\": 5323,\n        \"number_id\": 3679,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 1981,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 7641,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 7844,\n        \"is_active\": false,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 4994,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 7906,\n        \"number_id\": 4368,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 777,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 3938,\n        \"organization_id\": 916,\n        \"owner_id\": 135,\n        \"team_id\": 8236,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"call_via_aircall\": null,\n    \"numbers\": [\n      {\n        \"id\": 6712,\n        \"organization_id\": 4180,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 9672,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 7857,\n        \"is_landline\": 105,\n        \"is_toll_free\": false,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": false,\n        \"mms\": false,\n        \"disabled\": true,\n        \"has_profile\": false,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 7622,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 1570\n        },\n        \"landline\": {\n          \"id\": 8325,\n          \"number_id\": 3446,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 8311,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 6888,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 9988,\n          \"is_active\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 7243,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": false,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 3356,\n          \"number_id\": 6219,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 5134,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 2589,\n          \"organization_id\": 4681,\n          \"owner_id\": 4480,\n          \"team_id\": 191,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      {\n        \"id\": 598,\n        \"organization_id\": 9411,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 8019,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 3958,\n        \"is_landline\": 2037,\n        \"is_toll_free\": false,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\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\": \"string\",\n        \"area_code\": {\n          \"id\": 9396,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 8973\n        },\n        \"landline\": {\n          \"id\": 5688,\n          \"number_id\": 8820,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 30,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 7623,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 7304,\n          \"is_active\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 3719,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 3469,\n          \"number_id\": 2669,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 9898,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 9849,\n          \"organization_id\": 5862,\n          \"owner_id\": 4981,\n          \"team_id\": 6957,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      }\n    ],\n    \"numbers_count\": 6009,\n    \"voicemail\": null,\n    \"ivr\": null,\n    \"owner\": null,\n    \"is_favorite\": false,\n    \"type\": \"inbox\",\n    \"followup\": null\n  },\n  {\n    \"id\": 4213,\n    \"organization_id\": 557,\n    \"owner_id\": 7868,\n    \"default_assigned_user_id\": 4511,\n    \"is_smart\": false,\n    \"is_round_robin\": true,\n    \"color_coding_enabled\": false,\n    \"use_global_conversation_history\": false,\n    \"use_conversation_history\": true,\n    \"round_robin_users\": [\n      4238,\n      5317\n    ],\n    \"deprioritized_numbers\": [\n      1756,\n      3366\n    ],\n    \"is_geomatch\": false,\n    \"is_hubspot_assignment\": false,\n    \"name\": \"string\",\n    \"inbox_identifier\": \"string\",\n    \"email_to_sms\": null,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"disabled\": null,\n    \"users_count\": 9197,\n    \"member_ids\": [\n      8211,\n      4223\n    ],\n    \"business_hours\": null,\n    \"unread\": 0,\n    \"unread_calls\": 4,\n    \"unread_messages_count\": 7,\n    \"unread_mentions_count\": 2,\n    \"number\": {\n      \"id\": 7059,\n      \"organization_id\": 7615,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 8058,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 1110,\n      \"is_landline\": 4438,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\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\": \"string\",\n      \"area_code\": {\n        \"id\": 9148,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 4192\n      },\n      \"landline\": {\n        \"id\": 2797,\n        \"number_id\": 464,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 7621,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 4685,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3215,\n        \"is_active\": false,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 4461,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 7967,\n        \"number_id\": 9042,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 6240,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 155,\n        \"organization_id\": 9617,\n        \"owner_id\": 152,\n        \"team_id\": 3867,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"call_via_aircall\": null,\n    \"numbers\": [\n      {\n        \"id\": 8142,\n        \"organization_id\": 2449,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 8874,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 442,\n        \"is_landline\": 4873,\n        \"is_toll_free\": true,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": false,\n        \"voice_outbound\": false,\n        \"mms\": false,\n        \"disabled\": false,\n        \"has_profile\": true,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 2905,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 7504\n        },\n        \"landline\": {\n          \"id\": 4103,\n          \"number_id\": 6121,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 6422,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 2737,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 2491,\n          \"is_active\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 9909,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 2477,\n          \"number_id\": 5798,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 2876,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 6350,\n          \"organization_id\": 7604,\n          \"owner_id\": 2020,\n          \"team_id\": 8636,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      {\n        \"id\": 5572,\n        \"organization_id\": 6797,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 6212,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 9510,\n        \"is_landline\": 1125,\n        \"is_toll_free\": true,\n        \"is_mobile\": true,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": true,\n        \"mms\": true,\n        \"disabled\": true,\n        \"has_profile\": true,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 2738,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 6228\n        },\n        \"landline\": {\n          \"id\": 5692,\n          \"number_id\": 2707,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 8553,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 6962,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 168,\n          \"is_active\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 5731,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 9862,\n          \"number_id\": 354,\n          \"is_active\": false,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 6198,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 2442,\n          \"organization_id\": 9026,\n          \"owner_id\": 8515,\n          \"team_id\": 8641,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      }\n    ],\n    \"numbers_count\": 3901,\n    \"voicemail\": null,\n    \"ivr\": null,\n    \"owner\": null,\n    \"is_favorite\": false,\n    \"type\": \"inbox\",\n    \"followup\": null\n  }\n]"}],"_postman_id":"3c6a8aab-cae0-479a-b6a3-41657baa0bdb"}],"id":"33f41699-2a1f-4d85-820d-cf379e61f8d1","_postman_id":"33f41699-2a1f-4d85-820d-cf379e61f8d1","description":""},{"name":"sort","item":[{"name":"Get user's team sort preferences","id":"cbcc114d-dfe2-413f-a3b8-088b82b490b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/sort","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get user's team sort preferences</p>\n","urlObject":{"path":["teams","sort"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"a44292b7-1c3e-48ff-9448-a289e1aeabd7","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/sort"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"sort\": [\n    {\n      \"id\": 5085,\n      \"order\": 2115\n    },\n    {\n      \"id\": 9856,\n      \"order\": 7955\n    }\n  ]\n}"},{"id":"c70c91ed-7062-47b8-979d-c91f5a12a8c3","name":"Unauthenticated","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.3/teams/sort"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cbcc114d-dfe2-413f-a3b8-088b82b490b4"},{"name":"Update user's team sort preferences","id":"4d90b894-ca50-4887-bc24-89eba335d04b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sort\": [\n    {\n      \"id\": 4966,\n      \"type\": \"string\"\n    },\n    {\n      \"id\": 8198,\n      \"type\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/sort","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Update user's team sort preferences</p>\n","urlObject":{"path":["teams","sort"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"410a7adc-f55a-4c18-87d9-ef98d9ff2bf9","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"sort\": [\n    {\n      \"id\": 4966,\n      \"type\": \"string\"\n    },\n    {\n      \"id\": 8198,\n      \"type\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/sort"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"sort\": [\n    {\n      \"id\": 9539,\n      \"order\": 5156\n    },\n    {\n      \"id\": 1351,\n      \"order\": 7503\n    }\n  ]\n}"},{"id":"13a24c55-2b7c-4c27-8e4e-df67bb7bc541","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"sort\": [\n    {\n      \"id\": 4966,\n      \"type\": \"string\"\n    },\n    {\n      \"id\": 8198,\n      \"type\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/sort"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1362d74b-b72a-41a6-abfa-31505e0fc1cf","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"sort\": [\n    {\n      \"id\": 4966,\n      \"type\": \"string\"\n    },\n    {\n      \"id\": 8198,\n      \"type\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/sort"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4d90b894-ca50-4887-bc24-89eba335d04b"}],"id":"a2ae3909-686d-4b9b-9a97-508f3dc48f3a","_postman_id":"a2ae3909-686d-4b9b-9a97-508f3dc48f3a","description":""},{"name":"groups","item":[{"name":"create","item":[{"name":"Create team group","id":"b1b44a65-ac68-411b-824b-ad218b08cfc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/create?name=string&description=string&team_ids[]=3505.398886117308&team_ids[]=5179.574483081574","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Create team group</p>\n","urlObject":{"path":["teams","groups","create"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Name</p>\n","type":"text/plain"},"key":"name","value":"string"},{"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"description","value":"string"},{"description":{"content":"<p>Team IDs</p>\n","type":"text/plain"},"key":"team_ids[]","value":"3505.398886117308"},{"description":{"content":"<p>Team IDs</p>\n","type":"text/plain"},"key":"team_ids[]","value":"5179.574483081574"}],"variable":[]}},"response":[{"id":"53cfc4ee-a961-4358-8b0c-115dddf7d60c","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/groups/create?name=string&description=string&team_ids[]=5179.574483081574","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","groups","create"],"query":[{"description":"Name","key":"name","value":"string"},{"description":"Description","key":"description","value":"string"},{"description":"Team IDs","key":"team_ids[]","value":"5179.574483081574"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 490,\n  \"organization_id\": 6839,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\"\n}"},{"id":"fa5c3de1-7f27-44ca-b854-b74da1aea800","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.3/teams/groups/create?name=string&description=string&team_ids[]=5179.574483081574","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","groups","create"],"query":[{"description":"Name","key":"name","value":"string"},{"description":"Description","key":"description","value":"string"},{"description":"Team IDs","key":"team_ids[]","value":"5179.574483081574"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b1b44a65-ac68-411b-824b-ad218b08cfc5"}],"id":"a10134a9-eeda-45ad-9261-18e01b470010","_postman_id":"a10134a9-eeda-45ad-9261-18e01b470010","description":""},{"name":"{teamsGroup}","item":[{"name":"add-teams","item":[{"name":"Add teams to team group","id":"f1c7f520-f107-4462-8dcc-249489dd6051","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/:teamsGroup/add-teams?teamIds=3505.398886117308&teamIds=5179.574483081574","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Add teams to team group</p>\n","urlObject":{"path":["teams","groups",":teamsGroup","add-teams"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Team IDs</p>\n","type":"text/plain"},"key":"teamIds","value":"3505.398886117308"},{"description":{"content":"<p>Team IDs</p>\n","type":"text/plain"},"key":"teamIds","value":"5179.574483081574"}],"variable":[{"id":"1b5a2e9a-7203-4603-89cf-fea0d654a58b","description":{"content":"<p>Teams Group ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"teamsGroup"}]}},"response":[{"id":"0b0b6110-f616-45d2-b465-2e5971627bac","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/groups/:teamsGroup/add-teams?teamIds=5179.574483081574","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","groups",":teamsGroup","add-teams"],"query":[{"description":"Team IDs","key":"teamIds","value":"5179.574483081574"}],"variable":[{"key":"teamsGroup","value":"3105.253757479255","description":"Teams Group ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\"\n}"}],"_postman_id":"f1c7f520-f107-4462-8dcc-249489dd6051"}],"id":"f9f58a24-c57f-45f6-9364-c88e638231f2","_postman_id":"f9f58a24-c57f-45f6-9364-c88e638231f2","description":""},{"name":"remove-team","item":[{"name":"{team}","item":[{"name":"Remove team from team group","id":"4ee16c6a-6a8a-4aac-954f-78760ad05dea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/:teamsGroup/remove-team/:team","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Remove team from team group</p>\n","urlObject":{"path":["teams","groups",":teamsGroup","remove-team",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"c9bcff12-ebfe-4c97-94a9-298eb41a4bf1","description":{"content":"<p>Teams Group ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"teamsGroup"},{"id":"7de210fd-a6ce-4b1f-b2ba-440bfc2eafc4","description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"team"}]}},"response":[{"id":"83e07d4f-3a19-4d50-bba9-2ba4fed9028f","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/groups/:teamsGroup/remove-team/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","groups",":teamsGroup","remove-team",":team"],"variable":[{"key":"teamsGroup","value":"3105.253757479255","description":"Teams Group ID"},{"key":"team","value":"3105.253757479255","description":"Team ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\"\n}"}],"_postman_id":"4ee16c6a-6a8a-4aac-954f-78760ad05dea"}],"id":"45f2077e-ed0b-4c4b-b68c-da453f95fd3c","_postman_id":"45f2077e-ed0b-4c4b-b68c-da453f95fd3c","description":""}],"id":"7064f687-577d-4e1c-bfa8-c59767e9b087","_postman_id":"7064f687-577d-4e1c-bfa8-c59767e9b087","description":""},{"name":"Get teams groups","id":"7539d3a8-2801-42dc-ba6f-84b0b0cff050","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/:teamsGroup","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get teams groups</p>\n","urlObject":{"path":["teams","groups",":teamsGroup"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"30dad5b1-4b7b-48d3-a824-b0f870a78775","description":{"content":"<p>Teams Group ID</p>\n","type":"text/plain"},"type":"any","value":"1","key":"teamsGroup"}]}},"response":[{"id":"46f59337-d24b-4a55-aaaa-382a8504791f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/groups/:teamsGroup","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","groups",":teamsGroup"],"variable":[{"key":"teamsGroup","value":"1","description":"Teams Group ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 490,\n  \"organization_id\": 6839,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\"\n}"}],"_postman_id":"7539d3a8-2801-42dc-ba6f-84b0b0cff050"},{"name":"Update team group","id":"468e882f-107e-43cc-8f6a-a4426169d26d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/:teamsGroup?name=string&description=string&teamIds[]=3505.398886117308&teamIds[]=5179.574483081574","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Update team group</p>\n","urlObject":{"path":["teams","groups",":teamsGroup"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Name</p>\n","type":"text/plain"},"key":"name","value":"string"},{"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"description","value":"string"},{"description":{"content":"<p>Team IDs</p>\n","type":"text/plain"},"key":"teamIds[]","value":"3505.398886117308"},{"description":{"content":"<p>Team IDs</p>\n","type":"text/plain"},"key":"teamIds[]","value":"5179.574483081574"}],"variable":[{"id":"e39ebbad-89c6-42f5-a159-996eb77e34a8","description":{"content":"<p>Teams Group ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"teamsGroup"}]}},"response":[{"id":"4f6ca1cf-04c4-4ff2-941a-dec9d3132360","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/groups/:teamsGroup?name=string&description=string&teamIds[]=5179.574483081574","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","groups",":teamsGroup"],"query":[{"description":"Name","key":"name","value":"string"},{"description":"Description","key":"description","value":"string"},{"description":"Team IDs","key":"teamIds[]","value":"5179.574483081574"}],"variable":[{"key":"teamsGroup","value":"3105.253757479255","description":"Teams Group ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 490,\n  \"organization_id\": 6839,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\"\n}"},{"id":"e648694f-0c0b-46a2-9291-2de2f4857e1d","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.3/teams/groups/:teamsGroup?name=string&description=string&teamIds[]=5179.574483081574","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","groups",":teamsGroup"],"query":[{"description":"Name","key":"name","value":"string"},{"description":"Description","key":"description","value":"string"},{"description":"Team IDs","key":"teamIds[]","value":"5179.574483081574"}],"variable":[{"key":"teamsGroup","value":"3105.253757479255","description":"Teams Group ID"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"468e882f-107e-43cc-8f6a-a4426169d26d"},{"name":"Delete team group","id":"42393e2a-25c7-4b79-a51b-c32af61e364a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/:teamsGroup","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Delete team group</p>\n","urlObject":{"path":["teams","groups",":teamsGroup"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"89de43f1-c469-4902-9f18-da1b87cd3bf0","description":{"content":"<p>Teams Group ID</p>\n","type":"text/plain"},"type":"any","value":"3105.253757479255","key":"teamsGroup"}]}},"response":[{"id":"4dc3f950-a2af-454b-ba8b-21d5657deaaa","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams/groups/:teamsGroup","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams","groups",":teamsGroup"],"variable":[{"key":"teamsGroup","value":"3105.253757479255","description":"Teams Group ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\"\n}"}],"_postman_id":"42393e2a-25c7-4b79-a51b-c32af61e364a"}],"id":"5b2242eb-0e3b-40cc-bc59-11a2893f4e24","_postman_id":"5b2242eb-0e3b-40cc-bc59-11a2893f4e24","description":""},{"name":"list","item":[{"name":"Get team groups","id":"0eb6d950-fc32-4d63-9ed9-831be156a1e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/list","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get team groups</p>\n","urlObject":{"path":["teams","groups","list"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"7e2cf498-6a30-4ef7-ae61-50705983e67e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/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\": 5030,\n      \"organization_id\": 723,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 6201,\n      \"organization_id\": 1138,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"0eb6d950-fc32-4d63-9ed9-831be156a1e7"}],"id":"eff3968e-b23d-4423-be10-5ee0a5ac6929","_postman_id":"eff3968e-b23d-4423-be10-5ee0a5ac6929","description":""},{"name":"personal","item":[{"name":"Get personal team groups","id":"4bf23ec7-3344-4075-b6c0-72b0b047eebc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/personal","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />Get personal team groups</p>\n","urlObject":{"path":["teams","groups","personal"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"84497961-d64c-43f9-be46-5e093be3c4e2","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/personal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 5030,\n      \"organization_id\": 723,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 6201,\n      \"organization_id\": 1138,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"4bf23ec7-3344-4075-b6c0-72b0b047eebc"}],"id":"c75ca854-2c74-4f08-9a48-ff12527bf623","_postman_id":"c75ca854-2c74-4f08-9a48-ff12527bf623","description":""},{"name":"move-team","item":[{"name":"Move team","id":"7d3c27aa-0bd6-4639-897f-b62f37d8226b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 2925,\n  \"from_group_id\": 9970,\n  \"to_group_id\": 641\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/move-team","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Move team</p>\n","urlObject":{"path":["teams","groups","move-team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"9d406a45-3dd0-4b49-bb87-f18f4461ef41","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team_id\": 2925,\n  \"from_group_id\": 9970,\n  \"to_group_id\": 641\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/groups/move-team"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\"\n}"}],"_postman_id":"7d3c27aa-0bd6-4639-897f-b62f37d8226b"}],"id":"f4c39597-9c60-4d94-a5ae-d97c5409b416","_postman_id":"f4c39597-9c60-4d94-a5ae-d97c5409b416","description":""}],"id":"3d38c4cd-00c1-479e-ae67-6db5a0203f3f","_postman_id":"3d38c4cd-00c1-479e-ae67-6db5a0203f3f","description":""},{"name":"update-emails-to-sms","item":[{"name":"Update email to SMS settings for multiple teams","id":"857d28a5-c001-4ae5-9bf6-bab7f6bd4b0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"email\": \"string\",\n      \"team_ids\": [\n        8053,\n        2031\n      ]\n    },\n    {\n      \"email\": \"string\",\n      \"team_ids\": [\n        4333,\n        6460\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/update-emails-to-sms","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Update email to SMS settings for multiple teams</p>\n","urlObject":{"path":["teams","update-emails-to-sms"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"89983876-bf8b-467a-a4a3-e12ac2bb42ee","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"email\": \"string\",\n      \"team_ids\": [\n        8053,\n        2031\n      ]\n    },\n    {\n      \"email\": \"string\",\n      \"team_ids\": [\n        4333,\n        6460\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/update-emails-to-sms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\"\n}"},{"id":"5d1e0ad1-dad0-49d6-99ba-b5cd0a21453e","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"email\": \"string\",\n      \"team_ids\": [\n        8053,\n        2031\n      ]\n    },\n    {\n      \"email\": \"string\",\n      \"team_ids\": [\n        4333,\n        6460\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/update-emails-to-sms"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"af15719c-9aea-4db8-8e24-966ba93e1e8e","name":"Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"email\": \"string\",\n      \"team_ids\": [\n        8053,\n        2031\n      ]\n    },\n    {\n      \"email\": \"string\",\n      \"team_ids\": [\n        4333,\n        6460\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/update-emails-to-sms"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7fafdff1-c8a1-46fe-a111-925567c0064a","name":"Validation error or empty team ids","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"email\": \"string\",\n      \"team_ids\": [\n        8053,\n        2031\n      ]\n    },\n    {\n      \"email\": \"string\",\n      \"team_ids\": [\n        4333,\n        6460\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/teams/update-emails-to-sms"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"error\",\n  \"message\": \"Team ids can not be empty\"\n}"}],"_postman_id":"857d28a5-c001-4ae5-9bf6-bab7f6bd4b0c"}],"id":"3f80b2eb-39f8-4aa2-a879-e2b789b0eaf1","_postman_id":"3f80b2eb-39f8-4aa2-a879-e2b789b0eaf1","description":""},{"name":"Get teams (inboxes)","id":"196c0d1d-b8e8-44ef-ab13-ba9e658a2506","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams?limit=2491&has_membership=true&exclude_unverified=true&exclude_deprioritized=true","description":"<p>REQUIRED SCOPES <code>['teams:read']</code><br />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.3"],"query":[{"description":{"content":"<p>Results limit</p>\n","type":"text/plain"},"key":"limit","value":"2491"},{"description":{"content":"<p>Show only those teams where current user is added as member</p>\n","type":"text/plain"},"key":"has_membership","value":"true"},{"description":{"content":"<p>Exclude unverified toll-free numbers: unverified, declined, blocked</p>\n","type":"text/plain"},"key":"exclude_unverified","value":"true"},{"description":{"content":"<p>Exclude deprioritized numbers for Smart Inboxes</p>\n","type":"text/plain"},"key":"exclude_deprioritized","value":"true"}],"variable":[]}},"response":[{"id":"37c257fe-a724-4ad6-a5ba-94518f3e1fc1","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams?limit=2491&has_membership=true&exclude_unverified=true&exclude_deprioritized=true","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams"],"query":[{"description":"Results limit","key":"limit","value":"2491"},{"description":"Show only those teams where current user is added as member","key":"has_membership","value":"true"},{"description":"Exclude unverified toll-free numbers: unverified, declined, blocked","key":"exclude_unverified","value":"true"},{"description":"Exclude deprioritized numbers for Smart Inboxes","key":"exclude_deprioritized","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 3307,\n    \"organization_id\": 4009,\n    \"owner_id\": 5974,\n    \"default_assigned_user_id\": 2410,\n    \"is_smart\": false,\n    \"is_round_robin\": true,\n    \"color_coding_enabled\": true,\n    \"use_global_conversation_history\": false,\n    \"use_conversation_history\": false,\n    \"round_robin_users\": [\n      183,\n      1729\n    ],\n    \"deprioritized_numbers\": [\n      837,\n      2469\n    ],\n    \"is_geomatch\": true,\n    \"is_hubspot_assignment\": true,\n    \"name\": \"string\",\n    \"inbox_identifier\": \"string\",\n    \"email_to_sms\": null,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"disabled\": null,\n    \"users_count\": 3900,\n    \"member_ids\": [\n      1106,\n      585\n    ],\n    \"business_hours\": null,\n    \"unread\": 0,\n    \"unread_calls\": 4,\n    \"unread_messages_count\": 7,\n    \"unread_mentions_count\": 2,\n    \"number\": {\n      \"id\": 6939,\n      \"organization_id\": 2738,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 9863,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 1100,\n      \"is_landline\": 2383,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": false,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": false,\n      \"disabled\": false,\n      \"has_profile\": false,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 8131,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 2768\n      },\n      \"landline\": {\n        \"id\": 5323,\n        \"number_id\": 3679,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 1981,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 7641,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 7844,\n        \"is_active\": false,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 4994,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 7906,\n        \"number_id\": 4368,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 777,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 3938,\n        \"organization_id\": 916,\n        \"owner_id\": 135,\n        \"team_id\": 8236,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"call_via_aircall\": null,\n    \"numbers\": [\n      {\n        \"id\": 6712,\n        \"organization_id\": 4180,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 9672,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 7857,\n        \"is_landline\": 105,\n        \"is_toll_free\": false,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": false,\n        \"mms\": false,\n        \"disabled\": true,\n        \"has_profile\": false,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 7622,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 1570\n        },\n        \"landline\": {\n          \"id\": 8325,\n          \"number_id\": 3446,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 8311,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 6888,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 9988,\n          \"is_active\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 7243,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": false,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 3356,\n          \"number_id\": 6219,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 5134,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 2589,\n          \"organization_id\": 4681,\n          \"owner_id\": 4480,\n          \"team_id\": 191,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      {\n        \"id\": 598,\n        \"organization_id\": 9411,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 8019,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 3958,\n        \"is_landline\": 2037,\n        \"is_toll_free\": false,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\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\": \"string\",\n        \"area_code\": {\n          \"id\": 9396,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 8973\n        },\n        \"landline\": {\n          \"id\": 5688,\n          \"number_id\": 8820,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 30,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 7623,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 7304,\n          \"is_active\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 3719,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 3469,\n          \"number_id\": 2669,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": false,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 9898,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 9849,\n          \"organization_id\": 5862,\n          \"owner_id\": 4981,\n          \"team_id\": 6957,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      }\n    ],\n    \"numbers_count\": 6009,\n    \"voicemail\": null,\n    \"ivr\": null,\n    \"owner\": null,\n    \"is_favorite\": false,\n    \"type\": \"inbox\",\n    \"followup\": null\n  },\n  {\n    \"id\": 4213,\n    \"organization_id\": 557,\n    \"owner_id\": 7868,\n    \"default_assigned_user_id\": 4511,\n    \"is_smart\": false,\n    \"is_round_robin\": true,\n    \"color_coding_enabled\": false,\n    \"use_global_conversation_history\": false,\n    \"use_conversation_history\": true,\n    \"round_robin_users\": [\n      4238,\n      5317\n    ],\n    \"deprioritized_numbers\": [\n      1756,\n      3366\n    ],\n    \"is_geomatch\": false,\n    \"is_hubspot_assignment\": false,\n    \"name\": \"string\",\n    \"inbox_identifier\": \"string\",\n    \"email_to_sms\": null,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"disabled\": null,\n    \"users_count\": 9197,\n    \"member_ids\": [\n      8211,\n      4223\n    ],\n    \"business_hours\": null,\n    \"unread\": 0,\n    \"unread_calls\": 4,\n    \"unread_messages_count\": 7,\n    \"unread_mentions_count\": 2,\n    \"number\": {\n      \"id\": 7059,\n      \"organization_id\": 7615,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 8058,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 1110,\n      \"is_landline\": 4438,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\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\": \"string\",\n      \"area_code\": {\n        \"id\": 9148,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 4192\n      },\n      \"landline\": {\n        \"id\": 2797,\n        \"number_id\": 464,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 7621,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 4685,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3215,\n        \"is_active\": false,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 4461,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 7967,\n        \"number_id\": 9042,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 6240,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 155,\n        \"organization_id\": 9617,\n        \"owner_id\": 152,\n        \"team_id\": 3867,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    \"call_via_aircall\": null,\n    \"numbers\": [\n      {\n        \"id\": 8142,\n        \"organization_id\": 2449,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 8874,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 442,\n        \"is_landline\": 4873,\n        \"is_toll_free\": true,\n        \"is_mobile\": false,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": false,\n        \"voice_outbound\": false,\n        \"mms\": false,\n        \"disabled\": false,\n        \"has_profile\": true,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 2905,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 7504\n        },\n        \"landline\": {\n          \"id\": 4103,\n          \"number_id\": 6121,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 6422,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 2737,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 2491,\n          \"is_active\": true,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 9909,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 2477,\n          \"number_id\": 5798,\n          \"is_active\": true,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 2876,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 6350,\n          \"organization_id\": 7604,\n          \"owner_id\": 2020,\n          \"team_id\": 8636,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      },\n      {\n        \"id\": 5572,\n        \"organization_id\": 6797,\n        \"country\": \"string\",\n        \"state\": \"string\",\n        \"city\": \"string\",\n        \"number\": \"string\",\n        \"number_vendor_id\": 6212,\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formattedNumber\": \"string\",\n        \"formatted_number\": \"string\",\n        \"short_code\": 9510,\n        \"is_landline\": 1125,\n        \"is_toll_free\": true,\n        \"is_mobile\": true,\n        \"is_aircall\": false,\n        \"voice\": true,\n        \"use_organization_call_settings\": true,\n        \"voice_outbound\": true,\n        \"mms\": true,\n        \"disabled\": true,\n        \"has_profile\": true,\n        \"verified_status\": \"string\",\n        \"area_code\": {\n          \"id\": 2738,\n          \"area_code\": \"string\",\n          \"state_code\": \"string\",\n          \"state_name\": \"string\",\n          \"country_code\": \"string\",\n          \"time_zone\": \"string\",\n          \"group_id\": 6228\n        },\n        \"landline\": {\n          \"id\": 5692,\n          \"number_id\": 2707,\n          \"address_sid\": \"string\",\n          \"sid\": \"string\",\n          \"document_sid\": \"string\",\n          \"status\": \"string\",\n          \"verification_attempts\": 8553,\n          \"last_verify_attempt_at\": \"string\",\n          \"landline_name\": \"string\",\n          \"street_address\": \"string\",\n          \"city\": \"string\",\n          \"state\": \"string\",\n          \"zip_code\": \"string\",\n          \"completed\": 6962,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_vendor\": {\n          \"id\": 168,\n          \"is_active\": false,\n          \"key\": \"string\",\n          \"name\": \"string\",\n          \"credentials_prefix\": \"string\",\n          \"twilio_sid\": \"string\",\n          \"twilio_auth_token\": \"string\",\n          \"is_billable\": 5731,\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"number_caller_id\": {\n          \"caller_id_sid\": \"string\",\n          \"verified\": true,\n          \"failed_reason\": \"string\"\n        },\n        \"call_forwarding\": {\n          \"id\": 9862,\n          \"number_id\": 354,\n          \"is_active\": false,\n          \"is_screening\": true,\n          \"is_call_whisper\": true,\n          \"call_whisper\": \"string\",\n          \"country\": \"string\",\n          \"number\": \"string\",\n          \"country_calling_code\": \"string\",\n          \"national_number\": \"string\",\n          \"formatted_number\": \"string\",\n          \"extension\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        },\n        \"numberable_id\": 6198,\n        \"numberable_type\": \"string\",\n        \"numberable\": {\n          \"id\": 2442,\n          \"organization_id\": 9026,\n          \"owner_id\": 8515,\n          \"team_id\": 8641,\n          \"name\": \"string\",\n          \"created_at\": \"string\",\n          \"updated_at\": \"string\"\n        }\n      }\n    ],\n    \"numbers_count\": 3901,\n    \"voicemail\": null,\n    \"ivr\": null,\n    \"owner\": null,\n    \"is_favorite\": false,\n    \"type\": \"inbox\",\n    \"followup\": null\n  }\n]"}],"_postman_id":"196c0d1d-b8e8-44ef-ab13-ba9e658a2506"},{"name":"Create team","id":"fd6d07da-c3cb-4dd8-81c5-7cfa4bef98c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/teams?number=string&name=string&number_vendor_id=3105.253757479255&members[]=3505.398886117308&members[]=5179.574483081574&vendor_id=string","description":"<p>REQUIRED SCOPES <code>['teams:write']</code><br />Create team</p>\n","urlObject":{"path":["teams"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Number</p>\n","type":"text/plain"},"key":"number","value":"string"},{"description":{"content":"<p>Name</p>\n","type":"text/plain"},"key":"name","value":"string"},{"description":{"content":"<p>Number Vendor ID</p>\n","type":"text/plain"},"key":"number_vendor_id","value":"3105.253757479255"},{"description":{"content":"<p>Member IDs</p>\n","type":"text/plain"},"key":"members[]","value":"3505.398886117308"},{"description":{"content":"<p>Member IDs</p>\n","type":"text/plain"},"key":"members[]","value":"5179.574483081574"},{"description":{"content":"<p>Vendor ID</p>\n","type":"text/plain"},"key":"vendor_id","value":"string"}],"variable":[]}},"response":[{"id":"b1d2b1c6-2a9d-4366-bb83-d83fad5ee7e8","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams?number=string&name=string&number_vendor_id=3105.253757479255&members[]=5179.574483081574&vendor_id=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams"],"query":[{"description":"Number","key":"number","value":"string"},{"description":"Name","key":"name","value":"string"},{"description":"Number Vendor ID","key":"number_vendor_id","value":"3105.253757479255"},{"description":"Member IDs","key":"members[]","value":"5179.574483081574"},{"description":"Vendor ID","key":"vendor_id","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6243,\n  \"organization_id\": 2519,\n  \"owner_id\": 1295,\n  \"default_assigned_user_id\": 5012,\n  \"is_smart\": false,\n  \"is_round_robin\": true,\n  \"color_coding_enabled\": false,\n  \"use_global_conversation_history\": false,\n  \"use_conversation_history\": true,\n  \"round_robin_users\": [\n    4705,\n    1954\n  ],\n  \"deprioritized_numbers\": [\n    5667,\n    631\n  ],\n  \"is_geomatch\": true,\n  \"is_hubspot_assignment\": true,\n  \"name\": \"string\",\n  \"inbox_identifier\": \"string\",\n  \"email_to_sms\": null,\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"disabled\": null,\n  \"users_count\": 9171,\n  \"member_ids\": [\n    3974,\n    915\n  ],\n  \"business_hours\": null,\n  \"unread\": 0,\n  \"unread_calls\": 4,\n  \"unread_messages_count\": 7,\n  \"unread_mentions_count\": 2,\n  \"number\": {\n    \"id\": 6369,\n    \"organization_id\": 2821,\n    \"country\": \"string\",\n    \"state\": \"string\",\n    \"city\": \"string\",\n    \"number\": \"string\",\n    \"number_vendor_id\": 6300,\n    \"country_calling_code\": \"string\",\n    \"national_number\": \"string\",\n    \"formattedNumber\": \"string\",\n    \"formatted_number\": \"string\",\n    \"short_code\": 145,\n    \"is_landline\": 8020,\n    \"is_toll_free\": true,\n    \"is_mobile\": true,\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\": true,\n    \"verified_status\": \"string\",\n    \"area_code\": {\n      \"id\": 6793,\n      \"area_code\": \"string\",\n      \"state_code\": \"string\",\n      \"state_name\": \"string\",\n      \"country_code\": \"string\",\n      \"time_zone\": \"string\",\n      \"group_id\": 8806\n    },\n    \"landline\": {\n      \"id\": 8458,\n      \"number_id\": 5909,\n      \"address_sid\": \"string\",\n      \"sid\": \"string\",\n      \"document_sid\": \"string\",\n      \"status\": \"string\",\n      \"verification_attempts\": 2979,\n      \"last_verify_attempt_at\": \"string\",\n      \"landline_name\": \"string\",\n      \"street_address\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"zip_code\": \"string\",\n      \"completed\": 9089,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_vendor\": {\n      \"id\": 5072,\n      \"is_active\": false,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"credentials_prefix\": \"string\",\n      \"twilio_sid\": \"string\",\n      \"twilio_auth_token\": \"string\",\n      \"is_billable\": 7453,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"number_caller_id\": {\n      \"caller_id_sid\": \"string\",\n      \"verified\": false,\n      \"failed_reason\": \"string\"\n    },\n    \"call_forwarding\": {\n      \"id\": 9556,\n      \"number_id\": 8638,\n      \"is_active\": true,\n      \"is_screening\": false,\n      \"is_call_whisper\": true,\n      \"call_whisper\": \"string\",\n      \"country\": \"string\",\n      \"number\": \"string\",\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formatted_number\": \"string\",\n      \"extension\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    \"numberable_id\": 2260,\n    \"numberable_type\": \"string\",\n    \"numberable\": {\n      \"id\": 4449,\n      \"organization_id\": 4642,\n      \"owner_id\": 2818,\n      \"team_id\": 9962,\n      \"name\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  },\n  \"call_via_aircall\": null,\n  \"numbers\": [\n    {\n      \"id\": 9908,\n      \"organization_id\": 5588,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 5589,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 4276,\n      \"is_landline\": 2087,\n      \"is_toll_free\": true,\n      \"is_mobile\": true,\n      \"is_aircall\": false,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": true,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 7249,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 7979\n      },\n      \"landline\": {\n        \"id\": 1140,\n        \"number_id\": 8193,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 641,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 2427,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 3250,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8149,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": true,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 6905,\n        \"number_id\": 6241,\n        \"is_active\": true,\n        \"is_screening\": false,\n        \"is_call_whisper\": true,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 168,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8041,\n        \"organization_id\": 2165,\n        \"owner_id\": 497,\n        \"team_id\": 9150,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    },\n    {\n      \"id\": 6228,\n      \"organization_id\": 3421,\n      \"country\": \"string\",\n      \"state\": \"string\",\n      \"city\": \"string\",\n      \"number\": \"string\",\n      \"number_vendor_id\": 6543,\n      \"country_calling_code\": \"string\",\n      \"national_number\": \"string\",\n      \"formattedNumber\": \"string\",\n      \"formatted_number\": \"string\",\n      \"short_code\": 5454,\n      \"is_landline\": 8430,\n      \"is_toll_free\": false,\n      \"is_mobile\": false,\n      \"is_aircall\": true,\n      \"voice\": true,\n      \"use_organization_call_settings\": true,\n      \"voice_outbound\": false,\n      \"mms\": true,\n      \"disabled\": true,\n      \"has_profile\": true,\n      \"verified_status\": \"string\",\n      \"area_code\": {\n        \"id\": 860,\n        \"area_code\": \"string\",\n        \"state_code\": \"string\",\n        \"state_name\": \"string\",\n        \"country_code\": \"string\",\n        \"time_zone\": \"string\",\n        \"group_id\": 5796\n      },\n      \"landline\": {\n        \"id\": 5201,\n        \"number_id\": 414,\n        \"address_sid\": \"string\",\n        \"sid\": \"string\",\n        \"document_sid\": \"string\",\n        \"status\": \"string\",\n        \"verification_attempts\": 435,\n        \"last_verify_attempt_at\": \"string\",\n        \"landline_name\": \"string\",\n        \"street_address\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"zip_code\": \"string\",\n        \"completed\": 8030,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_vendor\": {\n        \"id\": 4989,\n        \"is_active\": true,\n        \"key\": \"string\",\n        \"name\": \"string\",\n        \"credentials_prefix\": \"string\",\n        \"twilio_sid\": \"string\",\n        \"twilio_auth_token\": \"string\",\n        \"is_billable\": 8502,\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"number_caller_id\": {\n        \"caller_id_sid\": \"string\",\n        \"verified\": false,\n        \"failed_reason\": \"string\"\n      },\n      \"call_forwarding\": {\n        \"id\": 1154,\n        \"number_id\": 5364,\n        \"is_active\": true,\n        \"is_screening\": true,\n        \"is_call_whisper\": false,\n        \"call_whisper\": \"string\",\n        \"country\": \"string\",\n        \"number\": \"string\",\n        \"country_calling_code\": \"string\",\n        \"national_number\": \"string\",\n        \"formatted_number\": \"string\",\n        \"extension\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      },\n      \"numberable_id\": 9761,\n      \"numberable_type\": \"string\",\n      \"numberable\": {\n        \"id\": 8062,\n        \"organization_id\": 670,\n        \"owner_id\": 2030,\n        \"team_id\": 166,\n        \"name\": \"string\",\n        \"created_at\": \"string\",\n        \"updated_at\": \"string\"\n      }\n    }\n  ],\n  \"numbers_count\": 5594,\n  \"voicemail\": null,\n  \"ivr\": null,\n  \"owner\": null,\n  \"is_favorite\": false,\n  \"type\": \"inbox\",\n  \"followup\": null\n}"},{"id":"1008f815-f34a-4506-9a6c-7cfdb2e04222","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.3/teams?number=string&name=string&number_vendor_id=3105.253757479255&members[]=5179.574483081574&vendor_id=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams"],"query":[{"description":"Number","key":"number","value":"string"},{"description":"Name","key":"name","value":"string"},{"description":"Number Vendor ID","key":"number_vendor_id","value":"3105.253757479255"},{"description":"Member IDs","key":"members[]","value":"5179.574483081574"},{"description":"Vendor ID","key":"vendor_id","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0f8ca85b-ea01-4d90-9980-d3d72e5264a5","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/teams?number=string&name=string&number_vendor_id=3105.253757479255&members[]=5179.574483081574&vendor_id=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["teams"],"query":[{"description":"Number","key":"number","value":"string"},{"description":"Name","key":"name","value":"string"},{"description":"Number Vendor ID","key":"number_vendor_id","value":"3105.253757479255"},{"description":"Member IDs","key":"members[]","value":"5179.574483081574"},{"description":"Vendor ID","key":"vendor_id","value":"string"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"number\": \"string\"\n}"}],"_postman_id":"fd6d07da-c3cb-4dd8-81c5-7cfa4bef98c0"}],"id":"eaf6e84a-1e8f-4620-bc13-71ab68f39928","_postman_id":"eaf6e84a-1e8f-4620-bc13-71ab68f39928","description":""},{"name":"triggers","item":[{"name":"contacts","item":[{"name":"{trigger}","item":[{"name":"export","item":[{"name":"Export trigger contacts","id":"7d1b6c9b-df1f-4c31-885c-b2c6448655c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/triggers/contacts/:trigger/export?filter=string","description":"<p>REQUIRED SCOPES <code>['triggers:read']</code><br />Export trigger contacts</p>\n","urlObject":{"path":["triggers","contacts",":trigger","export"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Filter</p>\n","type":"text/plain"},"key":"filter","value":"string"}],"variable":[{"id":"5e7ca7bc-34c4-4f81-9297-bec476dfa134","description":{"content":"<p>The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"","key":"trigger"}]}},"response":[{"id":"8baf7f97-7e2b-4bb6-95f9-2aa5bfb3ea7e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/triggers/contacts/:trigger/export?filter=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["triggers","contacts",":trigger","export"],"query":[{"description":"Filter","key":"filter","value":"string"}],"variable":[{"key":"trigger","value":"","description":"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":"7d1b6c9b-df1f-4c31-885c-b2c6448655c0"}],"id":"84cdda53-f20c-44af-b5b8-21b44db0554e","_postman_id":"84cdda53-f20c-44af-b5b8-21b44db0554e","description":""},{"name":"Get trigger contacts","id":"f7869160-5a62-4e21-bca7-32d85c04cdd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/triggers/contacts/:trigger?filter=string&page=1&length=10","description":"<p>REQUIRED SCOPES <code>['triggers:read']</code><br />Get trigger contacts</p>\n","urlObject":{"path":["triggers","contacts",":trigger"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Filter</p>\n","type":"text/plain"},"key":"filter","value":"string"},{"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":"4b209f82-196c-4a12-8aef-d179490fe399","description":{"content":"<p>The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"","key":"trigger"}]}},"response":[{"id":"c11158e1-e693-41df-a3c3-50f0818a4f45","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/triggers/contacts/:trigger?filter=string&page=1&length=10","host":["https://api.salesmessage.com/pub/v2.3"],"path":["triggers","contacts",":trigger"],"query":[{"description":"Filter","key":"filter","value":"string"},{"description":"The page of a collection to return.","key":"page","value":"1"},{"description":"The number of items to return per page.","key":"length","value":"10"}],"variable":[{"key":"trigger","value":"","description":"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\": 6054,\n  \"owner_id\": 1691,\n  \"color\": \"string\",\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"email\": \"string\",\n  \"photo_url\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"country_calling_code\": \"string\",\n  \"national_number\": \"string\",\n  \"typeted_number\": \"string\",\n  \"is_blocked\": true,\n  \"opt_out\": false,\n  \"opt_out_at\": \"string\",\n  \"opt_in_request_at\": \"string\",\n  \"opt_in_requests\": [\n    {\n      \"number_id\": 8391\n    },\n    {\n      \"number_id\": 6807\n    }\n  ],\n  \"opt_in_at\": \"string\",\n  \"shortcode_opt_outs\": [\n    {\n      \"id\": 1464,\n      \"number_id\": 5491,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    },\n    {\n      \"id\": 4354,\n      \"number_id\": 8394,\n      \"name\": \"string\",\n      \"disabled\": true,\n      \"timestamp\": \"string\",\n      \"value\": false\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"integration_vendor_id\": 7761,\n  \"prevent_autolink\": false,\n  \"integration\": [\n    {\n      \"id\": 8129,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    },\n    {\n      \"id\": 4341,\n      \"key\": \"string\",\n      \"name\": \"string\",\n      \"photo_url\": \"string\"\n    }\n  ],\n  \"custom_fields\": [\n    {\n      \"id\": 5970,\n      \"custom_field_id\": 4282,\n      \"contact_id\": 7765,\n      \"field_key\": \"string\",\n      \"organization_id\": 6877,\n      \"text\": \"string\",\n      \"number\": 8409,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"id\": 5155,\n      \"custom_field_id\": 9958,\n      \"contact_id\": 3561,\n      \"field_key\": \"string\",\n      \"organization_id\": 2354,\n      \"text\": \"string\",\n      \"number\": 6302,\n      \"date\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\",\n      \"value\": [\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"type\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 2131,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    },\n    {\n      \"id\": 1647,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"created_at\": \"string\"\n    }\n  ],\n  \"notes\": [\n    {\n      \"id\": 4688,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    },\n    {\n      \"id\": 7568,\n      \"text\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"f7869160-5a62-4e21-bca7-32d85c04cdd8"}],"id":"a08bcc5a-60e7-4eff-9539-a9e10de60afe","_postman_id":"a08bcc5a-60e7-4eff-9539-a9e10de60afe","description":""}],"id":"403a6047-1b6b-46e7-9db8-52c5f8e40073","_postman_id":"403a6047-1b6b-46e7-9db8-52c5f8e40073","description":""},{"name":"{trigger}","item":[{"name":"Get trigger","id":"1f27e0cd-fc7d-4ce8-97f1-b7458351c659","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/triggers/:trigger","description":"<p>REQUIRED SCOPES <code>['triggers:read']</code><br />Get trigger</p>\n","urlObject":{"path":["triggers",":trigger"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"a572af48-3493-4b6b-91b0-4660e68b563d","description":{"content":"<p>The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"","key":"trigger"}]}},"response":[{"id":"8fc64160-7903-4ae5-a2f9-e94e1c88866e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/triggers/:trigger","host":["https://api.salesmessage.com/pub/v2.3"],"path":["triggers",":trigger"],"variable":[{"key":"trigger","value":"","description":"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\": 174,\n  \"organization_id\": 7951,\n  \"integration_id\": \"string\",\n  \"owner_id\": 6312,\n  \"organization_number_id\": 7794,\n  \"number_id\": 6874,\n  \"team_id\": 8156,\n  \"is_active\": false,\n  \"name\": \"string\",\n  \"type\": \"string\",\n  \"service_property\": \"string\",\n  \"owner_property\": \"string\",\n  \"message\": \"string\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"last_received_date\": \"2012-11-17T03:45:13.055Z\",\n  \"disabled_at\": \"1956-02-04T15:09:20.880Z\",\n  \"created_at\": \"1954-01-31T19:28:56.968Z\",\n  \"updated_at\": \"2010-06-03T22:15:09.276Z\",\n  \"integration_name\": \"string\",\n  \"tag_ids\": [\n    5946,\n    6576\n  ],\n  \"integration\": {},\n  \"webhook\": {},\n  \"number\": {},\n  \"team\": {},\n  \"owner\": {},\n  \"analytics\": {},\n  \"is_track_conversion\": true,\n  \"conversion_id\": 8698,\n  \"is_rvm\": true,\n  \"send_form\": [\n    6495,\n    5033\n  ],\n  \"all_statistics\": [\n    3159,\n    4836\n  ]\n}"}],"_postman_id":"1f27e0cd-fc7d-4ce8-97f1-b7458351c659"},{"name":"Update trigger","id":"ea3c3bf7-522d-4107-8492-875b9c7f8b3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"message\": \"string\",\n  \"number_id\": 8599\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/triggers/:trigger","description":"<p>REQUIRED SCOPES <code>['triggers:write']</code><br />Updatetrigger</p>\n","urlObject":{"path":["triggers",":trigger"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"e5ede591-5235-4ea6-8403-e40fb2015f8d","description":{"content":"<p>The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"","key":"trigger"}]}},"response":[{"id":"4608b52c-6308-44ad-8caa-7a0136a934e9","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"message\": \"string\",\n  \"number_id\": 8599\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/triggers/:trigger","host":["https://api.salesmessage.com/pub/v2.3"],"path":["triggers",":trigger"],"variable":[{"key":"trigger","value":"","description":"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\": 174,\n  \"organization_id\": 7951,\n  \"integration_id\": \"string\",\n  \"owner_id\": 6312,\n  \"organization_number_id\": 7794,\n  \"number_id\": 6874,\n  \"team_id\": 8156,\n  \"is_active\": false,\n  \"name\": \"string\",\n  \"type\": \"string\",\n  \"service_property\": \"string\",\n  \"owner_property\": \"string\",\n  \"message\": \"string\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"last_received_date\": \"2012-11-17T03:45:13.055Z\",\n  \"disabled_at\": \"1956-02-04T15:09:20.880Z\",\n  \"created_at\": \"1954-01-31T19:28:56.968Z\",\n  \"updated_at\": \"2010-06-03T22:15:09.276Z\",\n  \"integration_name\": \"string\",\n  \"tag_ids\": [\n    5946,\n    6576\n  ],\n  \"integration\": {},\n  \"webhook\": {},\n  \"number\": {},\n  \"team\": {},\n  \"owner\": {},\n  \"analytics\": {},\n  \"is_track_conversion\": true,\n  \"conversion_id\": 8698,\n  \"is_rvm\": true,\n  \"send_form\": [\n    6495,\n    5033\n  ],\n  \"all_statistics\": [\n    3159,\n    4836\n  ]\n}"},{"id":"0e2a737f-c46a-4306-885e-4bd72cb0bb06","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"message\": \"string\",\n  \"number_id\": 8599\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/triggers/:trigger","host":["https://api.salesmessage.com/pub/v2.3"],"path":["triggers",":trigger"],"variable":[{"key":"trigger","value":"","description":"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\": \"string\"\n}"}],"_postman_id":"ea3c3bf7-522d-4107-8492-875b9c7f8b3a"},{"name":"Delete trigger","id":"780198af-702f-40c0-8724-c0de469f1989","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.salesmessage.com/pub/v2.3/triggers/:trigger","description":"<p>REQUIRED SCOPES <code>['triggers:write']</code><br />Delete trigger</p>\n","urlObject":{"path":["triggers",":trigger"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"67cca7ab-aa82-4e62-b8d6-8fdf54b68ae7","description":{"content":"<p>The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"","key":"trigger"}]}},"response":[{"id":"4ef28c6b-6d70-44cb-840e-e33313ddeb68","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.3/triggers/:trigger","host":["https://api.salesmessage.com/pub/v2.3"],"path":["triggers",":trigger"],"variable":[{"key":"trigger","value":"","description":"The ID of the Trigger"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"780198af-702f-40c0-8724-c0de469f1989"}],"id":"168129fe-8cad-466a-b126-2c1b815be571","_postman_id":"168129fe-8cad-466a-b126-2c1b815be571","description":""},{"name":"filters","item":[{"name":"Get all triggers filters","id":"7ddc7080-c9f9-4954-a75e-d75d5e343d2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/triggers/filters?name=string","description":"<p>REQUIRED SCOPES <code>['triggers:read']</code><br />Get all triggers filters</p>\n","urlObject":{"path":["triggers","filters"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Name</p>\n","type":"text/plain"},"key":"name","value":"string"}],"variable":[]}},"response":[{"id":"fefce846-2e1c-4b65-8470-f00a53bc4f13","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.3/triggers/filters?name=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["triggers","filters"],"query":[{"description":"Name","key":"name","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7ddc7080-c9f9-4954-a75e-d75d5e343d2e"}],"id":"bb85738a-961d-4829-b05a-519df735c1dd","_postman_id":"bb85738a-961d-4829-b05a-519df735c1dd","description":""},{"name":"search","item":[{"name":"Search trigger","id":"d6456efa-ba41-4abf-b2d4-536d054128d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/triggers/search?limit=10&term=string","description":"<p>REQUIRED SCOPES <code>['triggers:read']</code><br />Search trigger</p>\n","urlObject":{"path":["triggers","search"],"host":["https://api.salesmessage.com/pub/v2.3"],"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>The string to search for.</p>\n","type":"text/plain"},"key":"term","value":"string"}],"variable":[]}},"response":[{"id":"aeb036ac-fd27-47de-9623-ee83e824108f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/triggers/search?limit=10&term=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["triggers","search"],"query":[{"description":"The maximum number of messages that you want returned from this call.","key":"limit","value":"10"},{"description":"The string to search for.","key":"term","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 8817,\n    \"organization_id\": 4914,\n    \"integration_id\": \"string\",\n    \"owner_id\": 8292,\n    \"organization_number_id\": 4704,\n    \"number_id\": 1352,\n    \"team_id\": 6865,\n    \"is_active\": false,\n    \"name\": \"string\",\n    \"type\": \"string\",\n    \"service_property\": \"string\",\n    \"owner_property\": \"string\",\n    \"message\": \"string\",\n    \"media_url\": [\n      \"string\",\n      \"string\"\n    ],\n    \"last_received_date\": \"2001-07-07T18:25:01.643Z\",\n    \"disabled_at\": \"1954-10-19T13:57:17.232Z\",\n    \"created_at\": \"2014-11-17T23:36:36.833Z\",\n    \"updated_at\": \"2013-08-24T10:57:49.747Z\",\n    \"integration_name\": \"string\",\n    \"tag_ids\": [\n      732,\n      9221\n    ],\n    \"integration\": {},\n    \"webhook\": {},\n    \"number\": {},\n    \"team\": {},\n    \"owner\": {},\n    \"analytics\": {},\n    \"is_track_conversion\": false,\n    \"conversion_id\": 533,\n    \"is_rvm\": false,\n    \"send_form\": [\n      4723,\n      2964\n    ],\n    \"all_statistics\": [\n      4622,\n      9907\n    ]\n  },\n  {\n    \"id\": 8509,\n    \"organization_id\": 852,\n    \"integration_id\": \"string\",\n    \"owner_id\": 1078,\n    \"organization_number_id\": 1121,\n    \"number_id\": 8907,\n    \"team_id\": 1075,\n    \"is_active\": false,\n    \"name\": \"string\",\n    \"type\": \"string\",\n    \"service_property\": \"string\",\n    \"owner_property\": \"string\",\n    \"message\": \"string\",\n    \"media_url\": [\n      \"string\",\n      \"string\"\n    ],\n    \"last_received_date\": \"2010-08-24T21:44:40.615Z\",\n    \"disabled_at\": \"1962-11-29T02:14:59.294Z\",\n    \"created_at\": \"1988-11-08T04:20:47.292Z\",\n    \"updated_at\": \"1980-04-23T23:45:14.790Z\",\n    \"integration_name\": \"string\",\n    \"tag_ids\": [\n      980,\n      4330\n    ],\n    \"integration\": {},\n    \"webhook\": {},\n    \"number\": {},\n    \"team\": {},\n    \"owner\": {},\n    \"analytics\": {},\n    \"is_track_conversion\": false,\n    \"conversion_id\": 5616,\n    \"is_rvm\": false,\n    \"send_form\": [\n      5045,\n      6094\n    ],\n    \"all_statistics\": [\n      5333,\n      27\n    ]\n  }\n]"}],"_postman_id":"d6456efa-ba41-4abf-b2d4-536d054128d3"}],"id":"45aa93a1-dd06-4c0c-a8a6-bcf683309873","_postman_id":"45aa93a1-dd06-4c0c-a8a6-bcf683309873","description":""},{"name":"test","item":[{"name":"Send Test Trigger","id":"f5677267-0337-471a-a810-3e98bbbb80a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/triggers/test?integration_id=2491&number=string&number_id=2491&team_id=2491&message=string&media_url[]=string&media_url[]=string&tags[]=1786&tags[]=1861","description":"<p>REQUIRED SCOPES <code>['triggers:write']</code><br />Send Test Trigger</p>\n","urlObject":{"path":["triggers","test"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The ID of Integration</p>\n","type":"text/plain"},"key":"integration_id","value":"2491"},{"description":{"content":"<p>Number</p>\n","type":"text/plain"},"key":"number","value":"string"},{"description":{"content":"<p>The ID of the Number</p>\n","type":"text/plain"},"key":"number_id","value":"2491"},{"description":{"content":"<p>Send from RCS inbox (team)</p>\n","type":"text/plain"},"key":"team_id","value":"2491"},{"description":{"content":"<p>Message</p>\n","type":"text/plain"},"key":"message","value":"string"},{"description":{"content":"<p>The url of the media</p>\n","type":"text/plain"},"key":"media_url[]","value":"string"},{"description":{"content":"<p>The url of the media</p>\n","type":"text/plain"},"key":"media_url[]","value":"string"},{"description":{"content":"<p>The list of Tags</p>\n","type":"text/plain"},"key":"tags[]","value":"1786"},{"description":{"content":"<p>The list of Tags</p>\n","type":"text/plain"},"key":"tags[]","value":"1861"}],"variable":[]}},"response":[{"id":"0866b0df-2823-4261-abe7-24f60a0a7959","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/triggers/test?integration_id=2491&number=string&number_id=2491&team_id=2491&message=string&media_url[]=string&tags[]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["triggers","test"],"query":[{"description":"The ID of Integration","key":"integration_id","value":"2491"},{"description":"Number","key":"number","value":"string"},{"description":"The ID of the Number","key":"number_id","value":"2491"},{"description":"Send from RCS inbox (team)","key":"team_id","value":"2491"},{"description":"Message","key":"message","value":"string"},{"description":"The url of the media","key":"media_url[]","value":"string"},{"description":"The list of Tags","key":"tags[]","value":"1861"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\",\n  \"message\": \"string\"\n}"}],"_postman_id":"f5677267-0337-471a-a810-3e98bbbb80a6"}],"id":"85785878-9b28-4899-bb8c-860ebd909fc8","_postman_id":"85785878-9b28-4899-bb8c-860ebd909fc8","description":""},{"name":"toggle","item":[{"name":"{trigger}","item":[{"name":"Toggle trigger","id":"a89e4138-7da4-4537-b8d9-6bc15dae2ba1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/triggers/toggle/:trigger","description":"<p>REQUIRED SCOPES <code>['triggers:write']</code><br />Toggle trigger</p>\n","urlObject":{"path":["triggers","toggle",":trigger"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"f0e2f445-7b16-4703-b511-e3bd53d9e031","description":{"content":"<p>The ID of the Trigger</p>\n","type":"text/plain"},"type":"any","value":"","key":"trigger"}]}},"response":[{"id":"9efc38fe-261c-435a-8955-734495a824e2","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/triggers/toggle/:trigger","host":["https://api.salesmessage.com/pub/v2.3"],"path":["triggers","toggle",":trigger"],"variable":[{"key":"trigger","value":"","description":"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\": 174,\n  \"organization_id\": 7951,\n  \"integration_id\": \"string\",\n  \"owner_id\": 6312,\n  \"organization_number_id\": 7794,\n  \"number_id\": 6874,\n  \"team_id\": 8156,\n  \"is_active\": false,\n  \"name\": \"string\",\n  \"type\": \"string\",\n  \"service_property\": \"string\",\n  \"owner_property\": \"string\",\n  \"message\": \"string\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"last_received_date\": \"2012-11-17T03:45:13.055Z\",\n  \"disabled_at\": \"1956-02-04T15:09:20.880Z\",\n  \"created_at\": \"1954-01-31T19:28:56.968Z\",\n  \"updated_at\": \"2010-06-03T22:15:09.276Z\",\n  \"integration_name\": \"string\",\n  \"tag_ids\": [\n    5946,\n    6576\n  ],\n  \"integration\": {},\n  \"webhook\": {},\n  \"number\": {},\n  \"team\": {},\n  \"owner\": {},\n  \"analytics\": {},\n  \"is_track_conversion\": true,\n  \"conversion_id\": 8698,\n  \"is_rvm\": true,\n  \"send_form\": [\n    6495,\n    5033\n  ],\n  \"all_statistics\": [\n    3159,\n    4836\n  ]\n}"}],"_postman_id":"a89e4138-7da4-4537-b8d9-6bc15dae2ba1"}],"id":"9524f526-2ae2-4033-b6ad-d24b8e9443a1","_postman_id":"9524f526-2ae2-4033-b6ad-d24b8e9443a1","description":""}],"id":"9690ebf4-281f-40a2-b3a8-352f59e4416f","_postman_id":"9690ebf4-281f-40a2-b3a8-352f59e4416f","description":""},{"name":"Get all triggers","id":"063f09e1-0bae-4432-bb91-13fdda9a7278","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/triggers","description":"<p>REQUIRED SCOPES <code>['triggers:read']</code><br />Get all triggers</p>\n","urlObject":{"path":["triggers"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"6dfac5ff-74b2-4a91-a6b0-9efedde341e8","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/triggers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 8817,\n    \"organization_id\": 4914,\n    \"integration_id\": \"string\",\n    \"owner_id\": 8292,\n    \"organization_number_id\": 4704,\n    \"number_id\": 1352,\n    \"team_id\": 6865,\n    \"is_active\": false,\n    \"name\": \"string\",\n    \"type\": \"string\",\n    \"service_property\": \"string\",\n    \"owner_property\": \"string\",\n    \"message\": \"string\",\n    \"media_url\": [\n      \"string\",\n      \"string\"\n    ],\n    \"last_received_date\": \"2001-07-07T18:25:01.643Z\",\n    \"disabled_at\": \"1954-10-19T13:57:17.232Z\",\n    \"created_at\": \"2014-11-17T23:36:36.833Z\",\n    \"updated_at\": \"2013-08-24T10:57:49.747Z\",\n    \"integration_name\": \"string\",\n    \"tag_ids\": [\n      732,\n      9221\n    ],\n    \"integration\": {},\n    \"webhook\": {},\n    \"number\": {},\n    \"team\": {},\n    \"owner\": {},\n    \"analytics\": {},\n    \"is_track_conversion\": false,\n    \"conversion_id\": 533,\n    \"is_rvm\": false,\n    \"send_form\": [\n      4723,\n      2964\n    ],\n    \"all_statistics\": [\n      4622,\n      9907\n    ]\n  },\n  {\n    \"id\": 8509,\n    \"organization_id\": 852,\n    \"integration_id\": \"string\",\n    \"owner_id\": 1078,\n    \"organization_number_id\": 1121,\n    \"number_id\": 8907,\n    \"team_id\": 1075,\n    \"is_active\": false,\n    \"name\": \"string\",\n    \"type\": \"string\",\n    \"service_property\": \"string\",\n    \"owner_property\": \"string\",\n    \"message\": \"string\",\n    \"media_url\": [\n      \"string\",\n      \"string\"\n    ],\n    \"last_received_date\": \"2010-08-24T21:44:40.615Z\",\n    \"disabled_at\": \"1962-11-29T02:14:59.294Z\",\n    \"created_at\": \"1988-11-08T04:20:47.292Z\",\n    \"updated_at\": \"1980-04-23T23:45:14.790Z\",\n    \"integration_name\": \"string\",\n    \"tag_ids\": [\n      980,\n      4330\n    ],\n    \"integration\": {},\n    \"webhook\": {},\n    \"number\": {},\n    \"team\": {},\n    \"owner\": {},\n    \"analytics\": {},\n    \"is_track_conversion\": false,\n    \"conversion_id\": 5616,\n    \"is_rvm\": false,\n    \"send_form\": [\n      5045,\n      6094\n    ],\n    \"all_statistics\": [\n      5333,\n      27\n    ]\n  }\n]"}],"_postman_id":"063f09e1-0bae-4432-bb91-13fdda9a7278"},{"name":"Create trigger","id":"a285c997-4600-4df8-a0b8-17b65716b57a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"message\": \"string\",\n  \"is_track_conversion\": \"false\",\n  \"conversion_id\": 449,\n  \"number_id\": 4495,\n  \"send_from\": {\n    \"type\": \"send_from_rcs_sender|send_from_number|send_from_smart_inbox\",\n    \"options\": {\n      \"team_id\": 1,\n      \"number_id\": 1,\n      \"smart_option\": \"default\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/triggers","description":"<p>REQUIRED SCOPES <code>['triggers:write']</code><br />Create trigger</p>\n","urlObject":{"path":["triggers"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"3ae9a032-36f5-4c66-bb3f-9134ca1b45dd","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"message\": \"string\",\n  \"is_track_conversion\": \"false\",\n  \"conversion_id\": 449,\n  \"number_id\": 4495,\n  \"send_from\": {\n    \"type\": \"send_from_rcs_sender|send_from_number|send_from_smart_inbox\",\n    \"options\": {\n      \"team_id\": 1,\n      \"number_id\": 1,\n      \"smart_option\": \"default\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/triggers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 174,\n  \"organization_id\": 7951,\n  \"integration_id\": \"string\",\n  \"owner_id\": 6312,\n  \"organization_number_id\": 7794,\n  \"number_id\": 6874,\n  \"team_id\": 8156,\n  \"is_active\": false,\n  \"name\": \"string\",\n  \"type\": \"string\",\n  \"service_property\": \"string\",\n  \"owner_property\": \"string\",\n  \"message\": \"string\",\n  \"media_url\": [\n    \"string\",\n    \"string\"\n  ],\n  \"last_received_date\": \"2012-11-17T03:45:13.055Z\",\n  \"disabled_at\": \"1956-02-04T15:09:20.880Z\",\n  \"created_at\": \"1954-01-31T19:28:56.968Z\",\n  \"updated_at\": \"2010-06-03T22:15:09.276Z\",\n  \"integration_name\": \"string\",\n  \"tag_ids\": [\n    5946,\n    6576\n  ],\n  \"integration\": {},\n  \"webhook\": {},\n  \"number\": {},\n  \"team\": {},\n  \"owner\": {},\n  \"analytics\": {},\n  \"is_track_conversion\": true,\n  \"conversion_id\": 8698,\n  \"is_rvm\": true,\n  \"send_form\": [\n    6495,\n    5033\n  ],\n  \"all_statistics\": [\n    3159,\n    4836\n  ]\n}"},{"id":"6f419880-4705-4de8-b732-66b230d9325e","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"message\": \"string\",\n  \"is_track_conversion\": \"false\",\n  \"conversion_id\": 449,\n  \"number_id\": 4495,\n  \"send_from\": {\n    \"type\": \"send_from_rcs_sender|send_from_number|send_from_smart_inbox\",\n    \"options\": {\n      \"team_id\": 1,\n      \"number_id\": 1,\n      \"smart_option\": \"default\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/triggers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"a285c997-4600-4df8-a0b8-17b65716b57a"},{"name":"Bulk delete triggers","id":"42078b6c-f6d3-4808-b055-e38a893c2506","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    4928,\n    3444\n  ],\n  \"bulk_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/triggers","description":"<p>REQUIRED SCOPES <code>['triggers:write']</code><br />Bulk delete triggers</p>\n","urlObject":{"path":["triggers"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"7de8b29a-561a-4f6c-b3a3-fc19f470b210","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    4928,\n    3444\n  ],\n  \"bulk_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/triggers"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3128bb18-d130-4bdc-9a84-5987d9f5b6ce","name":"Unprocessable Entity","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    4928,\n    3444\n  ],\n  \"bulk_all\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/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\": \"string\"\n}"}],"_postman_id":"42078b6c-f6d3-4808-b055-e38a893c2506"}],"id":"a5e77dd6-b472-4825-b2df-c0f1fc48681b","_postman_id":"a5e77dd6-b472-4825-b2df-c0f1fc48681b","description":""},{"name":"app","item":[{"name":"opt-in-data","item":[{"name":"opt-in-data-files","item":[{"name":"validate","item":[{"name":"Validate Opt-In Data File","id":"5d9391ac-8a01-40f6-bc16-0dd476644e62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Opt-In Data File</p>\n","key":"file","type":"file","value":null}]},"url":"https://api.salesmessage.com/pub/v2.3/app/opt-in-data/opt-in-data-files/validate","description":"<p>REQUIRED SCOPES <code>['opt-in-data-files:write']</code><br />Validate Opt-In Data File</p>\n","urlObject":{"path":["app","opt-in-data","opt-in-data-files","validate"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"b9b5d2f6-833f-4ed6-987d-2541fdfe109f","name":"Validation passed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Opt-In Data File","key":"file","type":"file","src":[]}]},"url":"https://api.salesmessage.com/pub/v2.3/app/opt-in-data/opt-in-data-files/validate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"validation_passed\": true\n}"},{"id":"a197ae70-65e0-4d83-8446-e5d34a12293b","name":"Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Opt-In Data File","key":"file","type":"file","src":[]}]},"url":"https://api.salesmessage.com/pub/v2.3/app/opt-in-data/opt-in-data-files/validate"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\"\n}"}],"_postman_id":"5d9391ac-8a01-40f6-bc16-0dd476644e62"}],"id":"2f6ace68-009e-4102-ba46-e7ae30db409c","_postman_id":"2f6ace68-009e-4102-ba46-e7ae30db409c","description":""}],"id":"d150a5e8-1396-4c51-9bd5-56193e473e1a","_postman_id":"d150a5e8-1396-4c51-9bd5-56193e473e1a","description":""}],"id":"b9241f78-ebae-4e4a-a72a-2ee7d17cfee3","_postman_id":"b9241f78-ebae-4e4a-a72a-2ee7d17cfee3","description":""}],"id":"05b7f481-9df1-47e3-8d99-cee61f0513da","_postman_id":"05b7f481-9df1-47e3-8d99-cee61f0513da","description":""},{"name":"roles","item":[{"name":"List roles with permissions for the user's organization","id":"e09f3cd1-eb02-4e40-af69-8307c118a2e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/roles","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />List roles with permissions for the user's organization</p>\n","urlObject":{"path":["roles"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"10a2f9d7-3c57-4314-b044-2929715203a5","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"key\": \"string\",\n    \"label\": \"string\",\n    \"available_permissions\": [\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": true\n      },\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      }\n    ],\n    \"unavailable_permissions\": [\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      },\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      }\n    ],\n    \"organization_permissions\": [\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      },\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      }\n    ],\n    \"all_permissions\": [\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      },\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      }\n    ]\n  },\n  {\n    \"key\": \"string\",\n    \"label\": \"string\",\n    \"available_permissions\": [\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": true\n      },\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      }\n    ],\n    \"unavailable_permissions\": [\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      },\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": true\n      }\n    ],\n    \"organization_permissions\": [\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": true\n      },\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": true\n      }\n    ],\n    \"all_permissions\": [\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      },\n      {\n        \"key\": \"string\",\n        \"label\": \"string\",\n        \"default\": false\n      }\n    ]\n  }\n]"},{"id":"4847933a-9060-40cc-895f-90bb61b34e99","name":"Unauthenticated","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.3/roles"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e09f3cd1-eb02-4e40-af69-8307c118a2e9"}],"id":"b09ef6cc-15d9-489a-b8c6-3c141e90e904","_postman_id":"b09ef6cc-15d9-489a-b8c6-3c141e90e904","description":""},{"name":"user","item":[{"name":"{user}","item":[{"name":"Get User By Id","id":"1a80832c-81c6-4878-9eab-9fa9677b20c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/user/:user","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get user by ID</p>\n","urlObject":{"path":["user",":user"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"fc416a47-dd1c-4267-933c-4fb6a48735b3","description":{"content":"<p>The ID of the User</p>\n","type":"text/plain"},"type":"any","value":"","key":"user"}]}},"response":[{"id":"c604715f-1d75-43a8-ab9e-899230b75054","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/user/:user","host":["https://api.salesmessage.com/pub/v2.3"],"path":["user",":user"],"variable":[{"key":"user","value":"","description":"The ID of the User"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 7441,\n  \"first_name\": \"string\",\n  \"last_name\": \"string\",\n  \"full_name\": \"string\",\n  \"photo_url\": \"string\",\n  \"email\": \"string\",\n  \"timezone\": \"string\",\n  \"role\": \"string\",\n  \"role_label\": \"string\",\n  \"number\": \"string\",\n  \"two_fa_enabled\": false,\n  \"has_change_role_request\": false,\n  \"has_inbox_access_request\": true,\n  \"disabled\": false,\n  \"default_team_id\": 5178,\n  \"member_teams_count\": 9461,\n  \"permissions\": [\n    {\n      \"billing\": true,\n      \"members\": false,\n      \"dataAndSecurity\": true,\n      \"inbox\": false,\n      \"broadcasts\": true,\n      \"triggers\": true,\n      \"reportingAndAnalytics\": false\n    },\n    {\n      \"billing\": false,\n      \"members\": true,\n      \"dataAndSecurity\": false,\n      \"inbox\": true,\n      \"broadcasts\": true,\n      \"triggers\": true,\n      \"reportingAndAnalytics\": false\n    }\n  ]\n}"}],"_postman_id":"1a80832c-81c6-4878-9eab-9fa9677b20c8"}],"id":"a51359a3-4085-4e62-a855-4ba011e4d1a7","_postman_id":"a51359a3-4085-4e62-a855-4ba011e4d1a7","description":""},{"name":"Get Current User","id":"c64ca493-d621-4c66-b434-c3b408fd7e22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/user","description":"<p>REQUIRED SCOPES <code>['users:read']</code><br />Get current user</p>\n","urlObject":{"path":["user"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"8260b7a3-f460-427f-82e0-b604c2d06188","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"awayStatusLastDate\": \"string\",\n  \"contact_fields\": [\n    {\n      \"organization_id\": 5971,\n      \"user_id\": 1015,\n      \"id\": 4021,\n      \"active_fields\": [\n        {\n          \"0\": \"string\"\n        },\n        {\n          \"0\": \"string\"\n        }\n      ]\n    },\n    {\n      \"organization_id\": 1442,\n      \"user_id\": 2177,\n      \"id\": 7445,\n      \"active_fields\": [\n        {\n          \"0\": \"string\"\n        },\n        {\n          \"0\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"createdAt\": \"string\",\n  \"inboxesCount\": 1976,\n  \"currentInboxId\": 8504,\n  \"currentInboxType\": 4814,\n  \"currentInboxTypeId\": 8974,\n  \"defaultTeamId\": 6230,\n  \"dlcBannerShouldShowAgain\": true,\n  \"dlcBannerShowLastDate\": \"string\",\n  \"email\": \"string\",\n  \"firstName\": \"string\",\n  \"fullName\": \"string\",\n  \"hasAccessibleOrganizations\": true,\n  \"id\": 8939,\n  \"isAway\": false,\n  \"isGroupsFlow\": 9050,\n  \"isRecordAutomatically\": true,\n  \"isRequireNumber\": 4460,\n  \"lastName\": \"string\",\n  \"number\": \"string\",\n  \"country\": \"string\",\n  \"countryCallingCode\": \"string\",\n  \"ownersNumber\": \"string\",\n  \"photoUrl\": \"string\",\n  \"role\": \"string\",\n  \"timezone\": \"string\",\n  \"first_promoter_ref_id\": \"string\",\n  \"design_version\": \"string\",\n  \"can_switch_design\": false\n}"}],"_postman_id":"c64ca493-d621-4c66-b434-c3b408fd7e22"}],"id":"7c32aa7c-e720-40f9-a096-4e9712827d3f","_postman_id":"7c32aa7c-e720-40f9-a096-4e9712827d3f","description":""},{"name":"call-history","item":[{"name":"statistics","item":[{"name":"Get call history statistics","id":"9599aceb-dda6-4424-bcf3-2931b118ef41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/call-history/statistics?group=string&team_id=2491&team_type=string&filtersList=[object Object]&filtersList=[object Object]","description":"<p>REQUIRED SCOPES <code>['call-history:read']</code><br />Get call history statistics</p>\n","urlObject":{"path":["call-history","statistics"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Group</p>\n","type":"text/plain"},"key":"group","value":"string"},{"description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"key":"team_id","value":"2491"},{"description":{"content":"<p>Team type</p>\n","type":"text/plain"},"key":"team_type","value":"string"},{"description":{"content":"<p>List of filters to apply</p>\n","type":"text/plain"},"key":"filtersList","value":"[object Object]"},{"description":{"content":"<p>List of filters to apply</p>\n","type":"text/plain"},"key":"filtersList","value":"[object Object]"}],"variable":[]}},"response":[{"id":"3232409b-e007-4ce3-ae18-f0ee101d151b","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/call-history/statistics?group=string&team_id=2491&team_type=string&filtersList=[object Object]","host":["https://api.salesmessage.com/pub/v2.3"],"path":["call-history","statistics"],"query":[{"description":"Group","key":"group","value":"string"},{"description":"Team ID","key":"team_id","value":"2491"},{"description":"Team type","key":"team_type","value":"string"},{"description":"List of filters to apply","key":"filtersList","value":"[object Object]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"total_messages\": 6966.282753705182,\n  \"total_unread_messages\": 3283.9923495442913,\n  \"total_unread_inbound_calls\": 5812.777048186698,\n  \"total_unread_outbound_calls\": 6588.38641005474,\n  \"total_unread_outbound_answered\": 1452.1419982247585,\n  \"total_unread_outbound_no_answered\": 1641.8669745864966,\n  \"total_unread_inbound_answered\": 1971.290743169778,\n  \"total_unread_inbound_missed\": 9076.564195206935,\n  \"total_unread_inbound_voicemail\": 3523.897783694103\n}"},{"id":"d621f9d7-aa90-4e0e-9688-d84bc59792d2","name":"Unauthenticated","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.3/call-history/statistics?group=string&team_id=2491&team_type=string&filtersList=[object Object]","host":["https://api.salesmessage.com/pub/v2.3"],"path":["call-history","statistics"],"query":[{"description":"Group","key":"group","value":"string"},{"description":"Team ID","key":"team_id","value":"2491"},{"description":"Team type","key":"team_type","value":"string"},{"description":"List of filters to apply","key":"filtersList","value":"[object Object]"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f69cef3b-8608-416d-99ed-bfaedca5570b","name":"Forbidden","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.3/call-history/statistics?group=string&team_id=2491&team_type=string&filtersList=[object Object]","host":["https://api.salesmessage.com/pub/v2.3"],"path":["call-history","statistics"],"query":[{"description":"Group","key":"group","value":"string"},{"description":"Team ID","key":"team_id","value":"2491"},{"description":"Team type","key":"team_type","value":"string"},{"description":"List of filters to apply","key":"filtersList","value":"[object Object]"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9599aceb-dda6-4424-bcf3-2931b118ef41"}],"id":"ec2fa218-19f0-4a0e-a360-03003176527f","_postman_id":"ec2fa218-19f0-4a0e-a360-03003176527f","description":""},{"name":"Get call history list","id":"97e251e5-a0d2-4932-8ed3-f6731ee6eb30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/call-history?group=string&team_id=2491&team_type=string&filtersList=[object Object]&filtersList=[object Object]&search=string&page=2491&limit=2491&sorting=[object Object]&sorting=[object Object]","description":"<p>REQUIRED SCOPES <code>['call-history:read']</code><br />Get call history list</p>\n","urlObject":{"path":["call-history"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Group</p>\n","type":"text/plain"},"key":"group","value":"string"},{"description":{"content":"<p>Team ID</p>\n","type":"text/plain"},"key":"team_id","value":"2491"},{"description":{"content":"<p>Team type</p>\n","type":"text/plain"},"key":"team_type","value":"string"},{"description":{"content":"<p>List of filters to apply</p>\n","type":"text/plain"},"key":"filtersList","value":"[object Object]"},{"description":{"content":"<p>List of filters to apply</p>\n","type":"text/plain"},"key":"filtersList","value":"[object Object]"},{"description":{"content":"<p>Search value</p>\n","type":"text/plain"},"key":"search","value":"string"},{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"2491"},{"description":{"content":"<p>Number of items per page</p>\n","type":"text/plain"},"key":"limit","value":"2491"},{"description":{"content":"<p>Sorting criteria</p>\n","type":"text/plain"},"key":"sorting","value":"[object Object]"},{"description":{"content":"<p>Sorting criteria</p>\n","type":"text/plain"},"key":"sorting","value":"[object Object]"}],"variable":[]}},"response":[{"id":"77846d28-113d-42c7-b8a6-3f4d543f2677","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/call-history?group=string&team_id=2491&team_type=string&filtersList=[object Object]&search=string&page=2491&limit=2491&sorting=[object Object]","host":["https://api.salesmessage.com/pub/v2.3"],"path":["call-history"],"query":[{"description":"Group","key":"group","value":"string"},{"description":"Team ID","key":"team_id","value":"2491"},{"description":"Team type","key":"team_type","value":"string"},{"description":"List of filters to apply","key":"filtersList","value":"[object Object]"},{"description":"Search value","key":"search","value":"string"},{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"limit","value":"2491"},{"description":"Sorting criteria","key":"sorting","value":"[object Object]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"meta\": {}\n}"},{"id":"707d1daf-3aee-4e0e-9642-60ed69b308b0","name":"Unauthenticated","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.3/call-history?group=string&team_id=2491&team_type=string&filtersList=[object Object]&search=string&page=2491&limit=2491&sorting=[object Object]","host":["https://api.salesmessage.com/pub/v2.3"],"path":["call-history"],"query":[{"description":"Group","key":"group","value":"string"},{"description":"Team ID","key":"team_id","value":"2491"},{"description":"Team type","key":"team_type","value":"string"},{"description":"List of filters to apply","key":"filtersList","value":"[object Object]"},{"description":"Search value","key":"search","value":"string"},{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"limit","value":"2491"},{"description":"Sorting criteria","key":"sorting","value":"[object Object]"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"920b137f-d6de-4d63-a13d-4ac8d2261c41","name":"Forbidden","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.3/call-history?group=string&team_id=2491&team_type=string&filtersList=[object Object]&search=string&page=2491&limit=2491&sorting=[object Object]","host":["https://api.salesmessage.com/pub/v2.3"],"path":["call-history"],"query":[{"description":"Group","key":"group","value":"string"},{"description":"Team ID","key":"team_id","value":"2491"},{"description":"Team type","key":"team_type","value":"string"},{"description":"List of filters to apply","key":"filtersList","value":"[object Object]"},{"description":"Search value","key":"search","value":"string"},{"description":"Page number","key":"page","value":"2491"},{"description":"Number of items per page","key":"limit","value":"2491"},{"description":"Sorting criteria","key":"sorting","value":"[object Object]"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"97e251e5-a0d2-4932-8ed3-f6731ee6eb30"}],"id":"677dc07b-93d0-4d7e-ada1-3da8853c7dec","_postman_id":"677dc07b-93d0-4d7e-ada1-3da8853c7dec","description":""},{"name":"voice","item":[{"name":"voicemail","item":[{"name":"greeting","item":[{"name":"synthesize","item":[{"name":"Synthesize a greeting message to speech","id":"684e016c-25d9-493a-a9fb-a749a6e63593","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"audio/mpeg"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/synthesize?message=string","description":"<p>REQUIRED SCOPES <code>['voice:read']</code><br />Synthesize a greeting message to speech</p>\n","urlObject":{"path":["voice","voicemail","greeting","synthesize"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The text message to synthesize</p>\n","type":"text/plain"},"key":"message","value":"string"}],"variable":[]}},"response":[{"id":"03617d06-a6d4-4e08-8441-a9c74f1400ce","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"audio/mpeg"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/synthesize?message=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","synthesize"],"query":[{"description":"The text message to synthesize","key":"message","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"audio/mpeg"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"d2d31131-de2d-4ed6-822c-6e6ad78c215c","name":"Unauthenticated","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.3/voice/voicemail/greeting/synthesize?message=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","synthesize"],"query":[{"description":"The text message to synthesize","key":"message","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"33934893-1621-44d3-8d2f-51c848f05e39","name":"Validation 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.3/voice/voicemail/greeting/synthesize?message=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","synthesize"],"query":[{"description":"The text message to synthesize","key":"message","value":"string"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"684e016c-25d9-493a-a9fb-a749a6e63593"}],"id":"bd0d9a49-351b-4811-8734-1f798037a313","_postman_id":"bd0d9a49-351b-4811-8734-1f798037a313","description":""},{"name":"upload","item":[{"name":"{team}","item":[{"name":"Upload a voicemail greeting","id":"ceeee4da-710f-4685-bdb6-34deba33ec74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The voicemail greeting audio file</p>\n","key":"file","type":"file","value":null},{"description":"<p>The name of the voicemail greeting</p>\n","key":"name","value":"string","type":"text"},{"description":"<p>The type of the voicemail greeting</p>\n","key":"type","value":"open_hours","type":"text"},{"description":"<p>Make voicemail greeting active if true</p>\n","key":"is_make_active","value":"true","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/upload/:team","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Upload a voicemail greeting</p>\n","urlObject":{"path":["voice","voicemail","greeting","upload",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"62dee632-ab1b-4b08-b05b-b6d53ef35a93","description":{"content":"<p>The ID of the Team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"bcdb98c9-11ae-4ad0-b501-8ebac2ba9e2f","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The voicemail greeting audio file","key":"file","type":"file","src":[]},{"description":"The name of the voicemail greeting","key":"name","value":"string","type":"text"},{"description":"The type of the voicemail greeting","key":"type","value":"open_hours","type":"text"},{"description":"Make voicemail greeting active if true","key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/upload/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","upload",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the Team"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"9b7b7d17-b57b-427b-863a-1d035b81e009","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The voicemail greeting audio file","key":"file","type":"file","src":[]},{"description":"The name of the voicemail greeting","key":"name","value":"string","type":"text"},{"description":"The type of the voicemail greeting","key":"type","value":"open_hours","type":"text"},{"description":"Make voicemail greeting active if true","key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/upload/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","upload",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the Team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1b9cff18-323e-422c-b0eb-60a089bdee7b","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The voicemail greeting audio file","key":"file","type":"file","src":[]},{"description":"The name of the voicemail greeting","key":"name","value":"string","type":"text"},{"description":"The type of the voicemail greeting","key":"type","value":"open_hours","type":"text"},{"description":"Make voicemail greeting active if true","key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/upload/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","upload",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the Team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a9e1486e-1c01-432b-9de8-6a17340ab813","name":"Team not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The voicemail greeting audio file","key":"file","type":"file","src":[]},{"description":"The name of the voicemail greeting","key":"name","value":"string","type":"text"},{"description":"The type of the voicemail greeting","key":"type","value":"open_hours","type":"text"},{"description":"Make voicemail greeting active if true","key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/upload/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","upload",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the Team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"bf5331d5-27f7-49eb-86f3-765288675688","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The voicemail greeting audio file","key":"file","type":"file","src":[]},{"description":"The name of the voicemail greeting","key":"name","value":"string","type":"text"},{"description":"The type of the voicemail greeting","key":"type","value":"open_hours","type":"text"},{"description":"Make voicemail greeting active if true","key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/upload/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","upload",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the Team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ceeee4da-710f-4685-bdb6-34deba33ec74"}],"id":"b5bcef32-b0b8-4f85-af50-cc256b092cd6","_postman_id":"b5bcef32-b0b8-4f85-af50-cc256b092cd6","description":""}],"id":"15e419af-d0aa-4a57-b7a1-e13e804f07f3","_postman_id":"15e419af-d0aa-4a57-b7a1-e13e804f07f3","description":""},{"name":"update","item":[{"name":"{greeting}","item":[{"name":"Update voicemail greeting name","id":"ab1cb3f4-7bea-4056-9804-120f1464fd52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/update/:greeting","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Update voicemail greeting name</p>\n","urlObject":{"path":["voice","voicemail","greeting","update",":greeting"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"f7a777b2-af6e-4b7c-9cb6-2880d765601e","description":{"content":"<p>The ID of the Voicemail Greeting</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"greeting"}]}},"response":[{"id":"a15c89fd-7af0-4ebd-b0ea-c09acb892a3b","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/update/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","update",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the Voicemail Greeting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"bfe5e8d5-3c7f-4e41-b781-132303c254aa","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/update/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","update",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the Voicemail Greeting"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3bac1b2f-7465-4a31-882c-6853d1c60a59","name":"Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/update/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","update",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the Voicemail Greeting"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"29ed2a0e-78c7-4065-a65d-badbbf1d01e2","name":"Voicemail Greeting not found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/update/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","update",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the Voicemail Greeting"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"13d63347-a186-4ab6-9570-9e8dc0fb23e0","name":"Validation error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/update/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","update",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the Voicemail Greeting"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ab1cb3f4-7bea-4056-9804-120f1464fd52"}],"id":"f058ceb2-e18c-401d-95b4-7bf2d2365857","_postman_id":"f058ceb2-e18c-401d-95b4-7bf2d2365857","description":""}],"id":"148ee296-6acb-4ed3-a248-0926a8213226","_postman_id":"148ee296-6acb-4ed3-a248-0926a8213226","description":""},{"name":"delete","item":[{"name":"{greeting}","item":[{"name":"Delete a voicemail greeting","id":"ed359b04-ed63-4da6-baf7-5386fdc354af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/delete/:greeting","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Delete a voicemail greeting</p>\n","urlObject":{"path":["voice","voicemail","greeting","delete",":greeting"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"a431fb31-3690-49b9-b15d-cf46592eae67","description":{"content":"<p>The ID of the Voicemail Greeting to delete</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"greeting"}]}},"response":[{"id":"8df0be21-bc21-4a8f-90fa-0455791be6c7","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/greeting/delete/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","delete",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the Voicemail Greeting to delete"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\"\n}"},{"id":"2781058f-9989-4435-a00d-3ce2480a07d7","name":"Unauthenticated","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.3/voice/voicemail/greeting/delete/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","delete",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the Voicemail Greeting to delete"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"47fcdfa4-3691-466c-a60c-ea7978ba6d98","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.3/voice/voicemail/greeting/delete/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","delete",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the Voicemail Greeting to delete"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"688e5fef-e8ae-49ab-8c7a-843fae9b69e1","name":"Voicemail Greeting 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.3/voice/voicemail/greeting/delete/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","greeting","delete",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the Voicemail Greeting to delete"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ed359b04-ed63-4da6-baf7-5386fdc354af"}],"id":"53e2d102-2234-485d-9a90-5909ce684bf8","_postman_id":"53e2d102-2234-485d-9a90-5909ce684bf8","description":""}],"id":"e54fed20-2647-4251-81cd-3f0ab07aa2f1","_postman_id":"e54fed20-2647-4251-81cd-3f0ab07aa2f1","description":""}],"id":"01bf427f-4046-4d11-a1e4-13e982229a0d","_postman_id":"01bf427f-4046-4d11-a1e4-13e982229a0d","description":""},{"name":"drops","item":[{"name":"upload","item":[{"name":"Upload voicemail drop file","id":"94ae67ef-d8d4-45f7-8648-e1d8b7ace099","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Audio File</p>\n","key":"file","type":"file","value":null},{"key":"name","value":"string","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops/upload","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Upload voicemail drop file</p>\n","urlObject":{"path":["voice","voicemail","drops","upload"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"ec8528d7-887f-431b-8aad-fcd6737bd2c0","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Audio File","key":"file","type":"file","src":[]},{"key":"name","value":"string","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9431,\n  \"user_id\": 2019,\n  \"name\": \"string\",\n  \"content_type\": \"string\",\n  \"url\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"duration\": 3325\n}"},{"id":"ffefea0f-328f-4433-9019-7f52f4c9b6bf","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"Audio File","key":"file","type":"file","src":[]},{"key":"name","value":"string","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops/upload"},"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":"94ae67ef-d8d4-45f7-8648-e1d8b7ace099"}],"id":"d300df65-38c7-4125-bb1e-f1716ceb7311","_postman_id":"d300df65-38c7-4125-bb1e-f1716ceb7311","description":""},{"name":"update","item":[{"name":"{voicemailDrop}","item":[{"name":"Update voicemail drop name","id":"016edaf4-3ee2-4a5e-9593-b735e76cdf78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops/update/:voicemailDrop","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Update voicemail drop name</p>\n","urlObject":{"path":["voice","voicemail","drops","update",":voicemailDrop"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"afa1a870-d556-44ea-8372-af3e1c7fef30","description":{"content":"<p>The ID of the Voicemail Drop Audiofile.</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"voicemailDrop"}]}},"response":[{"id":"e6febcda-404d-4b47-80a6-7e734876e6f9","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops/update/:voicemailDrop","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","drops","update",":voicemailDrop"],"variable":[{"key":"voicemailDrop","value":"2491","description":"The ID of the Voicemail Drop Audiofile."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9431,\n  \"user_id\": 2019,\n  \"name\": \"string\",\n  \"content_type\": \"string\",\n  \"url\": \"string\",\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\",\n  \"duration\": 3325\n}"},{"id":"3e2c8a22-9839-4b10-bb49-53a56a016f20","name":"Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops/update/:voicemailDrop","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","drops","update",":voicemailDrop"],"variable":[{"key":"voicemailDrop","value":"2491","description":"The ID of the Voicemail Drop Audiofile."}]}},"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":"016edaf4-3ee2-4a5e-9593-b735e76cdf78"}],"id":"5a987d3a-2430-4967-a16d-dc43e5c06797","_postman_id":"5a987d3a-2430-4967-a16d-dc43e5c06797","description":""}],"id":"56a5beee-d6c9-422b-9097-624ea5082ce0","_postman_id":"56a5beee-d6c9-422b-9097-624ea5082ce0","description":""},{"name":"delete","item":[{"name":"{voicemailDrop}","item":[{"name":"Delete voicemail drop audiofile","id":"01a55880-34b4-4fed-857e-39684ad0211d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops/delete/:voicemailDrop","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Delete voicemail drop audiofile</p>\n","urlObject":{"path":["voice","voicemail","drops","delete",":voicemailDrop"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"3c3c3812-2c48-4546-bc3c-e73f1a8fe6c2","description":{"content":"<p>The ID of the Voicemail Drop Audiofile.</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"voicemailDrop"}]}},"response":[{"id":"9f35d32d-8066-47f5-a29e-4aea161bc25f","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops/delete/:voicemailDrop","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","drops","delete",":voicemailDrop"],"variable":[{"key":"voicemailDrop","value":"2491","description":"The ID of the Voicemail Drop Audiofile."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"string\"\n}"},{"id":"e7abbc57-1a0a-4807-ac8d-32fb84d62ca0","name":"Forbidden","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops/delete/:voicemailDrop","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","drops","delete",":voicemailDrop"],"variable":[{"key":"voicemailDrop","value":"2491","description":"The ID of the Voicemail Drop Audiofile."}]}},"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":"01a55880-34b4-4fed-857e-39684ad0211d"}],"id":"925dadf1-f90a-4a27-890b-e9a59a66d0f8","_postman_id":"925dadf1-f90a-4a27-890b-e9a59a66d0f8","description":""}],"id":"2da6b983-512b-44d0-92c3-8419c1e732df","_postman_id":"2da6b983-512b-44d0-92c3-8419c1e732df","description":""},{"name":"Get list of voicemail drop audiofiles","id":"ecfdf262-f0f5-403a-8497-eca5dd786072","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops","description":"<p>REQUIRED SCOPES <code>['voice:read']</code><br />Get list of voicemail drop audiofiles</p>\n","urlObject":{"path":["voice","voicemail","drops"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"3f46a9c4-54c1-4938-b691-a2e852d2d0ca","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 3801,\n    \"user_id\": 9355,\n    \"name\": \"string\",\n    \"content_type\": \"string\",\n    \"url\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"duration\": 4976\n  },\n  {\n    \"id\": 4803,\n    \"user_id\": 5181,\n    \"name\": \"string\",\n    \"content_type\": \"string\",\n    \"url\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\",\n    \"duration\": 1043\n  }\n]"},{"id":"601a0004-c55b-490d-be3c-6d088538d630","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/drops"},"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":"ecfdf262-f0f5-403a-8497-eca5dd786072"}],"id":"beef1e3c-8c4c-4e21-8f32-ab6d7dd841d9","_postman_id":"beef1e3c-8c4c-4e21-8f32-ab6d7dd841d9","description":""},{"name":"settings","item":[{"name":"{team}","item":[{"name":"Update voicemail settings","id":"6c9c4e16-14c1-498b-98b7-d9ac8276d616","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/settings/:team","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Listen to voice recording</p>\n","urlObject":{"path":["voice","voicemail","settings",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"8774ddad-7859-4846-a0cc-001cd2874c6a","description":{"content":"<p>The ID of the Team.</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"078e8482-a556-48c9-964b-fdc2f3561a28","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"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":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail/settings/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail","settings",":team"],"variable":[{"key":"team","value":"2491","description":"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\": 3956,\n  \"owner_id\": 1700,\n  \"organization_id\": 1749,\n  \"team_id\": \"string\",\n  \"is_active\": true,\n  \"is_send_via_email\": true,\n  \"open_hours_greeting_id\": 8901,\n  \"after_hours_greeting_id\": 1587\n}"}],"_postman_id":"6c9c4e16-14c1-498b-98b7-d9ac8276d616"}],"id":"04a46af4-0bd1-48a0-96b2-9b3c413929b0","_postman_id":"04a46af4-0bd1-48a0-96b2-9b3c413929b0","description":""}],"id":"1733607c-0205-43ac-afb8-2b83fdd647f2","_postman_id":"1733607c-0205-43ac-afb8-2b83fdd647f2","description":""}],"id":"976f694e-b83a-4707-9726-f2b8f2c1f41c","_postman_id":"976f694e-b83a-4707-9726-f2b8f2c1f41c","description":""},{"name":"ivr","item":[{"name":"greeting","item":[{"name":"synthesize","item":[{"name":"Synthesize a greeting message to speech","id":"7d5bf6e4-8201-4fe3-ae0f-5d1a5fb13ae0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"audio/mpeg"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/synthesize?message=string","description":"<p>REQUIRED SCOPES <code>['voice:read']</code><br />Synthesize a greeting message to speech</p>\n","urlObject":{"path":["voice","ivr","greeting","synthesize"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>The text message to synthesize</p>\n","type":"text/plain"},"key":"message","value":"string"}],"variable":[]}},"response":[{"id":"1855f1dc-29b4-44e0-ba21-4246dc254f8e","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"audio/mpeg"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/synthesize?message=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting","synthesize"],"query":[{"description":"The text message to synthesize","key":"message","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"audio/mpeg"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"32a954f0-a16e-4784-ad67-192f7d11e410","name":"Unauthenticated","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.3/voice/ivr/greeting/synthesize?message=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting","synthesize"],"query":[{"description":"The text message to synthesize","key":"message","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6a8c2bf9-0b1a-456e-9ce9-f8288aaeb482","name":"Validation 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.3/voice/ivr/greeting/synthesize?message=string","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting","synthesize"],"query":[{"description":"The text message to synthesize","key":"message","value":"string"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7d5bf6e4-8201-4fe3-ae0f-5d1a5fb13ae0"}],"id":"490274da-c3a5-4475-ab42-062b6df5c4dc","_postman_id":"490274da-c3a5-4475-ab42-062b6df5c4dc","description":""},{"name":"{team}","item":[{"name":"Create a new IVR greeting for a team","id":"6840f4ac-b0ff-498e-9c9b-72da9ca6603c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The audio file for the IVR greeting</p>\n","key":"file","type":"file","value":null},{"description":"<p>The name of the IVR greeting</p>\n","key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:team","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Create a new IVR greeting for a specific team</p>\n","urlObject":{"path":["voice","ivr","greeting",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"6e34cb43-7c45-4b76-98c3-714c17c93891","description":{"content":"<p>The ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"4119a8c2-f6d9-48ef-b147-d11c3af87473","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The audio file for the IVR greeting","key":"file","type":"file","src":[]},{"description":"The name of the IVR greeting","key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":team"],"variable":[{"key":"team","value":"2491","description":"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\": 2238,\n  \"organization_id\": 3492,\n  \"name\": \"string\",\n  \"content_type\": \"string\",\n  \"url\": \"string\"\n}"},{"id":"b0908721-e079-4c8b-b1c6-9c89383bfb10","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The audio file for the IVR greeting","key":"file","type":"file","src":[]},{"description":"The name of the IVR greeting","key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7a261fca-fa49-4c9f-b688-874a91157569","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The audio file for the IVR greeting","key":"file","type":"file","src":[]},{"description":"The name of the IVR greeting","key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"2489ab52-88c1-4d7d-8bdd-9a4bfbdcb598","name":"Team not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The audio file for the IVR greeting","key":"file","type":"file","src":[]},{"description":"The name of the IVR greeting","key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"8807635f-dc3f-4e62-9f4d-041c72ecafe9","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"description":"The audio file for the IVR greeting","key":"file","type":"file","src":[]},{"description":"The name of the IVR greeting","key":"name","value":"string","type":"text"},{"key":"is_make_active","value":"true","type":"text"}]},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6840f4ac-b0ff-498e-9c9b-72da9ca6603c"}],"id":"81ab112c-98ad-4a7d-a99c-1500e7b0d1e4","_postman_id":"81ab112c-98ad-4a7d-a99c-1500e7b0d1e4","description":""},{"name":"{greeting}","item":[{"name":"Update an existing IVR greeting","id":"b9aaf3b1-4ecc-4044-bf27-247bf48a66aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:greeting","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Update an existing IVR greeting for a specific team</p>\n","urlObject":{"path":["voice","ivr","greeting",":greeting"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"b2b9f7d0-1118-4ec2-8acb-5ae4b541f486","description":{"content":"<p>The ID of the IVR greeting</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"greeting"}]}},"response":[{"id":"8b78caec-bb0c-42e6-803d-9f821e6e52cb","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the IVR greeting"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2238,\n  \"organization_id\": 3492,\n  \"name\": \"string\",\n  \"content_type\": \"string\",\n  \"url\": \"string\"\n}"},{"id":"8ebf03c7-f7b6-4094-b39f-e22c97a4137d","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the IVR greeting"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b01e73cb-7c8b-46eb-83a0-9427a3a78a42","name":"Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the IVR greeting"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"8f6b016f-9dbf-4691-b433-141734cd4a10","name":"IVR Greeting not found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the IVR greeting"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"253e79b0-6503-4ca3-a6ae-33970f4aad52","name":"Validation error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the IVR greeting"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b9aaf3b1-4ecc-4044-bf27-247bf48a66aa"},{"name":"Delete an existing IVR greeting","id":"ccc2f37d-420f-486b-9449-d049b3e267f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:greeting","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Delete an existing IVR greeting for a specific team</p>\n","urlObject":{"path":["voice","ivr","greeting",":greeting"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"6c701aec-d24c-4ad4-ba84-80551766ce6d","description":{"content":"<p>The ID of the IVR greeting to delete</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"greeting"}]}},"response":[{"id":"0f1744c9-4739-4c48-9fe8-9fbdd23cc445","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/greeting/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the IVR greeting to delete"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"failed\"\n}"},{"id":"83a3c903-810b-482b-b0eb-91db906ead03","name":"Unauthenticated","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.3/voice/ivr/greeting/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the IVR greeting to delete"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"53766105-c48b-46da-8792-a782022fd7e4","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.3/voice/ivr/greeting/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the IVR greeting to delete"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"eabc75ff-3c28-4015-8cee-1ac941da4fcb","name":"IVR Greeting 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.3/voice/ivr/greeting/:greeting","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","greeting",":greeting"],"variable":[{"key":"greeting","value":"2491","description":"The ID of the IVR greeting to delete"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ccc2f37d-420f-486b-9449-d049b3e267f0"}],"id":"dbb9dc74-f21d-4134-9060-081ef14393be","_postman_id":"dbb9dc74-f21d-4134-9060-081ef14393be","description":""}],"id":"9c10381f-3d8f-4b3e-96de-9744768722f0","_postman_id":"9c10381f-3d8f-4b3e-96de-9744768722f0","description":""},{"name":"settings","item":[{"name":"{team}","item":[{"name":"Set IVR settings for a team","id":"be0dd52e-d499-42e4-883a-287beec09596","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"menu_options\": [\n    {\n      \"keys\": [\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 0,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    },\n    {\n      \"keys\": [\n        {\n          \"key\": 4,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    }\n  ],\n  \"default_action\": \"ENUM_VALUES_HERE\",\n  \"use_after_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/voice/ivr/settings/:team","description":"<p>REQUIRED SCOPES <code>['voice:write']</code><br />Update or create IVR (Interactive Voice Response) settings for a specific team</p>\n","urlObject":{"path":["voice","ivr","settings",":team"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"8cde192a-dc2a-43b7-a354-1084283101c5","description":{"content":"<p>The ID of the team</p>\n","type":"text/plain"},"type":"any","value":"2491","key":"team"}]}},"response":[{"id":"fa954816-867b-4ded-b80d-5ec220f61536","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"menu_options\": [\n    {\n      \"keys\": [\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 0,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    },\n    {\n      \"keys\": [\n        {\n          \"key\": 4,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    }\n  ],\n  \"default_action\": \"ENUM_VALUES_HERE\",\n  \"use_after_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/settings/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","settings",":team"],"variable":[{"key":"team","value":"2491","description":"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\": 536,\n  \"organization_id\": 7243,\n  \"team_id\": 4567,\n  \"organization_ivr_greeting_id\": 3156,\n  \"is_active\": false,\n  \"use_after_hours\": true,\n  \"default_action\": \"string\",\n  \"menu_options\": [\n    {\n      \"keys\": [\n        {\n          \"key\": 4316,\n          \"destination\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"key\": 2838,\n          \"destination\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"keys\": [\n        {\n          \"key\": 9252,\n          \"destination\": \"string\",\n          \"value\": \"string\"\n        },\n        {\n          \"key\": 566,\n          \"destination\": \"string\",\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"52a21dcc-6255-4036-95ae-b4de3a6f69db","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"menu_options\": [\n    {\n      \"keys\": [\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 0,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    },\n    {\n      \"keys\": [\n        {\n          \"key\": 4,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    }\n  ],\n  \"default_action\": \"ENUM_VALUES_HERE\",\n  \"use_after_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/settings/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","settings",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the team"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"98e331d7-f3f4-45ac-ab7c-6e9a189fa775","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"menu_options\": [\n    {\n      \"keys\": [\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 0,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    },\n    {\n      \"keys\": [\n        {\n          \"key\": 4,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    }\n  ],\n  \"default_action\": \"ENUM_VALUES_HERE\",\n  \"use_after_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/settings/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","settings",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the team"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0d326a08-e7ff-4461-b01a-bdba0fbf4e6d","name":"Team not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"menu_options\": [\n    {\n      \"keys\": [\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 0,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    },\n    {\n      \"keys\": [\n        {\n          \"key\": 4,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    }\n  ],\n  \"default_action\": \"ENUM_VALUES_HERE\",\n  \"use_after_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/settings/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","settings",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the team"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5bd8b907-2e00-48dd-946c-4537c54dccf7","name":"Validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"is_active\": false,\n  \"menu_options\": [\n    {\n      \"keys\": [\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 0,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    },\n    {\n      \"keys\": [\n        {\n          \"key\": 4,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        },\n        {\n          \"key\": 7,\n          \"destination\": \"ENUM_VALUES_HERE\",\n          \"value\": \"\"\n        }\n      ]\n    }\n  ],\n  \"default_action\": \"ENUM_VALUES_HERE\",\n  \"use_after_hours\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/ivr/settings/:team","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","ivr","settings",":team"],"variable":[{"key":"team","value":"2491","description":"The ID of the team"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"be0dd52e-d499-42e4-883a-287beec09596"}],"id":"57981e53-3039-45ca-abaf-9dcb1a7540c1","_postman_id":"57981e53-3039-45ca-abaf-9dcb1a7540c1","description":""}],"id":"0f1619fe-3858-45b1-b5da-d99d4a5beb79","_postman_id":"0f1619fe-3858-45b1-b5da-d99d4a5beb79","description":""}],"id":"771ff8a9-173a-4226-9f95-3c56583d2f66","_postman_id":"771ff8a9-173a-4226-9f95-3c56583d2f66","description":""},{"name":"record","item":[{"name":"{recordingId}","item":[{"name":"token","item":[{"name":"Listen to the voice record new","id":"a91b32b0-3129-469e-87dd-da8a63c80169","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"audio/wav"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/record/:recordingId/token","description":"<p>REQUIRED SCOPES <code>['voice:read']</code><br />Listen to the voice record new</p>\n","urlObject":{"path":["voice","record",":recordingId","token"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"7aaaf51c-6b00-49e7-a1e8-e11e350b2a99","description":{"content":"<p>The ID of the Recording. This string starts with prefix 'RE'.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"recordingId"}]}},"response":[{"id":"d44505d0-4936-4b93-87bb-476b798853b9","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"audio/wav"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/record/:recordingId/token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","record",":recordingId","token"],"variable":[{"key":"recordingId","value":"string","description":"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":"string"}],"_postman_id":"a91b32b0-3129-469e-87dd-da8a63c80169"}],"id":"09ed0d09-aecf-4ace-81c7-7ee795b609f4","_postman_id":"09ed0d09-aecf-4ace-81c7-7ee795b609f4","description":""},{"name":"Listen to the voice record","id":"526048f8-a24a-43bb-8ee1-adde0f05e7d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"audio/wav"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/record/:recordingId","description":"<p>REQUIRED SCOPES <code>['voice:read']</code><br />Listen to the voice record</p>\n","urlObject":{"path":["voice","record",":recordingId"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"b65ac968-a46b-46ee-bdb1-dd7407eefb08","description":{"content":"<p>The ID of the Recording. This string starts with prefix 'RE'.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"recordingId"}]}},"response":[{"id":"00a8f879-e5a8-4a5d-a0eb-e2f4d44f1d83","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"audio/wav"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/record/:recordingId","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","record",":recordingId"],"variable":[{"key":"recordingId","value":"string","description":"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":"string"}],"_postman_id":"526048f8-a24a-43bb-8ee1-adde0f05e7d6"}],"id":"fca14ad1-61e0-4909-93e5-a8eb5ffadefe","_postman_id":"fca14ad1-61e0-4909-93e5-a8eb5ffadefe","description":""}],"id":"a5bf7369-7eac-434e-929a-c74495f20174","_postman_id":"a5bf7369-7eac-434e-929a-c74495f20174","description":""},{"name":"voicemail-record","item":[{"name":"{recordingId}","item":[{"name":"Listen to the voicemail record","id":"3988c561-e85e-4851-b6a8-9f0824cc7b3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"audio/wav"}],"url":"https://api.salesmessage.com/pub/v2.3/voice/voicemail-record/:recordingId","description":"<p>REQUIRED SCOPES <code>['voice:read']</code><br />Listen to the voicemail record</p>\n","urlObject":{"path":["voice","voicemail-record",":recordingId"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"fa781cc7-1629-4749-9500-e126e0b743d3","description":{"content":"<p>The ID of the Recording. This string starts with prefix 'RE'.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"recordingId"}]}},"response":[{"id":"b08b93e4-dd5e-4827-8665-ddca97b9e336","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"audio/wav"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/voice/voicemail-record/:recordingId","host":["https://api.salesmessage.com/pub/v2.3"],"path":["voice","voicemail-record",":recordingId"],"variable":[{"key":"recordingId","value":"string","description":"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":"string"}],"_postman_id":"3988c561-e85e-4851-b6a8-9f0824cc7b3a"}],"id":"f8e3d7a2-06e4-474f-a1fb-efe10c1257fc","_postman_id":"f8e3d7a2-06e4-474f-a1fb-efe10c1257fc","description":""}],"id":"3282b566-819e-4224-89c8-e4160b379153","_postman_id":"3282b566-819e-4224-89c8-e4160b379153","description":""}],"id":"d3be5088-4f4e-45df-96fb-52223c69cd22","_postman_id":"d3be5088-4f4e-45df-96fb-52223c69cd22","description":""},{"name":"chats","item":[{"name":"{token}","item":[{"name":"Get website chat settings","id":"ca3ebf5e-d29e-497e-b806-f7b1df6b5773","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/chats/:token","description":"<p>REQUIRED SCOPES <code>['website-chat:read']</code><br />Get website chat settings</p>\n","urlObject":{"path":["chats",":token"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"fbe43d91-2acf-4bcb-ba94-3fe6226c9315","description":{"content":"<p>Token</p>\n","type":"text/plain"},"type":"any","value":"string","key":"token"}]}},"response":[{"id":"5acaa6af-449b-42d2-9710-cd70e7b8929c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/chats/:token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["chats",":token"],"variable":[{"key":"token","value":"string","description":"Token"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"cdn_url\": \"string\",\n  \"button\": \"string\",\n  \"color\": \"string\",\n  \"position\": \"string\",\n  \"header\": \"string\",\n  \"organization_name\": \"string\",\n  \"status\": \"string\",\n  \"team_number\": \"string\",\n  \"uuid\": \"string\",\n  \"domains\": [\n    {\n      \"website_chat_id\": 7610,\n      \"domain\": \"string\"\n    },\n    {\n      \"website_chat_id\": 9912,\n      \"domain\": \"string\"\n    }\n  ]\n}"},{"id":"5e787fea-d1d5-4afb-ba42-f71c5198ea67","name":"Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/chats/:token","host":["https://api.salesmessage.com/pub/v2.3"],"path":["chats",":token"],"variable":[{"key":"token","value":"string","description":"Token"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"ca3ebf5e-d29e-497e-b806-f7b1df6b5773"}],"id":"adef63cc-ec7a-46f9-8cd4-a549664d14a6","_postman_id":"adef63cc-ec7a-46f9-8cd4-a549664d14a6","description":""},{"name":"status","item":[{"name":"Update website chat status","id":"fca4a50f-44d9-4a42-bb9c-867edb230cf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"status\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/chats/status","description":"<p>REQUIRED SCOPES <code>['website-chat:write']</code><br />Update website chat status</p>\n","urlObject":{"path":["chats","status"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"1f80136b-7f43-46e7-86d5-ec597ada2cef","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"status\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/chats/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1262,\n  \"button\": \"string\",\n  \"color\": \"string\",\n  \"position\": \"string\",\n  \"header\": \"string\",\n  \"organization_name\": \"string\",\n  \"status\": \"string\",\n  \"team_number\": \"string\",\n  \"uuid\": \"string\",\n  \"domains\": [\n    {\n      \"website_chat_id\": 1273,\n      \"domain\": \"string\"\n    },\n    {\n      \"website_chat_id\": 3049,\n      \"domain\": \"string\"\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 6241,\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 3628,\n      \"name\": \"string\"\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\"\n}"},{"id":"89824812-19d4-49a2-9309-933311a77ed0","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"status\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/chats/status"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"fca4a50f-44d9-4a42-bb9c-867edb230cf5"}],"id":"516b3a48-d325-4acc-8557-6ce8b3c761fa","_postman_id":"516b3a48-d325-4acc-8557-6ce8b3c761fa","description":""},{"name":"Get website chat","id":"c688ed2c-6bfe-49b0-94aa-993d42d15226","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/chats","description":"<p>REQUIRED SCOPES <code>['website-chat:read']</code><br />Get website chat</p>\n","urlObject":{"path":["chats"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"6e132396-0063-42dc-bb31-8616333dba06","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.salesmessage.com/pub/v2.3/chats"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1262,\n  \"button\": \"string\",\n  \"color\": \"string\",\n  \"position\": \"string\",\n  \"header\": \"string\",\n  \"organization_name\": \"string\",\n  \"status\": \"string\",\n  \"team_number\": \"string\",\n  \"uuid\": \"string\",\n  \"domains\": [\n    {\n      \"website_chat_id\": 1273,\n      \"domain\": \"string\"\n    },\n    {\n      \"website_chat_id\": 3049,\n      \"domain\": \"string\"\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 6241,\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 3628,\n      \"name\": \"string\"\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\"\n}"}],"_postman_id":"c688ed2c-6bfe-49b0-94aa-993d42d15226"},{"name":"Create or update website chat","id":"39527618-731b-417b-95b2-38628acf29a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"header\": \"string\",\n  \"phone\": \"string\",\n  \"team_id\": \"string\",\n  \"button\": \"string\",\n  \"color\": \"string\",\n  \"message\": \"string\",\n  \"status\": true,\n  \"domains\": [\n    \"string\",\n    \"string\"\n  ],\n  \"tags\": [\n    7250,\n    5237\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/chats","description":"<p>REQUIRED SCOPES <code>['website-chat:write']</code><br />Create or update website chat</p>\n","urlObject":{"path":["chats"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"a33f36d9-678f-4b19-bf0e-727b8aa095bd","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"header\": \"string\",\n  \"phone\": \"string\",\n  \"team_id\": \"string\",\n  \"button\": \"string\",\n  \"color\": \"string\",\n  \"message\": \"string\",\n  \"status\": true,\n  \"domains\": [\n    \"string\",\n    \"string\"\n  ],\n  \"tags\": [\n    7250,\n    5237\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/chats"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1262,\n  \"button\": \"string\",\n  \"color\": \"string\",\n  \"position\": \"string\",\n  \"header\": \"string\",\n  \"organization_name\": \"string\",\n  \"status\": \"string\",\n  \"team_number\": \"string\",\n  \"uuid\": \"string\",\n  \"domains\": [\n    {\n      \"website_chat_id\": 1273,\n      \"domain\": \"string\"\n    },\n    {\n      \"website_chat_id\": 3049,\n      \"domain\": \"string\"\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 6241,\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 3628,\n      \"name\": \"string\"\n    }\n  ],\n  \"created_at\": \"string\",\n  \"updated_at\": \"string\"\n}"},{"id":"29901a56-114c-4553-a761-3201232ad146","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"header\": \"string\",\n  \"phone\": \"string\",\n  \"team_id\": \"string\",\n  \"button\": \"string\",\n  \"color\": \"string\",\n  \"message\": \"string\",\n  \"status\": true,\n  \"domains\": [\n    \"string\",\n    \"string\"\n  ],\n  \"tags\": [\n    7250,\n    5237\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.salesmessage.com/pub/v2.3/chats"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"39527618-731b-417b-95b2-38628acf29a0"}],"id":"dd04711f-c969-49b2-b086-52d9b19258a9","_postman_id":"dd04711f-c969-49b2-b086-52d9b19258a9","description":""},{"name":"core","item":[{"name":"analytics","item":[{"name":"calling","item":[{"name":"export","item":[{"name":"Export Calling Analytics","id":"691beec0-261a-41d3-b1a3-7cef622e378c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/calling/export","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","calling","export"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"64a41a18-ebfc-4238-a52f-f76b153ef683","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.3/core/analytics/calling/export"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"691beec0-261a-41d3-b1a3-7cef622e378c"}],"id":"f7455258-222a-4eeb-9705-5fc4cb85560a","_postman_id":"f7455258-222a-4eeb-9705-5fc4cb85560a","description":""},{"name":"Get calling analytics","id":"dfd8d223-6c18-4f8c-aef5-3920f267b417","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/calling?from=1947-04-23&to=1947-04-23&interval=year&timezone=string&filter[members]=1786&filter[members]=1861&filter[inboxes]=1786&filter[inboxes]=1861&filter[numbers]=1786&filter[numbers]=1861&filter[tags]=1786&filter[tags]=1861","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /> Retrieve statistics and charts for inbound and outbound calls within the specified time range.</p>\n","urlObject":{"path":["core","analytics","calling"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Start date for the statistics range (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"from","value":"1947-04-23"},{"description":{"content":"<p>End date for the statistics range (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"to","value":"1947-04-23"},{"description":{"content":"<p>Interval for grouping the statistics</p>\n","type":"text/plain"},"key":"interval","value":"year"},{"description":{"content":"<p>Timezone in which the statistics should be calculated</p>\n","type":"text/plain"},"key":"timezone","value":"string"},{"description":{"content":"<p>Filter by members (comma-separated or array)</p>\n","type":"text/plain"},"key":"filter[members]","value":"1786"},{"description":{"content":"<p>Filter by members (comma-separated or array)</p>\n","type":"text/plain"},"key":"filter[members]","value":"1861"},{"description":{"content":"<p>Filter by inboxes (comma-separated or array)</p>\n","type":"text/plain"},"key":"filter[inboxes]","value":"1786"},{"description":{"content":"<p>Filter by inboxes (comma-separated or array)</p>\n","type":"text/plain"},"key":"filter[inboxes]","value":"1861"},{"description":{"content":"<p>Filter by numbers (comma-separated or array)</p>\n","type":"text/plain"},"key":"filter[numbers]","value":"1786"},{"description":{"content":"<p>Filter by numbers (comma-separated or array)</p>\n","type":"text/plain"},"key":"filter[numbers]","value":"1861"},{"description":{"content":"<p>Filter by tags (comma-separated or array)</p>\n","type":"text/plain"},"key":"filter[tags]","value":"1786"},{"description":{"content":"<p>Filter by tags (comma-separated or array)</p>\n","type":"text/plain"},"key":"filter[tags]","value":"1861"}],"variable":[]}},"response":[{"id":"7cfb7d30-2707-483a-a9d8-58da2c60a440","name":"Successful response with calling analytics","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/core/analytics/calling?from=1947-04-23&to=1947-04-23&interval=year&timezone=string&filter[members]=1861&filter[inboxes]=1861&filter[numbers]=1861&filter[tags]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["core","analytics","calling"],"query":[{"description":"Start date for the statistics range (YYYY-MM-DD)","key":"from","value":"1947-04-23"},{"description":"End date for the statistics range (YYYY-MM-DD)","key":"to","value":"1947-04-23"},{"description":"Interval for grouping the statistics","key":"interval","value":"year"},{"description":"Timezone in which the statistics should be calculated","key":"timezone","value":"string"},{"description":"Filter by members (comma-separated or array)","key":"filter[members]","value":"1861"},{"description":"Filter by inboxes (comma-separated or array)","key":"filter[inboxes]","value":"1861"},{"description":"Filter by numbers (comma-separated or array)","key":"filter[numbers]","value":"1861"},{"description":"Filter by tags (comma-separated or array)","key":"filter[tags]","value":"1861"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"statistic\": [\n    {\n      \"key\": \"outbound_calls\",\n      \"label\": \"Outbound Calls\",\n      \"value\": 0,\n      \"prevValue\": 0,\n      \"parent\": \"\"\n    },\n    {\n      \"key\": \"inbound_calls\",\n      \"label\": \"Inbound Calls\",\n      \"value\": 3,\n      \"prevValue\": 8,\n      \"parent\": \"\"\n    },\n    {\n      \"key\": \"avg_duration_outbound\",\n      \"label\": \"Avg Duration Outbound\",\n      \"value\": 0,\n      \"prevValue\": 0,\n      \"parent\": \"outbound_calls\"\n    },\n    {\n      \"key\": \"answered_outbound\",\n      \"label\": \"Answered Outbound\",\n      \"value\": 0,\n      \"prevValue\": 0,\n      \"parent\": \"outbound_calls\"\n    },\n    {\n      \"key\": \"unanswered_outbound\",\n      \"label\": \"Unanswered Outbound\",\n      \"value\": 0,\n      \"prevValue\": 0,\n      \"parent\": \"outbound_calls\"\n    },\n    {\n      \"key\": \"busy_outbound\",\n      \"label\": \"Busy Outbound\",\n      \"value\": 0,\n      \"prevValue\": 0,\n      \"parent\": \"outbound_calls\"\n    },\n    {\n      \"key\": \"failed_outbound\",\n      \"label\": \"Failed Outbound\",\n      \"value\": 0,\n      \"prevValue\": 0,\n      \"parent\": \"outbound_calls\"\n    },\n    {\n      \"key\": \"avg_duration_inbound\",\n      \"label\": \"Avg Duration Inbound\",\n      \"value\": 1,\n      \"prevValue\": 0,\n      \"parent\": \"inbound_calls\"\n    },\n    {\n      \"key\": \"answered_inbound\",\n      \"label\": \"Answered Inbound\",\n      \"value\": 1,\n      \"prevValue\": 0,\n      \"parent\": \"inbound_calls\"\n    },\n    {\n      \"key\": \"answered_inbound_human\",\n      \"label\": \"Answered Inbound Human\",\n      \"value\": 1,\n      \"prevValue\": 0,\n      \"parent\": \"inbound_calls\"\n    },\n    {\n      \"key\": \"answered_inbound_ai\",\n      \"label\": \"Answered Inbound Ai\",\n      \"value\": 0,\n      \"prevValue\": 0,\n      \"parent\": \"inbound_calls\"\n    },\n    {\n      \"key\": \"missed_inbound\",\n      \"label\": \"Missed Inbound\",\n      \"value\": 2,\n      \"prevValue\": 8,\n      \"parent\": \"inbound_calls\"\n    },\n    {\n      \"key\": \"busy_inbound\",\n      \"label\": \"Busy Inbound\",\n      \"value\": 0,\n      \"prevValue\": 0,\n      \"parent\": \"inbound_calls\"\n    },\n    {\n      \"key\": \"failed_inbound\",\n      \"label\": \"Failed Inbound\",\n      \"value\": 0,\n      \"prevValue\": 0,\n      \"parent\": \"inbound_calls\"\n    },\n    {\n      \"key\": \"forwarded\",\n      \"label\": \"Forwarded\",\n      \"value\": 1,\n      \"prevValue\": 0,\n      \"parent\": \"\"\n    },\n    {\n      \"key\": \"avg_duration_forwarded\",\n      \"label\": \"Avg Duration Forwarded\",\n      \"value\": 1,\n      \"prevValue\": 0,\n      \"parent\": \"forwarded\"\n    }\n  ],\n  \"charts\": [\n    {\n      \"date\": \"2025-01-10\",\n      \"label\": \"2025-01-10\",\n      \"outbound_calls\": 0,\n      \"inbound_calls\": 3,\n      \"avg_duration_outbound\": 0,\n      \"answered_outbound\": 0,\n      \"unanswered_outbound\": 0,\n      \"busy_outbound\": 0,\n      \"failed_outbound\": 0,\n      \"avg_duration_inbound\": 1,\n      \"answered_inbound\": 1,\n      \"answered_inbound_human\": 1,\n      \"answered_inbound_ai\": 0,\n      \"missed_inbound\": 2,\n      \"busy_inbound\": 0,\n      \"failed_inbound\": 0,\n      \"forwarded\": 1,\n      \"avg_duration_forwarded\": 1\n    },\n    {\n      \"date\": \"2025-01-10\",\n      \"label\": \"2025-01-10\",\n      \"outbound_calls\": 0,\n      \"inbound_calls\": 3,\n      \"avg_duration_outbound\": 0,\n      \"answered_outbound\": 0,\n      \"unanswered_outbound\": 0,\n      \"busy_outbound\": 0,\n      \"failed_outbound\": 0,\n      \"avg_duration_inbound\": 1,\n      \"answered_inbound\": 1,\n      \"answered_inbound_human\": 1,\n      \"answered_inbound_ai\": 0,\n      \"missed_inbound\": 2,\n      \"busy_inbound\": 0,\n      \"failed_inbound\": 0,\n      \"forwarded\": 1,\n      \"avg_duration_forwarded\": 1\n    }\n  ]\n}"},{"id":"98b2b336-8839-4c89-a7b5-3b0f3413d765","name":"Internal server 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.3/core/analytics/calling?from=1947-04-23&to=1947-04-23&interval=year&timezone=string&filter[members]=1861&filter[inboxes]=1861&filter[numbers]=1861&filter[tags]=1861","host":["https://api.salesmessage.com/pub/v2.3"],"path":["core","analytics","calling"],"query":[{"description":"Start date for the statistics range (YYYY-MM-DD)","key":"from","value":"1947-04-23"},{"description":"End date for the statistics range (YYYY-MM-DD)","key":"to","value":"1947-04-23"},{"description":"Interval for grouping the statistics","key":"interval","value":"year"},{"description":"Timezone in which the statistics should be calculated","key":"timezone","value":"string"},{"description":"Filter by members (comma-separated or array)","key":"filter[members]","value":"1861"},{"description":"Filter by inboxes (comma-separated or array)","key":"filter[inboxes]","value":"1861"},{"description":"Filter by numbers (comma-separated or array)","key":"filter[numbers]","value":"1861"},{"description":"Filter by tags (comma-separated or array)","key":"filter[tags]","value":"1861"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dfd8d223-6c18-4f8c-aef5-3920f267b417"}],"id":"8e4368ca-7a83-4d5c-ae0f-5065cae4d155","_postman_id":"8e4368ca-7a83-4d5c-ae0f-5065cae4d155","description":""},{"name":"contacts","item":[{"name":"export","item":[{"name":"Export Contacts Analytics","id":"be317d27-2f97-4638-b403-a29bd9cd1a7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/contacts/export","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","contacts","export"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"a1331ffe-0dee-4e10-b688-2b2dbff57969","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.3/core/analytics/contacts/export"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"be317d27-2f97-4638-b403-a29bd9cd1a7e"}],"id":"820fb44a-545a-4f3c-8e1c-60fed0686cfc","_postman_id":"820fb44a-545a-4f3c-8e1c-60fed0686cfc","description":""},{"name":"Get Contacts Analytics","id":"c7fa3157-8fd0-49bc-8353-43e048178cbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/contacts","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","contacts"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"6c0f2cab-4256-40c2-8e06-34c02e7bbd05","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.3/core/analytics/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c7fa3157-8fd0-49bc-8353-43e048178cbd"}],"id":"56f5fa4d-c248-4707-91d9-33c2f443554e","_postman_id":"56f5fa4d-c248-4707-91d9-33c2f443554e","description":""},{"name":"conversations","item":[{"name":"export","item":[{"name":"Export Conversations Analytics","id":"b458287a-45f2-45b4-a34d-84dd16092b3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/conversations/export","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","conversations","export"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"0b98004e-d0e8-4e29-900f-eb9cc7544a64","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.3/core/analytics/conversations/export"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b458287a-45f2-45b4-a34d-84dd16092b3b"}],"id":"9959308d-a74a-428f-879a-3764111eb4ba","_postman_id":"9959308d-a74a-428f-879a-3764111eb4ba","description":""},{"name":"Get Conversations Analytics","id":"da04cf55-f5a2-497b-8888-3cb8ebe3721d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/conversations","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","conversations"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"a1f57cb8-c9a8-48a0-a1b8-1237356289af","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.3/core/analytics/conversations"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"da04cf55-f5a2-497b-8888-3cb8ebe3721d"}],"id":"8266bb50-7b76-4f0d-af26-a5e3acf90344","_postman_id":"8266bb50-7b76-4f0d-af26-a5e3acf90344","description":""},{"name":"conversions","item":[{"name":"list","item":[{"name":"Get Conversions List Analytics","id":"87b067e0-5ed2-4071-b15d-0faf1f1c9f93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/conversions/list","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","conversions","list"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"64d16be6-52f0-4762-a89e-519e504596dd","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.3/core/analytics/conversions/list"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"87b067e0-5ed2-4071-b15d-0faf1f1c9f93"}],"id":"d4cb5c0d-20e6-4ce7-8ff2-8ed9d8c17b93","_postman_id":"d4cb5c0d-20e6-4ce7-8ff2-8ed9d8c17b93","description":""},{"name":"{conversion}","item":[{"name":"chart","item":[{"name":"Get Conversion Chart","id":"a7d8de08-d724-4243-9116-4ef9cce65932","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/conversions/:conversion/chart","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","conversions",":conversion","chart"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"5fbe3b58-8016-4155-865d-055f4ea8b7c5","type":"any","value":"2491","key":"conversion"}]}},"response":[{"id":"c6d2d913-1f72-4f7a-9c9b-174a61bd20ef","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.3/core/analytics/conversions/:conversion/chart","host":["https://api.salesmessage.com/pub/v2.3"],"path":["core","analytics","conversions",":conversion","chart"],"variable":[{"key":"conversion","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a7d8de08-d724-4243-9116-4ef9cce65932"}],"id":"dde7bdf7-0462-40de-a23a-973d282a52f5","_postman_id":"dde7bdf7-0462-40de-a23a-973d282a52f5","description":""},{"name":"export","item":[{"name":"Export Conversion","id":"9dfde7a2-dbf6-4073-8391-bb52621e8830","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/conversions/:conversion/export","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","conversions",":conversion","export"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"c06c5e34-a72f-4d82-b489-458a188a53ba","type":"any","value":"2491","key":"conversion"}]}},"response":[{"id":"d5e9c449-69d0-43e3-820e-459f81ded9f7","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.3/core/analytics/conversions/:conversion/export","host":["https://api.salesmessage.com/pub/v2.3"],"path":["core","analytics","conversions",":conversion","export"],"variable":[{"key":"conversion","value":"2491"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9dfde7a2-dbf6-4073-8391-bb52621e8830"}],"id":"a7f5f379-4e27-43fe-9d57-fadb94c79d0b","_postman_id":"a7f5f379-4e27-43fe-9d57-fadb94c79d0b","description":""}],"id":"5e2598fd-f503-45ab-aa82-bda3b1e1e4fd","_postman_id":"5e2598fd-f503-45ab-aa82-bda3b1e1e4fd","description":""},{"name":"export","item":[{"name":"Export Conversions Analytics","id":"c3eab998-acb8-4ade-a818-2a03ce2481a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/conversions/export","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","conversions","export"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"e9fe9e16-d11c-4427-818a-d542d7901229","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.3/core/analytics/conversions/export"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c3eab998-acb8-4ade-a818-2a03ce2481a8"}],"id":"1b31eb74-b3a6-41c1-ac3f-cd04216a6a7f","_postman_id":"1b31eb74-b3a6-41c1-ac3f-cd04216a6a7f","description":""},{"name":"Get Conversions Analytics","id":"41c16289-04db-49c9-a5dc-2980977a1037","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/conversions","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","conversions"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"da92e7e4-c916-4ad2-aeb2-295719bfbca6","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.3/core/analytics/conversions"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"41c16289-04db-49c9-a5dc-2980977a1037"}],"id":"80179621-5cb6-492f-aa60-e6caefa6665e","_postman_id":"80179621-5cb6-492f-aa60-e6caefa6665e","description":""},{"name":"credits-usage","item":[{"name":"details","item":[{"name":"Get Credits Usage Details","id":"714bbddb-a8e2-41a8-891a-e1fdf5c69d3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/credits-usage/details","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","credits-usage","details"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"dbbf3ce6-faba-4838-8f94-455c90f7a2f5","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.3/core/analytics/credits-usage/details"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"714bbddb-a8e2-41a8-891a-e1fdf5c69d3d"}],"id":"e1cdc772-6dd9-4384-8833-3a0c3af0c659","_postman_id":"e1cdc772-6dd9-4384-8833-3a0c3af0c659","description":""}],"id":"7f97bd41-4502-47f2-b769-f55239931c09","_postman_id":"7f97bd41-4502-47f2-b769-f55239931c09","description":""},{"name":"messages","item":[{"name":"export","item":[{"name":"Export Messages Analytics","id":"e5ecacb7-1c92-4a96-8384-dea0d26cc7b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/messages/export","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","messages","export"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"0f91ff6f-0b8b-44f2-9a67-00a638b11bb3","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.3/core/analytics/messages/export"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e5ecacb7-1c92-4a96-8384-dea0d26cc7b1"}],"id":"141a0830-d468-42c1-8507-699a2bd90cba","_postman_id":"141a0830-d468-42c1-8507-699a2bd90cba","description":""},{"name":"Get Messages Analytics","id":"71649aa6-c511-49bf-926f-282bb71e0d26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/messages","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","messages"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"8dce70ea-a6c5-4cbc-b206-60d3611cf746","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.3/core/analytics/messages"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"71649aa6-c511-49bf-926f-282bb71e0d26"}],"id":"87f1a6d0-95a2-43d3-be61-3e16d674cec7","_postman_id":"87f1a6d0-95a2-43d3-be61-3e16d674cec7","description":""},{"name":"overall","item":[{"name":"{section}","item":[{"name":"Get Overall Analytics","id":"33396b15-0c1c-47f2-bfb4-641b7192acac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/overall/:section","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","overall",":section"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[{"id":"bb8d51cd-0022-4059-b90b-3bf9922b27f3","type":"any","value":"calls","key":"section"}]}},"response":[{"id":"2c1ab9ab-475d-4523-a5ca-d6c58d1ca27b","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.3/core/analytics/overall/:section","host":["https://api.salesmessage.com/pub/v2.3"],"path":["core","analytics","overall",":section"],"variable":[{"key":"section","value":"calls"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"33396b15-0c1c-47f2-bfb4-641b7192acac"}],"id":"3f66487b-d0c9-4245-b489-a4d2ca28311e","_postman_id":"3f66487b-d0c9-4245-b489-a4d2ca28311e","description":""}],"id":"8841ce9c-863b-4828-8d30-0bcca72d3ef7","_postman_id":"8841ce9c-863b-4828-8d30-0bcca72d3ef7","description":""},{"name":"performance","item":[{"name":"members","item":[{"name":"Get Performance Members Analytics","id":"48885c8d-7a56-41be-8eb6-d223d39ebc25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/performance/members","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","performance","members"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"62821833-c943-4b0e-b60e-5a284664b9eb","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.3/core/analytics/performance/members"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"48885c8d-7a56-41be-8eb6-d223d39ebc25"}],"id":"aeea366c-db9c-4272-95ab-f92b75ea1fb6","_postman_id":"aeea366c-db9c-4272-95ab-f92b75ea1fb6","description":""},{"name":"export","item":[{"name":"Export Performance Analytics","id":"f67df25d-82b5-4402-9389-99b390fbcd80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/performance/export","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","performance","export"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"c0e352f5-f898-4294-a0c3-ad4976c7a687","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.3/core/analytics/performance/export"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f67df25d-82b5-4402-9389-99b390fbcd80"}],"id":"133c7a64-76fb-418e-a229-92eededf5b5e","_postman_id":"133c7a64-76fb-418e-a229-92eededf5b5e","description":""},{"name":"Get Performance Analytics","id":"1178b758-df9d-4836-830f-2e81927cac76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.salesmessage.com/pub/v2.3/core/analytics/performance","description":"<p>REQUIRED SCOPES <code>['analytics:read']</code> <br /></p>\n","urlObject":{"path":["core","analytics","performance"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[],"variable":[]}},"response":[{"id":"95f2f78c-432a-44e9-85ac-06f3970b5c71","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.3/core/analytics/performance"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1178b758-df9d-4836-830f-2e81927cac76"}],"id":"bcec7399-83fc-4ba0-9cb5-366621986cfd","_postman_id":"bcec7399-83fc-4ba0-9cb5-366621986cfd","description":""}],"id":"77e087cf-71fa-43ef-985a-267d9885afed","_postman_id":"77e087cf-71fa-43ef-985a-267d9885afed","description":""},{"name":"organization","item":[{"name":"analytics","item":[{"name":"Get organization analytics","id":"8b62d08b-1c99-45e5-b19b-f111473b6024","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.salesmessage.com/pub/v2.3/core/organization/analytics?from=1947-04-23&to=1947-04-23&timezone=string&page=1&sort=name&order=asc","description":"<p>REQUIRED SCOPES <code>['organizations:read']</code><br />Get organization analytics</p>\n","urlObject":{"path":["core","organization","analytics"],"host":["https://api.salesmessage.com/pub/v2.3"],"query":[{"description":{"content":"<p>Start date for analytics (format: Y-m-d)</p>\n","type":"text/plain"},"key":"from","value":"1947-04-23"},{"description":{"content":"<p>End date for analytics (format: Y-m-d)</p>\n","type":"text/plain"},"key":"to","value":"1947-04-23"},{"description":{"content":"<p>Timezone for the dates</p>\n","type":"text/plain"},"key":"timezone","value":"string"},{"description":{"content":"<p>Page number for inbox pagination</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Field to sort by</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"description":{"content":"<p>Sort order (asc or desc)</p>\n","type":"text/plain"},"key":"order","value":"asc"}],"variable":[]}},"response":[{"id":"6f2f64e7-790f-419d-bf2b-106ba75324a8","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.salesmessage.com/pub/v2.3/core/organization/analytics?from=1947-04-23&to=1947-04-23&timezone=string&page=1&sort=name&order=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["core","organization","analytics"],"query":[{"description":"Start date for analytics (format: Y-m-d)","key":"from","value":"1947-04-23"},{"description":"End date for analytics (format: Y-m-d)","key":"to","value":"1947-04-23"},{"description":"Timezone for the dates","key":"timezone","value":"string"},{"description":"Page number for inbox pagination","key":"page","value":"1"},{"description":"Field to sort by","key":"sort","value":"name"},{"description":"Sort order (asc or desc)","key":"order","value":"asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"inboxes\": {},\n  \"calls\": [\n    {\n      \"date\": \"string\",\n      \"label\": \"string\",\n      \"forwarded\": 9371,\n      \"inbound\": 6328,\n      \"outbound\": 3318,\n      \"total\": 1923\n    },\n    {\n      \"date\": \"string\",\n      \"label\": \"string\",\n      \"forwarded\": 256,\n      \"inbound\": 8916,\n      \"outbound\": 9211,\n      \"total\": 6472\n    }\n  ]\n}"},{"id":"4d0e2217-4d8c-49e4-a272-41f39a206aa1","name":"Unauthenticated","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.3/core/organization/analytics?from=1947-04-23&to=1947-04-23&timezone=string&page=1&sort=name&order=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["core","organization","analytics"],"query":[{"description":"Start date for analytics (format: Y-m-d)","key":"from","value":"1947-04-23"},{"description":"End date for analytics (format: Y-m-d)","key":"to","value":"1947-04-23"},{"description":"Timezone for the dates","key":"timezone","value":"string"},{"description":"Page number for inbox pagination","key":"page","value":"1"},{"description":"Field to sort by","key":"sort","value":"name"},{"description":"Sort order (asc or desc)","key":"order","value":"asc"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ba4ea116-bd59-44de-b029-9cf30ce73f43","name":"Forbidden","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.3/core/organization/analytics?from=1947-04-23&to=1947-04-23&timezone=string&page=1&sort=name&order=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["core","organization","analytics"],"query":[{"description":"Start date for analytics (format: Y-m-d)","key":"from","value":"1947-04-23"},{"description":"End date for analytics (format: Y-m-d)","key":"to","value":"1947-04-23"},{"description":"Timezone for the dates","key":"timezone","value":"string"},{"description":"Page number for inbox pagination","key":"page","value":"1"},{"description":"Field to sort by","key":"sort","value":"name"},{"description":"Sort order (asc or desc)","key":"order","value":"asc"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"eadf6c2f-c09c-4d53-b7f8-ba5292e9ba0f","name":"Validation 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.3/core/organization/analytics?from=1947-04-23&to=1947-04-23&timezone=string&page=1&sort=name&order=asc","host":["https://api.salesmessage.com/pub/v2.3"],"path":["core","organization","analytics"],"query":[{"description":"Start date for analytics (format: Y-m-d)","key":"from","value":"1947-04-23"},{"description":"End date for analytics (format: Y-m-d)","key":"to","value":"1947-04-23"},{"description":"Timezone for the dates","key":"timezone","value":"string"},{"description":"Page number for inbox pagination","key":"page","value":"1"},{"description":"Field to sort by","key":"sort","value":"name"},{"description":"Sort order (asc or desc)","key":"order","value":"asc"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8b62d08b-1c99-45e5-b19b-f111473b6024"}],"id":"f780aa7f-adce-4ab2-a0e8-f0550479c285","_postman_id":"f780aa7f-adce-4ab2-a0e8-f0550479c285","description":""}],"id":"e52ebe67-19c3-4ca2-85b3-cd8c276623e4","_postman_id":"e52ebe67-19c3-4ca2-85b3-cd8c276623e4","description":""}],"id":"1584687c-5b28-43c9-ae07-c0430ed5daa1","_postman_id":"1584687c-5b28-43c9-ae07-c0430ed5daa1","description":""}],"variable":[{"key":"baseUrl","value":"https://api.salesmessage.com/pub/v2.3"},{"key":"bearer_token_0b1z","secret":true}]}