{"info":{"_postman_id":"7d2cbd98-7ef0-5f5f-6f32-01b57cc1dc24","name":"Samba Live REST API","description":"<html><head></head><body><h2>API Documentation for Samba Live</h2>\n\n<h3>Intro</h3>\n\n<p>For marketing information on Digital Samba, please refer to the following web pages:</p>\n<ul><li><p><a href=\"https://www.digitalsamba.com\">Digital Samba homepage</a></p></li><li><p><a href=\"https://www.digitalsamba.com/webinars\">Digital Samba for Webinars</a></p></li><li><p><a href=\"https://www.digitalsamba.com/education\">Digital Samba for Education</a></p></li><li><p><a href=\"https://www.digitalsamba.com/meeting-software\">Digital Samba for Meetings</a></p></li><li><p><a href=\"https://www.digitalsamba.com/video-api\">Digital Samba Embedded</a></p></li><li><p><a href=\"https://www.digitalsamba.com/pricing\">Pricing</a></p></li><li><p><a href=\"https://www.digitalsamba.com/features\">Features</a></p></li><li><p><a href=\"https://www.digitalsamba.com/tech-specs\">Technical specifications</a></p></li></ul>\n\n<h3>Quickstart</h3>\n\n<p>The Samba Live API is a RESTful Web Service.</p>\n\n<p>It accepts requests using standard HTTP methods, such as GET, PUT, POST and DELETE. Currently, “Basic HTTP Authentication” is the only available method of authenticating. We are working to additionally provide “Digest HTTP Authentication”.</p>\n\n<p>Examples given here are provided for the PHP programming language and uses cURL to make the HTTP requests.</p>\n\n<h3>Important points:</h3>\n\n<ol><li><p>According to the HTTP specification, when making GET requests, all parameters must be passed as URL/querystring parameters.</p></li><li><p>When making PUT, POST or DELETE requests, all parameters must be passed in the request body; URL/querystring parameters in such requests will be ignored, except for the format variable.</p></li><li><p>The data format of the request body must contain an <code>input_type</code> and <code>rest_data</code> variable, the former must be set to “json” and the latter must be a valid JSON array, such as<br><code>input_type=json&amp;rest_data={\"id\":\"1\",\"var2\":\"val2\"}</code></p><p>The JSON approach is robust as it allows the passing of objects and arrays whilst also being simpler to implement (simply json_encode() your data array before sending it). We provide PHP code examples for how requests are made with each API method below.</p><p>In the future, we may allow for additional input_type (such as XML), but for the time being you must always set this to “json”.</p><p>There is more choice available for return formats - take a look at the section called “Return Formatting” below.</p></li><li><p>All special characters (+, $, &lt;, &gt;, ect) in rest_data array should be urlencoded. You can use urlencode PHP function, or similar.</p></li></ol>\n\n<h3>How to use HTTP Basic Auth while developing and debugging</h3>\n\n<p><br>To access the Samba Live API methods you must pass the Authorization header as part of each request, set it to basic and pass the required encrypted string. For example:<br></p>\n\n<p><code>Authorization: Basic bWF0dGhpYXM6YWWtaW4=</code></p>\n\n<p>The encrypted string must be a base64 encoded combination of username and password in the following format:</p>\n\n<p><code>myUsername:myPassword</code></p>\n\n<p>In Fiddler you can create this string by opening the Encoder tab, selecting base64 and entering your credentials.</p>\n\n<p><br>Note when using non-latin usernames: you can use a normal browser to test GET methods. You will be asked to provide username/password in a popup, which is passed to the server as HTTP Basic Auth. Note that not all browsers support non-latin characters during this authentication. Chrome works, Firefox and others do not support it. This is only an issue when testing with a browser. cURL has no such issues.<br></p>\n\n<h4>Essential Tools:</h4>\n\n<p>Fiddler2 - HTTP Web Debugger. Allows you to send GET, PUT, POST, DELETE and other HTTP requests, modify headers and request body, and capture the return values. Essential for testing and debugging your API integration.</p>\n<h4>Essential Reading:</h4>\n\n<p>“RESTful Web Services” by Leonard Richardson &amp; Sam Ruby (O’Reilly) - some formulations in this document have been borrowed from this excellent book, in particular for the section on HTTP Error Codes.</p>\n<h3>General Definitions</h3>\n\n<p><br>[ver] - The version of the API endpoint, must be defined in each request URL. The current version is 2.<br>Example: GET http://domain.com/api/2/[username]/authverify<br></p>\n\n<p><br>[username] - The username of the account which is making the API requests.<br>Example: GET http://domain.com/api/[ver]/johndoe/authverify<br></p>\n\n<h3>HTTP Error Codes</h3>\n\n<h4>400 “Bad Request”</h4>\n\n<p><br>Returned when providing input during a PUT operation which would leave the resource in an incomplete or inconsistent state. The provided input is nonsensical or corrupt.<br></p>\n\n<p>Example: Providing an alphabetic value of “abcd” for an integer parameter, such as “offset”.</p>\n<h4>401 “Unauthorized”</h4>\n\n<p>Returned when trying to operate on a protected resource without providing the proper authentication credentials (either wrong or none at all). The response header WWW-Authenticate describes what kind of authentication the server will accept.</p>\n\n<h4>404 “Not Found”</h4>\n\n<p><br>Returned when trying to access a URI that does not correspond to any existing resource. The only possible exception is when a client is trying to PUT a new resource to that URI, see 201.</p>\n\n<p><br>Example: Trying to retrieve a non-existing user.<br></p>\n\n<h4>405 “Method Not Allowed”</h4>\n\n<p>Returned when the client tries to use an HTTP method which this particular resource doesn’t support.</p>\n\n<p>Example: Trying to PUT or DELETE a read-only resource.</p>\n\n<h4>409 “Conflict”</h4>\n\n<p>Returned when providing input during a PUT operation which would cause the resource state to conflict with some other resource.</p>\n\n<p>Example: Trying to change your username to a name that’s already taken. Trying to delete a folder that is not empty.</p>\n\n<h4>410 “Gone”</h4>\n\n<p>Returned when the server knows there used to be a resource there, but there isn’t anymore. Also see 404, when the server has no idea about the resource at all.</p>\n\n<h4>500 “Internal Server Error”</h4>\n\n<p>There is a problem on the server side.</p>\n\n<h3>HTTP Success Codes</h3>\n\n<h4>200 “OK”</h4>\n\n<p>Returned when a GET operation is successful, a POST operation to append to an existing resource is successful, and when a DELETE operation is successful.</p>\n\n<h4>201 “Created”</h4>\n\n<p>When a successful PUT or POST (when creating new) operation is carried out a 201 is returned, along with the new URI in the Location header. See 400 and 409 for related error codes.</p>\n\n<h4>301 “Moved Permanently”</h4>\n\n<p>Sometimes a PUT operation will change the URI of the resource just modified. In such cases, a 301 is returned, along with the new URI in the Location header. Future requests to the old URI will result in a 301, 404 or 410 return.</p>\n\n<h3>Return Formatting</h3>\n\n<p>The Digital Samba API supports a number of different return formats.</p>\n\n<p>By appending <code>/format/[value]/</code> to the URLs of the API method calls, or by passing the correct MIME-type, you can choose the format of the returned data. These may differ for each call, so, for example you may wish to obtain a list of users in XML format, but get a list of invitees returned in JSON.</p>\n\n<p>Available formats and how to request them:</p>\n\n<table><tbody><tr><td><div><b>Format</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>URL Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Sample return</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>xml</div><div><div><div><div></div></div></div><div></div></div></td><td><div>none (default) or /format/xml</div><div><div><div><div></div></div></div><div></div></div></td><td><div><pre class=\"plain\"><code><div>?xml version=\"1.0\" encoding=\"utf-8\"?\n<br></div><div>&lt;xml&gt;\n<br></div><div>  &lt;item&gt;\n<br></div><div>    &lt;id&gt;1&lt;/id&gt;\n<br></div><div>    &lt;login&gt;username&lt;/login&gt;\n<br></div><div>    &lt;email&gt;email@domain.com&lt;/email&gt;\n<br></div><div>    &lt;first_name&gt;First Name&lt;/first_name&gt;\n<br></div><div>    &lt;last_name&gt;Last Name&lt;/last_name&gt;\n<br></div><div>    [...]\n<br></div><div>  &lt;/item&gt;\n<br></div><div>&lt;/xml&gt;\n<br></div></code></pre></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>json</div><div><div><div><div></div></div></div><div></div></div></td><td><div>/format/json</div><div><div><div><div></div></div></div><div></div></div></td><td><div><pre class=\"plain\"><code><div>[\n<br></div><div>      {\n<br></div><div>            \"id\": \"1\",\n<br></div><div>            \"login\": \"username\",\n<br></div><div>            \"email\": \"email@domain.com\",\n<br></div><div>            \"first_name\": \"First Name\",\n<br></div><div>            \"last_name\": \"Last Name\",\n<br></div><div>            [...]\n<br></div><div>      }\n<br></div><div>]\n<br></div></code></pre></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serialize</div><div><div><div><div></div></div></div><div></div></div></td><td><div>/format/serialize</div><div><div><div><div></div></div></div><div></div></div></td><td><div><pre class=\"plain\"><code><div>a:1:\n<br></div><div>{\n<br></div><div>    i:0;a:5:\n<br></div><div>    {\n<br></div><div>        s:2:\"id\";\n<br></div><div>        s:1:\"1\";\n<br></div><div>        s:5:\"login\";\n<br></div><div>        s:8:\"username\";\n<br></div><div>        s:5:\"email\";\n<br></div><div>        s:16:\"email@domain.com\";\n<br></div><div>        s:10:\"first_name\";\n<br></div><div>        s:10:\"First Name\";\n<br></div><div>        s:9:\"last_name\";\n<br></div><div>        s:9:\"Last Name\";\n<br></div><div>        [...]\n<br></div><div>    }\n<br></div><div>}\n<br></div></code></pre></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>php<br><i>(can be used in eval)</i></div><div><div><div><div></div></div></div><div></div></div></td><td><div>/format/php</div><div><div><div><div></div></div></div><div></div></div></td><td><div><pre class=\"plain\"><code><div>array (\n<br></div><div>  0 =&gt;\n<br></div><div>  array (\n<br></div><div>    'id' =&gt; '1',\n<br></div><div>    'login' =&gt; 'username',\n<br></div><div>    'email' =&gt; 'email@domain.com',\n<br></div><div>    'first_name' =&gt; 'First Name',\n<br></div><div>    'last_name' =&gt; 'Last Name',\n<br></div><div>    [...]\n<br></div><div>  )\n<br></div><div>)\n<br></div></code></pre></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>html</div><div><div><div><div></div></div></div><div></div></div></td><td><div>/format/html</div><div><div><div><div></div></div></div><div></div></div></td><td><div><pre class=\"plain\"><code><div>&lt;table border=\"0\" cellpadding=\"4\" cellspacing=\"0\"&gt;\n<br></div><div>    &lt;tr&gt;\n<br></div><div>        &lt;th&gt;id&lt;/th&gt;\n<br></div><div>        &lt;th&gt;login&lt;/th&gt;\n<br></div><div>        &lt;th&gt;email&lt;/th&gt;\n<br></div><div>        &lt;th&gt;first_name&lt;/th&gt;\n<br></div><div>        &lt;th&gt;last_name&lt;/th&gt;\n<br></div><div>        &lt;th&gt;[...]&lt;/th&gt;\n<br></div><div>    &lt;/tr&gt;\n<br></div><div>    &lt;tr&gt;\n<br></div><div>        &lt;td&gt;1&lt;/td&gt;\n<br></div><div>        &lt;td&gt;username&lt;/td&gt;\n<br></div><div>        &lt;td&gt;email@domain.com&lt;/td&gt;\n<br></div><div>        &lt;td&gt;First Name&lt;/td&gt;\n<br></div><div>        &lt;td&gt;Last Name&lt;/td&gt;\n<br></div><div>        &lt;td&gt;[...]&lt;/td&gt;\n<br></div><div>    &lt;/tr&gt;\n<br></div><div>&lt;/table&gt;\n<br></div></code></pre></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>csv</div><div><div><div><div></div></div></div><div></div></div></td><td><div>/format/csv</div><div><div><div><div></div></div></div><div></div></div></td><td><div><pre class=\"plain\"><code><div>id,login,email,first_name,last_name,[...]\n<br></div><div>1,\"username\",\"email@domain.com\",\"First Name\",\"Last Name\",[...]\n<br></div></code></pre></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"2014682","collectionId":"7d2cbd98-7ef0-5f5f-6f32-01b57cc1dc24","publishedId":"6YzutHM","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2019-02-08T10:15:14.000Z"},"item":[{"name":"Authentication","item":[{"name":"/authverify","id":"28790bad-cf49-aef3-d2f2-38580c9a188e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/authverify","description":"<p>Use to test if the auth credentials passed with HTTP Basic are valid.</p>\n\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>authenticated (bool)</td>\n        <td>If 1/true, credentials are valid..</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","authverify"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"fd4323e6-3092-bd5a-dde0-3ddf9e0281c5","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy","warning":""}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"id\":\"1\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/authverify"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 06 Jun 2017 17:08:50 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"490","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n  <authenticated>1</authenticated>\n  <message>You are authorized to use the API</message>\n</xml>"}],"_postman_id":"28790bad-cf49-aef3-d2f2-38580c9a188e"}],"id":"7b4515fa-6ed6-40d3-8b1f-b2ab03f63866","_postman_id":"7b4515fa-6ed6-40d3-8b1f-b2ab03f63866","description":""},{"name":"Branding","item":[{"name":"branding/id/[int]","id":"0867cca6-93ef-1376-fdd5-938b435cae5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/branding/id/1","description":"<p>Get branding options by provides user ID #</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td>Required</td>\n        <td>id (int)</td>\n        <td>ID# of user account.</td>\n    </tr>\n</table>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>user_id (str)</td>\n        <td>ID# of user account.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>session_login (str)</td>\n        <td>URL to Session Login Page image.\n            Dimensions: 275px wide, 46px high. Format: gif, jpg, png (transparent background recommended). Filesize: Max 256KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>top_of_account (str)</td>\n        <td>URL to Top of Account Center image. Dimensions: 264px wide, 51px high. Format: gif, jpg, png (transparent background recommended). Filesize: Max 256KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td> intro_screen (str)</td>\n        <td>URL to Dashboard Welcome Image. Dimensions: 156px wide, 156px high. Format: gif, jpg, png. Filesize: Max 256KB.  (Available in v4.4.5)\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>in_room_logo_html5 (str)</td>\n        <td>URL to In Room Logo image (HTML5 rooms only).\n            Recommended dimensions: 300px wide, 60px high (Maximum: 300px wide, 200px high). Format: svg or png preferred (Available in v5.1.5).\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>mobile_landing_logo (str)</td>\n        <td>URL to the Mobile Landing Page image. Dimensions: 420px wide, 100px high. Format: png (transparent background recommended). Filesize: Max 512KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>event_header (str)</td>\n        <td>URL to event header image.\n            Maximum Dimensions: 300px wide, 50px high. Format: gif, jpg, png. Filesize: Max 512KB.  (Available in v5.0.2)\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>event_photo (str)</td>\n        <td>URL to event Photo  image.\n            Dimensions: 240px wide, 180px high. Format: gif, jpg, png. Filesize: Max 1024KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>sharing_logo (str)</td>\n        <td>URL to Logo For Social Media Sharing.\n            Maximum Dimensions: 256px wide, 256px high. Format: gif, jpg, png. Filesize: Max 512KB.  (Available in v5.0.2)\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>email_header (int)</td>\n        <td>URL to Email Header image.\n            Maximum dimensions: 600px wide, 600px high. Format: png (transparent background recommended). Filesize: Max 1024KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>email_footer (str)</td>\n        <td>URL to Email Footer image.\n            Maximum dimensions: 600px wide, 600px high. Format: png (transparent background recommended). Filesize: Max 1024KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>moderator_redirect_url (str)</td>\n        <td>Moderator Redirect URL. At the end of the session, moderators are redirected to this URL.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>guest_redirect_url (str)</td>\n        <td>Guest Redirect URL. At the end of the session, guest participants are redirected to this URL.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>lobby_text (str)</td>\n        <td>Lobby text (Available in v4.3.9). Maximum 200 letters\n        </td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>","urlObject":{"path":["api","2","{{user_name}}","branding","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"bf809f7f-78d4-a25f-3a09-485c96be075a","name":"Responce","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/branding/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 09 May 2017 08:45:03 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"249","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <user_id>1</user_id>\n    <session_login>http://domain.com/storage/users/1/flat_ui_branding_session_login.png</session_login>\n    <top_of_account>http://domain.com/themes/flat_ui/images/no_branding/top_of_account.png</top_of_account>\n    <intro_screen>http://domain.com/themes/flat_ui/images/no_branding/intro_screen.png</intro_screen>\n    <in_room_logo_html5>http://domain.com/storage/users/1/flat_ui_branding_in_room_logo.png</in_room_logo_html5>\n    <mobile_landing_logo>http://domain.com/themes/flat_ui/images/no_branding/mobile_landing_logo.png</mobile_landing_logo>        \n    <event_header>http://domain.com/themes/flat_ui/images/custom_branding/event_header.png</event_header>\n    <event_photo>http://domain.com/themes/flat_ui/images/custom_branding/event_photo.png</event_photo>\n    <sharing_logo>http://domain.com/themes/flat_ui/images/custom_branding/sharing_logo.png</sharing_logo>\n    <email_header>http://domain.com/storage/users/1/flat_ui_branding_email_header.png</email_header>\n    <email_footer>http://domain.com/themes/flat_ui/images/no_branding/emails/footer.png</email_footer>        \n    <moderator_redirect_url>http://www.domain.com/moderator-thank-you-for-attending</moderator_redirect_url>\n    <guest_redirect_url>http://www.domain.com/guest-thank-you-for-attending</guest_redirect_url>\n    <lobby_text/>\n</xml>"}],"_postman_id":"0867cca6-93ef-1376-fdd5-938b435cae5c"},{"name":"/branding","id":"7a98b237-b37f-e66e-f2aa-933127f51754","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"user_id\":1,\n  \"session_login\":\"http://os4.dev.digitalsamba.com/storage/users/1/flat_ui_branding_session_login.png\",\n  \"moderator_redirect_url\":\"http://moderator_redirect_url.com\",\n  \"guest_redirect_url\":\"http://guest_redirect_url.com\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/branding","description":"<p>Create/Update branding options for user account. Available in v4.3.4</p>\n<h3>Arguments</h3>\n<p>See POST /branding</p>","urlObject":{"path":["api","2","{{user_name}}","branding"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a98b237-b37f-e66e-f2aa-933127f51754"},{"name":"/branding","id":"8056880c-ba39-5636-ef2e-09ea70ba3c75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"user_id\":1,\n  \"session_login\":\"http://os4.dev.digitalsamba.com/storage/users/1/flat_ui_branding_session_login.png\",\n  \"moderator_redirect_url\":\"http://moderator_redirect_url.com\",\n  \"guest_redirect_url\":\"http://guest_redirect_url.com\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/branding","description":"<p>Create/Update branding options for user account. Available in v4.3.4</p>\n<p>NOTE: This method is alias of PUT /branding.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>user_id (str)</td>\n        <td>ID# of user account.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>session_login (str)</td>\n        <td>URL to Session Login Page image.\n            Dimensions: 275px wide, 46px high. Format: gif, jpg, png (transparent background recommended). Filesize: Max 256KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>top_of_account (str)</td>\n        <td>URL to Top of Account Center image. Dimensions: 264px wide, 51px high. Format: gif, jpg, png (transparent background recommended). Filesize: Max 256KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td> intro_screen (str)</td>\n        <td>URL to Dashboard Welcome Image. Dimensions: 156px wide, 156px high. Format: gif, jpg, png. Filesize: Max 256KB.  (Available in v4.4.5)\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>in_room_logo_html5 (str)</td>\n        <td>URL to In Room Logo image (HTML5 rooms only).\n            Recommended dimensions: 300px wide, 60px high (Maximum: 300px wide, 200px high). Format: svg or png preferred (Available in v5.1.5).\n        </td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>mobile_landing_logo (str)</td>\n        <td>URL to the Mobile Landing Page image. Dimensions: 420px wide, 100px high. Format: png (transparent background recommended). Filesize: Max 512KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>event_header (str)</td>\n        <td>URL to event header image.\n            Maximum Dimensions: 300px wide, 50px high. Format: gif, jpg, png. Filesize: Max 512KB.  (Available in v5.0.2)\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>event_photo (str)</td>\n        <td>URL to event Photo  image.\n            Dimensions: 240px wide, 180px high. Format: gif, jpg, png. Filesize: Max 1024KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>sharing_logo (str)</td>\n        <td>URL to Logo For Social Media Sharing.\n            Maximum Dimensions: 256px wide, 256px high. Format: gif, jpg, png. Filesize: Max 512KB.  (Available in v5.0.2)\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>email_header (int)</td>\n        <td>URL to Email Header image.\n            Maximum dimensions: 600px wide, 600px high. Format: png (transparent background recommended). Filesize: Max 1024KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>email_footer (str)</td>\n        <td>URL to Email Footer image.\n            Maximum dimensions: 600px wide, 600px high. Format: png (transparent background recommended). Filesize: Max 1024KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>moderator_redirect_url (str)</td>\n        <td>Moderator Redirect URL. At the end of the session, moderators are redirected to this URL.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>guest_redirect_url (str)</td>\n        <td>Guest Redirect URL. At the end of the session, guest participants are redirected to this URL.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>lobby_text (str)</td>\n        <td>Lobby text (Available in v4.3.9). Maximum 200 letters\n        </td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the user account.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","branding"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"bb41fe1c-55d3-c9a4-a2b1-0d6f638079aa","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"user_id\":1,\n\t\"moderator_redirect_url\":\"http://moderator_redirect_url.com\",\n\t\"guest_redirect_url\":\"http://guest_redirect_url.com\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/branding"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Mon, 29 May 2017 13:18:23 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"233","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n\t<id>1</id>\n\t<message>User branding updated</message>\n</xml>"}],"_postman_id":"8056880c-ba39-5636-ef2e-09ea70ba3c75"},{"name":"/branding","id":"e1f67fcd-5ec4-fc6b-2c21-da18ab0d6c75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"id\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/branding/id/1","description":"<p>Reset the user account branding settings. <i>Available in v4.3.4</i></p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td>Required</td>\n        <td>id (str)</td>\n        <td>ID# of user account.</td>\n    </tr>\n    <tr>\n        <td>Optional</td>\n        <td>-</td>\n        <td>-</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the user account.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","branding","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"254f063d-fa6e-e57c-d7e2-cd90f737d6a4","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/branding/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Mon, 29 May 2017 13:18:31 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"206","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n\t<id>1</id>\n\t<message>User branding has been deleted</message>\n</xml>"}],"_postman_id":"e1f67fcd-5ec4-fc6b-2c21-da18ab0d6c75"}],"id":"9ca37f3c-abe0-f1e5-2e8c-8b60e24e89a7","description":"<p>User branding settings (available with v 4.3.4)</p>\n","_postman_id":"9ca37f3c-abe0-f1e5-2e8c-8b60e24e89a7"},{"name":"Company user limits","item":[{"name":"/company_user_limits/id/[int]","id":"ec734365-a8d1-312e-b27b-3453cccbae53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/company_user_limits/id/[int]","description":"<p>Get company user limits. Requires admin access rights. Available in v5.0.2</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>id (int)</td>\n    <td>ID# of company user account.</td>\n  </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>ID# of comapny user account.</td>\n  </tr>\n  <tr>\n    <td>company_sim_bcaster (int)</td>\n    <td>Number of broadcasters that can broadcast at the same time across all account holders in this company.</td>\n  </tr>\n  <tr>\n    <td>company_session_user_limit (int)</td>\n    <td>Number of sessions that can run at the same time in this company.</td>\n  </tr>\n  <tr>\n    <td>company_account_user_limit (int)</td>\n    <td>Number of attendees that can be in sessions at the same time across all account holders in this company.</td>\n  </tr>\n  <tr>\n    <td>company_filesize_limit (int)</td>\n    <td>The limit on total filesize (in KB) of all files of all account holders in this company (Available in v5.0.4).</td>\n  </tr>\n  <tr>\n    <td>company_service_plans (array)</td>\n    <td>Company Accounts Limits.\n<b>service_plan_id</b>: ID# of parent service plan\n<b>qty</b>: Number of accounts which this company may assign to the service plan\n    </td>\n  </tr>\n  <tr>\n    <td>enforce_expiry_date (bool)</td>\n    <td>Apply the expiry date to all account holders in this company (Available in v5.1.5).</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","company_user_limits","id","[int]"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"8e58a609-c493-979e-5336-1be4fdd57c7f","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/company_user_limits/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 31 May 2017 07:39:09 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"243","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <company_sim_bcaster>150</company_sim_bcaster>\n    <company_session_user_limit>100</company_session_user_limit>\n    <company_account_user_limit>100</company_account_user_limit>\n    <company_filesize_limit>5000</company_filesize_limit>\n    <company_service_plans>\n        <item>\n            <service_plan_id>1</service_plan_id>\n            <qty>1</qty>\n        </item>\n        <item>\n            <service_plan_id>589</service_plan_id>\n            <qty>1</qty>\n        </item>\n        <item>\n            <service_plan_id>830</service_plan_id>\n            <qty>1</qty>\n        </item>\n    </company_service_plans>\n</xml>"}],"_postman_id":"ec734365-a8d1-312e-b27b-3453cccbae53"},{"name":"/company_user_limits","id":"00cd04c1-5841-60be-bf0b-173b21596b87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"user_id\":1,\n\t\"company_sim_bcaster\":100,\n\t\"company_session_user_limit\":50,\n\t\"company_account_user_limit\":50,\n\t\"company_service_plans\":[\n\t\t{\"service_plan_id\":1,\"qty\":50}, \n\t\t{\"service_plan_id\":2,\"qty\":10}\n\t]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/company_user_limits","description":"<p>Update company user limits. Requires admin access rights. Available in v5.0.2</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>id (int)</td>\n    <td>ID# of comapny user account.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>company_sim_bcaster (int)</td>\n    <td>Number of broadcasters that can broadcast at the same time across all account holders in this company.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>company_session_user_limit (int)</td>\n    <td>Number of sessions that can run at the same time in this company.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>company_account_user_limit (int)</td>\n    <td>Number of attendees that can be in sessions at the same time across all account holders in this company.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>company_filesize_limit (int)</td>\n    <td>The limit on total filesize (in KB) of all files of all account holders in this company (Available in v5.0.4).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>company_service_plans (array)</td>\n    <td>Company Accounts Limits. \n<b>service_plan_id</b>: ID# of parent service plan\n<b>qty</b>: Number of accounts which this company may assign to the service plan\nFormat:\n<pre>\n[\n  {\n    \"service_plan_id\":1,\n    \"qty\":50\n  }, \n  {\n    \"service_plan_id\":2,\n    \"qty\":10\n  }\n]\n</pre>\n    </td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>enforce_expiry_date (bool)</td>\n    <td>Apply the expiry date to all account holders in this company (Available in v5.1.5).</td>\n  </tr>   \n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of company user account.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","company_user_limits"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"48956c68-4b82-07e7-784a-67f096baad8e","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"user_id\":503,\n\t\"company_sim_bcaster\":100,\n\t\"company_session_user_limit\":50,\n\t\"company_account_user_limit\":50,\n\t\"company_service_plans\":[\n\t\t{\"service_plan_id\":1,\"qty\":50}, \n\t\t{\"service_plan_id\":2,\"qty\":10}\n\t]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/company_user_limits"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 31 May 2017 07:51:52 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"300","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n\t<id>1</id>\n\t<message>Company user limits are updated</message>\n</xml>"}],"_postman_id":"00cd04c1-5841-60be-bf0b-173b21596b87"},{"name":"/company_user_limits","id":"514920aa-0807-ebe0-9f6b-fed7721c96cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"user_id\":1,\n\t\"company_sim_bcaster\":100,\n\t\"company_session_user_limit\":50,\n\t\"company_account_user_limit\":50,\n\t\"company_service_plans\":[\n\t\t{\"service_plan_id\":1,\"qty\":50}, \n\t\t{\"service_plan_id\":2,\"qty\":10}\n\t]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/company_user_limits","description":"<p>Update company user limits. Requires admin access rights. Available in v5.0.2</p>\n\n<h3>Arguments</h3>\n<p>See PUT /company_user_limits</p>","urlObject":{"path":["api","2","{{user_name}}","company_user_limits"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"514920aa-0807-ebe0-9f6b-fed7721c96cc"},{"name":"/company_user_limits","id":"539c247e-8a24-9e80-15d9-ca0c41536aa2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/company_user_limits","description":"<p>Delete company user  limits. Requires admin access rights. Available in v5.0.2</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td>Required</td>\n        <td>id (str)</td>\n        <td>ID# of company user account.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of the company user account.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","company_user_limits"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"d1d9725b-4a99-e2c7-dd18-b4d3ebeb632a","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/company_user_limits"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 31 May 2017 08:10:50 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"474","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Company user limits are removed</message>\n</xml>"}],"_postman_id":"539c247e-8a24-9e80-15d9-ca0c41536aa2"}],"id":"8fee1af2-30ea-7498-7f37-af1337dcc8b1","description":" <p> Manage Company user limits (available with v 5.0.2)</p>\n <p><b>Admin permissions required.</b></p>","_postman_id":"8fee1af2-30ea-7498-7f37-af1337dcc8b1"},{"name":"Recordings","item":[{"name":"/recording/id/[int]","id":"6cdf30b4-f06b-08a3-d516-6b9f0f6cdd31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording/id/1","description":"<p>Get recording associated with this user account.</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>id (int)</td>\n    <td>The id of the recording.</td>\n  </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the recording.</td>\n  </tr>\n  <tr>\n    <td>session_id (int)</td>\n    <td>The id of the session in which this recording was made.</td>\n  </tr>\n  <tr>\n    <td>title (str)</td>\n    <td>The name or title of this recording.</td>\n  </tr>\n  <tr>\n    <td>description (str)</td>\n    <td>Description of the recording.</td>\n  </tr>\n  <tr>\n    <td>duration (int)</td>\n    <td>Length of recording, in milliseconds.</td>\n  </tr>\n  <tr>\n    <td>password (str)</td>\n    <td>Password for public recording page (available with v 5.42.0).</td>\n  </tr>\n  <tr>\n    <td>download_link (str)</td>\n    <td>Flash: URL to zip file. HTML5: URL to mp4 file. (available with v 4.3.6).</td>\n  </tr>\n  <tr>\n    <td>play_link (str)</td>\n    <td>URL public recording page. (available with v 5.42.0).</td>\n  </tr>\n  <tr>\n    <td>bookmarks (array)</td>\n    <td>Recording bookmars. (available with v 5.38.0).</td>\n  </tr>\n  <tr>\n    <td>creation_date (datetime)</td>\n    <td>Datetime stamp when the recording was made.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","recording","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"1a0b321e-7085-ccad-02b4-643f53a4ca35","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:22:24 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"207","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <session_id>2</session_id>\n    <title>Recording Title</title>\n    <description>More info about my recording</description>\n    <duration>180004</duration>\n    <download_link>http://domain.com/storage/recordings/download/1-80fab40837f57e1269554927ac3ac92d.zip</download_link>\n    <creation_date>2017-03-24 08:06:58</creation_date>\n</xml>"},{"id":"acc09855-02ba-e10b-27cb-4fc4a40cf8b4","name":"404 Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording/id/[int]"},"status":"Not Found","code":404,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 31 May 2017 07:42:29 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"466","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><error>Not found</error></xml>\n"}],"_postman_id":"6cdf30b4-f06b-08a3-d516-6b9f0f6cdd31"},{"name":"/recordings","id":"e7c40b76-1837-de04-1cab-23db0883cee1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/recordings/count/1","description":"<p>Get recordings associated with this user account.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>session (int)</td>\n        <td>Pass a session id to limit results to recordings made in that session only. Otherwise recordings made across all sessions are returned.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>order (str)</td>\n        <td>Return results in ascending or descending order of recording ID (Depricated in 5.5). Default is asc.<br /> Accepted values: asc, desc\n        </td>\n    </tr>\n  <tr>\n    <td> </td>\n    <td>order_field (str)</td>\n    <td>Return results in order of this field (Available in 5.5). Default is id. \nAccepted values: id, title, description, duration, creation_date.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>order_dir (str)</td>\n    <td>Return results in ascending or descending order (Available in 5.5). Default is desc. \nAccepted values: asc, desc.</td>\n  </tr>     \n</table>\n<h3>Return Arguments</h3>\nSee <i>GET /recording/id/[int]</i>","urlObject":{"path":["api","2","{{user_name}}","recordings","count","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"73696d26-60a8-5dd5-068f-fd6736c3fafc","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/recordings/count/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:23:51 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"238","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <session_id>2</session_id>\n        <title>Recording Title</title>\n        <description>More info about my recording</description>\n        <duration>180004</duration>      \n        <download_link>http://domain.com/storage/recordings/download/1-80fab40837f57e1269554927ac3ac92d.zip</download_link>        \n        <creation_date>2017-03-24 08:06:58</creation_date>\n    </item>\n</xml>"}],"_postman_id":"e7c40b76-1837-de04-1cab-23db0883cee1"},{"name":"/recording","id":"93f79969-e77e-3d28-b746-73166e976604","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\t\t\t1,\n\t\"title\":\t\t\"My recording\",\n\t\"description\":\t\"More info about my recording\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording","description":"<p>Edit an existing recording.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the recording.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>title (str)</td>\n        <td>The title of the recording.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>description (str)</td>\n        <td>The description of the recording.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>password (str)</td>\n        <td>The password of the recording (available with v 5.42.0).</td>\n    </tr>\n\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the edited recording.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","recording"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"16699e78-7bd4-1a62-0998-028d2b5eae10","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json","enabled":true,"description":"The mime type of this content"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\t\t\t28,\n\t\"title\":\t\t\"My recording\",\n\t\"description\":\t\"More info about my recording\", \n\t\"password\":\t\t\"some-password\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:12:37 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"309","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>28</id><message>Recording updated</message></xml>\n"}],"_postman_id":"93f79969-e77e-3d28-b746-73166e976604"},{"name":"/recording/id/[int]","id":"be67b9d9-df94-6be3-0e74-d36376452c31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording/id/1","description":"<p>Delete an existing recording.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the recording to be deleted. Note: the id may also be appended to the URL (.../id/xxx) instead of in the request body.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of the deleted recording.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>   \n</table>","urlObject":{"path":["api","2","{{user_name}}","recording","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"b5e929ed-b4d9-3961-e1bf-fe2c0aa49f88","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:16:22 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"250","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>58</id><message>Recording was deleted</message></xml>\n"}],"_postman_id":"be67b9d9-df94-6be3-0e74-d36376452c31"},{"name":"/user_recording/id/[int]","id":"86125363-fb36-44e8-8b0f-ef9465f71525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_recording/id/1","description":"<p>Get recording associated with sub user account (available with version 5.7).</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>id (int)</td>\n    <td>The id of the recording.</td>\n  </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the recording.</td>\n  </tr>\n  <tr>\n    <td>session_id (int)</td>\n    <td>The id of the session in which this recording was made.</td>\n  </tr>\n  <tr>\n    <td>title (str)</td>\n    <td>The name or title of this recording.</td>\n  </tr>\n  <tr>\n    <td>description (str)</td>\n    <td>Description of the recording.</td>\n  </tr>\n  <tr>\n    <td>duration (int)</td>\n    <td>Length of recording, in milliseconds.</td>\n  </tr>\n  <tr>\n    <td>download_link (str)</td>\n    <td>Flash: URL to zip file. HTML5: URL to mp4 file.</td>\n  </tr>\n  <tr>\n    <td>creation_date (datetime)</td>\n    <td>Datetime stamp when the recording was made.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","user_recording","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"0be63a15-ee20-4da5-8264-1c48f3fb1683","name":"404 Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording/id/[int]"},"status":"Not Found","code":404,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 31 May 2017 07:42:29 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><error>Not found</error></xml>\n"},{"id":"ea3b9300-e0bf-4782-815d-eb89f40b36b4","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:22:24 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <session_id>2</session_id>\n    <title>Recording Title</title>\n    <description>More info about my recording</description>\n    <duration>180004</duration>\n    <download_link>http://domain.com/storage/recordings/download/1-80fab40837f57e1269554927ac3ac92d.zip</download_link>    \n    <creation_date>2017-03-24 08:06:58</creation_date>\n</xml>"}],"_postman_id":"86125363-fb36-44e8-8b0f-ef9465f71525"},{"name":"/user_recordings/user_id/[int]","id":"af70e526-68ff-4d02-8e76-273feae819ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_recordings/count/1/user_id/123","description":"<p>Get recordings list associated with sub account (child account). (available with version 5.7).</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>user_id (int)</td>\n        <td>ID of child user.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>session (int)</td>\n        <td>Pass a session id to limit results to recordings made in that session only. Otherwise recordings made across all sessions are returned.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>order (str)</td>\n        <td>Return results in ascending or descending order of recording ID (Depricated in 5.5). Default is asc.<br /> Accepted values: asc, desc\n        </td>\n    </tr>\n  <tr>\n    <td> </td>\n    <td>order_field (str)</td>\n    <td>Return results in order of this field (Available in 5.5). Default is id. \nAccepted values: id, title, description, duration, creation_date.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>order_dir (str)</td>\n    <td>Return results in ascending or descending order (Available in 5.5). Default is desc. \nAccepted values: asc, desc.</td>\n  </tr>     \n</table>\n<h3>Return Arguments</h3>\nSee <i>GET /recording/id/[int]</i>","urlObject":{"path":["api","2","{{user_name}}","user_recordings","count","1","user_id","123"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"099aaa67-0c6d-41aa-a231-f5b60e83ddcb","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/recordings/count/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:23:51 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <session_id>2</session_id>\n        <title>Recording Title</title>\n        <description>More info about my recording</description>\n        <duration>180004</duration>        \n        <download_link>http://domain.com/storage/recordings/download/1-80fab40837f57e1269554927ac3ac92d.zip</download_link>\n        <creation_date>2017-03-24 08:06:58</creation_date>\n    </item>\n</xml>"}],"_postman_id":"af70e526-68ff-4d02-8e76-273feae819ee"},{"name":"/user_recording","id":"27cbc5c6-4bcb-4464-8999-7b14890c5c6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\t\t\t1,\n\t\"title\":\t\t\"My recording\",\n\t\"description\":\t\"More info about my recording\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_recording","description":"<p>Edit an existing recording related to sub user account (available with version 5.7).</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the recording.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>title (str)</td>\n        <td>The title of the recording.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>description (str)</td>\n        <td>The description of the recording.</td>\n    </tr>   \n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the edited recording.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","user_recording"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"dab4cc5c-e485-4be9-8a5d-33ec0d2c4659","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json","enabled":true,"description":"The mime type of this content"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\t\t\t28,\n\t\"title\":\t\t\"My recording\",\n\t\"description\":\t\"More info about my recording\", \n\t\"password\":\t\t\"some-password\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:12:37 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>28</id><message>Recording updated</message></xml>\n"}],"_postman_id":"27cbc5c6-4bcb-4464-8999-7b14890c5c6b"},{"name":"/user_recording/id/[int]","id":"75d9810f-f1e6-49ce-8d13-2c4df8ce85b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_recording/id/1","description":"<p>Delete an existing recording related to sub user account (available with version 5.7).</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the recording to be deleted. Note: the id may also be appended to the URL (.../id/xxx) instead of in the request body.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of the deleted recording.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>   \n</table>","urlObject":{"path":["api","2","{{user_name}}","user_recording","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"59ce0a6f-9a5a-4847-a5d9-bf847ff05dea","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/recording/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:16:22 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>58</id><message>Recording was deleted</message></xml>\n"}],"_postman_id":"75d9810f-f1e6-49ce-8d13-2c4df8ce85b6"}],"id":"30a2ea7a-6e7a-6f94-a8eb-8314ad484683","_postman_id":"30a2ea7a-6e7a-6f94-a8eb-8314ad484683","description":""},{"name":"Medialibrary","item":[{"name":"/files","id":"745da3c9-27f5-4bc2-9830-e8c66f026e15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/files","description":"<p>Get all medialibrary items and directories associated with this user account (available with version 5.23.0).</p>\n","urlObject":{"path":["api","2","{{user_name}}","files"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"745da3c9-27f5-4bc2-9830-e8c66f026e15"},{"name":"/directory/id/[int]","id":"54e1f752-7dac-4463-bcb8-d733eb222f0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/directory/id/1","description":"<p>Get directory details by id (available with version 5.23.0).</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the specific directory.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","directory","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"9a132113-db8d-4f97-b8f8-72ce2e9786c0","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/directory/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:23:51 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n<files>\n<item>\n<file_id>1</file_id>\n<file_name>some-file.pdf</file_name>\n<file_url>https://www.digitalsamba.com/storage/medialibrary/20190621/ba4305c9b5c9ee475393892a5091687d.pdf</file_url>\n<file_size>227</file_size>\n<ext>pdf</ext>\n<is_url>0</is_url>\n<dir_id>2</dir_id>\n<status>8</status>\n<pages>14</pages>\n<converted_url>https://www.digitalsamba.com/storage/medialibrary/20190621/ba4305c9b5c9ee475393892a5091687d_pdf</converted_url>\n</item>\n</files>\n</xml>"}],"_postman_id":"54e1f752-7dac-4463-bcb8-d733eb222f0e"},{"name":"/file/id/[int]","id":"f9c01cd0-8397-4317-b23e-844a82609c30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/file/id/1","description":"<p>Get medialibrary item details by id (available with version 5.23.0).</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the specific medialibrary item.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","file","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"9b4ce90c-a02d-4db3-87b7-582c9fbcfa24","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/file/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:23:51 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<xml>\n<file_id>1</file_id>\n<file_name>file.jpg</file_name>\n<file_url>\nhttps://www.digitalsamba.com/storage/medialibrary/20200306/525a7dab7dab3a617be98346eead4234.jpg\n</file_url>\n<file_size>777</file_size>\n<ext>jpg</ext>\n<is_url>0</is_url>\n<dir_id>2</dir_id>\n<status>3</status>\n<pages/>\n<converted_url/>\n</xml>"}],"_postman_id":"f9c01cd0-8397-4317-b23e-844a82609c30"},{"name":"/share","id":"20bbfaba-8655-46b7-a8e0-806442e58ce6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"file_id\":\t\t\t1,\n\t\"session_id\":\t\t2\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/share ","description":"<p>Share medialibrary item or directory (available with version 5.23.0).</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>file_id (int)</td>\n        <td>The id of the sharing medialibrary item (required when share medialibrary items).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>dir_id (int)</td>\n        <td>The id of the sharing directory (required when share directores).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_id (int)</td>\n        <td>The id of the session.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>file_id (int)</td>\n    <td>The id of the shared medialibrary item.</td>\n  </tr>\n  <tr>\n    <td>dir_id (int)</td>\n    <td>The id of the shared directory.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","share "],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"b9bb588e-d14c-4c75-be85-1ec2d2101192","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json","enabled":true,"description":"The mime type of this content"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"file_id\":\t\t\t1,\n\t\"session_id\":\t\t2\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/share "},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:12:37 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>1</id><message>File has been shared</message></xml>\n"}],"_postman_id":"20bbfaba-8655-46b7-a8e0-806442e58ce6"},{"name":"/unshare","id":"d2420203-3da3-4501-bb88-250e2d730aca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"file_id\":\t\t\t1,\n\t\"session_id\":\t\t2\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/unshare","description":"<p>Unshare file or directory.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>file_id (int)</td>\n        <td>The id of the shared medialibrary item (required when share medialibrary items).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>dir_id (int)</td>\n        <td>The id of the shared directory (required when share directores).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_id (int)</td>\n        <td>The id of the session.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>file_id (int)</td>\n    <td>The id of the shared medialibrary item.</td>\n  </tr>\n  <tr>\n    <td>dir_id (int)</td>\n    <td>The id of the shared directory.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","unshare"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"7c42aac5-ad45-45dd-ab7c-c32500a8bc93","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json","enabled":true,"description":"The mime type of this content"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"file_id\":\t\t\t1,\n\t\"session_id\":\t\t2\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/unshare"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 10:12:37 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><file_id>1</file_id><message>File has been unshared</message></xml>\n"}],"_postman_id":"d2420203-3da3-4501-bb88-250e2d730aca"},{"name":"/online_video","id":"25b3a18d-11fd-4dc0-a090-6527ebd7a0a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"url\": \"https://youtu.be/xxxxxx\",\n\t\"name\": \"My youtube video\",\n    \"dir_id\": 1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/online_video","description":"<p>Add online video to content library  (available with version 5.41.0).</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>url (str)</td>\n        <td>URL to youtu.be or vimeo.con video.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>name (str)</td>\n        <td>Video title what is displayed in content library.</td>\n    </tr>\n    <tr>\n        <td>Optional</td>\n        <td>dir_id (int)</td>\n        <td>The id of the video directory.</td>\n    </tr>\n    <tr>\n        <td>Optional</td>\n        <td>user_id (int)</td>\n        <td>The id of video owner.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>file_id (int)</td>\n    <td>The id of the medialibrary item.</td>\n  </tr>\n  <tr>\n    <td>dir_id (int)</td>\n    <td>The id of the medialibrary directory.</td>\n  </tr>\n  <tr>\n    <td>file_url (str)</td>\n    <td>Video URL.</td>\n  </tr>\n  <tr>\n    <td>file_name (str)</td>\n    <td>Video title.</td>\n  </tr>\n  <tr>\n    <td>type (str)</td>\n    <td>Video type (youtube or vimeo).</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","online_video"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"164cb170-3d2b-4f0d-a448-46ca0fc1c908","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"url\": \"https://youtu.be/xxxxxx\",\n\t\"name\": \"My youtube video\",\n    \"dir_id\": 1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/online_video"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Tue, 24 May 2022 09:48:45 GMT"},{"key":"Server","value":"Apache/2.4.51 (Win64) PHP/7.2.34 mod_fcgid/2.3.10-dev"},{"key":"X-Powered-By","value":"PHP/7.2.34"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"217"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/xml"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <file_id>2180</file_id>\n    <file_name>My youtube video</file_name>\n    <file_url>https://youtu.be/xxxxxx</file_url>\n    <type>youtube</type>\n    <is_url>1</is_url>\n    <dir_id>47627</dir_id>\n</xml>"}],"_postman_id":"25b3a18d-11fd-4dc0-a090-6527ebd7a0a2"}],"id":"8e9df6b0-f2bf-432f-b45f-826406cdbcec","_postman_id":"8e9df6b0-f2bf-432f-b45f-826406cdbcec","description":""},{"name":"Server Settings","item":[{"name":"/settings","id":"7d249fc1-72b1-90c3-ed05-fd57c6c7e302","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/settings","description":"<p>Get server settings. Requires admin access rights. Available in v4.4.3</p>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>allow_user_registration (bool)</td>\n    <td>Enable/disable the free user registration</td>\n  </tr>\n  <tr>\n    <td>user_registration_link (str)</td>\n    <td>Link to the free user registration</td>\n  </tr>\n  <tr>\n    <td>ldap_enabled (bool)</td>\n    <td>Enable/disable LDAP connection (Deprecated in v5.1.5).</td>\n  </tr>\n  <tr>\n    <td>allow_modify_branding (bool)</td>\n    <td>Allow account holders modify branding</td>\n  </tr>\n  <tr>\n    <td>maintenance_alert (bool)</td>\n    <td>Enable/disable the maintenance alert</td>\n  </tr>\n  <tr>\n    <td>maintenance_message (str)</td>\n    <td>Maintenance alert content</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","settings"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"0508afb8-40a7-bfaf-05e4-ce98d28776d9","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/settings"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Sat, 08 Jul 2017 07:01:30 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""},{"name":"p3p","key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\"","description":""}],"cookie":[],"responseTime":"109","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <allow_user_registration>1</allow_user_registration>\n    <user_registration_link>http://www.test.com</user_registration_link>\n    <ldap_enabled>1</ldap_enabled>\n    <allow_modify_branding>1</allow_modify_branding>\n    <maintenance_alert>1</maintenance_alert>\n    <maintenance_message>We will be performing routine maintenance on 2017-06-07 at 11:10 AM CET.</maintenance_message>\n</xml>"}],"_postman_id":"7d249fc1-72b1-90c3-ed05-fd57c6c7e302"},{"name":"/settings","id":"111e6664-8e9a-1756-2b9f-b69edea2facf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"allow_user_registration\":\"1\",\n  \"user_registration_link\":\"http://www.test.com\",\n  \"ldap_enabled\":\"1\",\n  \"maintenance_alert \":\"1\",\n  \"maintenance_message \":\"Some message\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/settings","description":"<p>Set server settings. Requires admin access rights. Available in v4.4.3</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>allow_user_registration (bool)</td>\n    <td>Enable/disable the free user registration</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>user_registration_link (str)</td>\n    <td>Link to the free user registration</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>ldap_enabled (bool)</td>\n    <td>Enable/disable LDAP connection (Deprecated in v5.1.5)</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>allow_modify_branding (bool)</td>\n    <td>Allow account holders modify branding</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>maintenance_alert (bool)</td>\n    <td>Enable/disable the maintenance alert</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>maintenance_message (str)</td>\n    <td>Maintenance alert content</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","settings"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"4935e8db-bdd7-8aa2-03a0-0cbeb5cf2bd0","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"","value":"","warning":""}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"allow_user_registration\":\"1\",\n  \"user_registration_link\":\"http://www.test.com\",\n  \"ldap_enabled\":\"1\",\n  \"maintenance_alert \":\"1\",\n  \"maintenance_message \":\"Some message\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/settings"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Sat, 08 Jul 2017 07:01:53 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""},{"name":"p3p","key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\"","description":""}],"cookie":[],"responseTime":"214","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <message>Settings updated</message>\n</xml>"}],"_postman_id":"111e6664-8e9a-1756-2b9f-b69edea2facf"}],"id":"679dd270-1ea9-4066-ea73-37b2738697ca","description":"<p>Server Settings (available with v 4.4.3).</p>\n<p><b>Admin prmissions required.</b></p>","_postman_id":"679dd270-1ea9-4066-ea73-37b2738697ca"},{"name":"Service Plans","item":[{"name":"/service_plan/id/[int]","id":"b37d60e3-6726-b8f2-3714-a57b545333eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1","description":"<p>Get service plan by given ID#</p>\n<h3>Arguments</h3>\n\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>id (int)</td>\n    <td>ID# of the service plan to be returned.</td>\n  </tr>\n</table>\n\n<h3>Return Arguments</h3>\n\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The ID# of service plan.</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Custom name of service plan.</td>\n  </tr>\n  <tr>\n    <td>description (str)</td>\n    <td>Brief description of service plan.</td>\n  </tr>\n  <tr>\n    <td>user_limit (int)</td>\n    <td>The simultaneous user connection limit across all sessions in this account.</td>\n  </tr>\n  <tr>\n    <td>session_user_limit (int)</td>\n    <td>The simultaneous user connection limit of any particular session in this account.</td>\n  </tr>\n  <tr>\n    <td>recording_limit (int)</td>\n    <td>The limit on number of recordings this account may store.</td>\n  </tr>\n  <tr>\n    <td>filesize_limit (int)</td>\n    <td>The limit on total filesize (in KB) of all files in this account's Media Library.</td>\n  </tr>\n  <tr>\n    <td>broadcasters_limit (int)</td>\n    <td>Number of users in any session of this account who may broadcast at the same time.</td>\n  </tr>\n  <tr>        \n    <td>simultaneous_speakers_limit (int)</td>\n    <td>Number of speakers in any session of this account who may join at the same time (available with v 5.11.0).</td>\n  </tr>  \n  <tr>\n    <td>modify_branding_enabled (bool)</td>\n    <td>Allow account holders to modify branding.</td>\n  </tr>\n  <tr>\n    <td>modify_colors_enabled (bool)</td>\n    <td>Allow account holders to modify theme colors. Available when new flat-ui theme is enabled (available with v 4.4.5).</td>\n  </tr>\n  <tr>\n    <td>advanced_sessions_enabled (bool)</td>\n    <td>Enable advanced scheduling features.</td>\n  </tr>\n  <tr>\n    <td>mobile_access_enabled (bool)</td>\n    <td>Enable access from mobile applications.</td>\n  </tr>\n  <tr>\n    <td>api_enabled (bool)</td>\n    <td>Enable access for API.</td>\n  </tr>\n  <tr>\n    <td>session_registration_enabled (bool)</td>\n    <td>Allow account holders to enable registration and create an event page (Applies to HTML5 only, available with v 5.9.0).</td>\n  </tr>  \n  <tr>\n    <td>available_roles (array)</td>\n    <td>Available roles. Possible values:\n- 1: Speakers\n- 2: Audience\n- 3: Custom role\n (available with v 5.25.0).</td>\n  </tr>\n  <tr>\n    <td>custom_role_name (string)</td>\n    <td>Name of the custom role\n (available with v 5.25.0).</td>\n  </tr>  \n  <tr>\n    <td>modify_permissions_enabled (bool)</td>\n    <td>Allow account holders to modify session permissions (available with v 4.4.4).</td>\n  </tr>\n  <tr>\n    <td>webrtc_debug_enabled (bool)</td>\n    <td>Enable frontend console logs in this account for debugging (available with v 5.7.0).</td>\n  </tr>\n  <tr>\n    <td>password_protect_fast_session (bool)</td>\n    <td>Password protect MeetNow meetings (available with v 5.1.5).</td>\n  </tr>\n  <tr>\n    <td>video_fit_to_screen (int)</td>\n    <td>Default video display settings (available with v 5.6).\nValues: \n- 0: Display video in original aspect ratio\n- 1: Fit video to fill screen\n    </td>\n  </tr>\n    <tr>\n        <td>chat_emoji_enabled (bool)</td>\n        <td>Enable chat emojis. (available with v 5.34.0)</td>\n    </tr>\n    <tr>\n        <td>chat_emoji_reactions_enabled (bool)</td>\n        <td>Enable chat emoji reactions. (available with v 5.34.0)</td>\n    </tr>\n    <tr>\n        <td>child_friendly_emoji_enabled (bool)</td>\n        <td>Use child friendly emoji set in the chat panel. (available with v 5.34.0)</td>\n    </tr>  \n    <tr>\n       <td>e2ee_support_enabled (bool)</td>\n       <td>Enable/disable E2EE support (available with v 5.38.0).</td>\n    </tr>\n  <tr>\n    <td>menu_buttons (array)</td>\n    <td>Menu Buttons Available in Session.</td>\n  </tr>\n  <tr>\n    <td>components (array)</td>\n    <td>Components Available in Session (available with v 4.4.4).</td>\n  </tr>\n  <tr>\n    <td>permissions (array)</td>\n    <td>Permissions Available in Session (available with v 4.4.4).</td>\n  </tr>\n  <tr>\n    <td>voip_session_audio (string)</td>\n    <td>Default Session Audio. Allowed values: phone, voip. (available with v 4.3.2).</td>\n  </tr>\n  <tr>\n    <td>voip_available_session_audio (array)</td>\n    <td>Available session audio options (available with v 5.0.5). Values: \n-phone (Using external phone audio, users will be required to dial-in via the telephone)\n-hybrid (Users will see a pop-up screen where they are given the choice to listen via their speakers or to dial-in via the telephone)\n-voip (Using flash-based internal audio).</td>\n  </tr>\n    <tr>\n       <td>meeting_duration_limit (int)</td>\n       <td>Meeting duration limit in minutes. Users will be shown a warning 2 minutes before the meeting duration is reached and the session is ended (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td>meeting_duration_limit_enabled (bool)</td>\n       <td>Enabled/disabled meeting duration limit (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td>meeting_duration_limit_redirect (string)</td>\n       <td>When the duration is reached, redirect users to this URL (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td>unlimited_1_to_1_meetings (bool)</td>\n       <td>Enabled/disabled unlimited 1 to 1 meetings (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td>allow_max_one_content_opened (bool)</td>\n       <td>Allow maximum one content opened. Thumbnail and Tiled modes will allow opening maximum one piece of content in the Stage. Fullscreen mode will not display content thumbnails to quickly access the previously open content. (available with v 5.30.0).</td>\n    </tr> \n    <tr>\n       <td>enable_bitrate_limit (bool)</td>\n       <td>Enable Total Room Publisher Bitrate Limit (TRPBL) (available with v 5.7).</td>\n    </tr>    \n    <tr>\n       <td>min_bitrate_cap (int)</td>\n       <td>HD OFF max bitrate. The max bitrate of the broadcaster's video (in kbit, eg 128), when the HD toggle is in the left OFF position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td>min_bitrate_cap (int)</td>\n       <td>HD ON max bitrate. The max bitrate of the broadcaster's video (in kbit, eg 512), when the HD toggle is in the right ON position. (available with v 5.7).</td>\n    </tr>   \n    <tr>\n       <td>max_resolution (int)</td>\n       <td>Max resolution. The max resolution a broadcaster's video may reach (vertical pixel count, eg 720). Actual resolution will depend on available bandwidth, CPU, number of broadcasters and TRPBL. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td>min_bitrate_cap_screen_share (int)</td>\n       <td>Screen share HD OFF max bitrate. The max bitrate of the broadcaster's screen share (in kbit, eg 256), when the HD toggle is in the left OFF position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td>max_bitrate_cap_screen_share (int)</td>\n       <td>Screen share HD ON max bitrate. The max bitrate of the broadcaster's screen share (in kbit, eg 1024), when the HD toggle is in the right ON position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td>max_resolution_screen_share (int)</td>\n       <td>Screen share Max resolution. The max resolution a broadcaster's screen share may reach (vertical pixel count, eg 1080). Actual resolution will depend on available bandwidth, CPU, number of broadcasters and TRPBL. (available with v 5.7).</td>\n    </tr>    \n</table>","urlObject":{"path":["api","2","{{user_name}}","service_plan","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"751494ea-621e-86a7-08f9-649be1feef22","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy","enabled":true}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:20:57 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"217","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <name>Parent Service Plan Template</name>\n    <description/>\n    <user_limit>1000</user_limit>\n    <session_user_limit/>\n    <recording_limit/>\n    <filesize_limit/>\n    <broadcasters_limit/>\n    <modify_branding_enabled>1</modify_branding_enabled>\n    <advanced_sessions_enabled>1</advanced_sessions_enabled>\n    <modify_permissions_enabled>0</modify_permissions_enabled>\n    <modify_colors_enabled>1</modify_colors_enabled>    \n    <mobile_access_enabled>1</mobile_access_enabled>    \n    <api_enabled/>\n    <voip_session_audio>voip</voip_session_audio>\n    <voip_available_session_audio>\n        <item>hybrid</item>\n        <item>voip</item>\n        <item>phone</item>\n    </voip_available_session_audio>\n    <menu_buttons>\n        <options>1</options>\n        <camera>1</camera>\n        <microphone>1</microphone>\n        <medialibrary>1</medialibrary>\n        <inviteparticipants>1</inviteparticipants>\n        <screensharing>1</screensharing>\n        <recording>1</recording>\n        <notifications>1</notifications>\n        <lobby>1</lobby>\n        <breakoutrooms>1</breakoutrooms>\n    </menu_buttons>\n    <components>\n        <chat>1</chat>\n        <notes>1</notes>\n        <poll>1</poll>\n        <qa>1</qa>\n        <caption_stream>0</caption_stream>\n    </components>\n    <permissions>\n        <allow_change_layout>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_change_layout>\n        <allow_invite_users>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_invite_users>\n        <allow_end_session>\n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_end_session>\n        <allow_edit_notes>        \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_notes>\n        <allow_manage_roles>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_manage_roles>\n        <allow_recording>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_recording>\n        <allow_copy_embed_code>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_copy_embed_code>\n        <allow_edit_poll>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_poll>\n        <allow_all_chat>\n            <moderator>1</moderator>\n            <participant>1</participant>\n        </allow_all_chat>\n        <allow_private_chat>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_private_chat>\n        <allow_public_moderators_chat>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_public_moderators_chat>\n        <allow_clear_chat>\n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_clear_chat>\n        <allow_free_publish>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_free_publish>\n        <allow_stop_broadcasts>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_stop_broadcasts>\n        <allow_content_sharing>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_content_sharing>\n        <allow_content_control>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_content_control>\n        <allow_local_screen_share>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_local_screen_share>\n        <allow_activate_whiteboard>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_activate_whiteboard>\n        <allow_edit_whiteboard>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_whiteboard>\n        <allow_close_tab>            \n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_close_tab>\n        <enable_media_library>\n            <moderator>1</moderator>\n            <participant>1</participant>\n        </enable_media_library>\n    </permissions>\n</xml>"},{"id":"a9c14dfa-2f40-060b-c243-91ef21f3272f","name":"404 Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy","enabled":true}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1111"},"status":"Not Found","code":404,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:20:39 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"220","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><error>Not found</error></xml>\n"}],"_postman_id":"b37d60e3-6726-b8f2-3714-a57b545333eb"},{"name":"/service_plans","id":"ed2becb3-591c-bc7b-87c0-56c39ad1ec2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plans","description":"<p>Get service plans.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>order (str)</td>\n        <td>Return results in ascending or descending order of recording ID (Depricated in 5.5). Default is asc.<br /> Accepted values: asc, desc\n        </td>\n    </tr>\n  <tr>\n    <td> </td>\n    <td>order_field (str)</td>\n    <td>Return results in order of this field (Available in 5.5). Default is id. \nAccepted values: id, name, description.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>order_dir (str)</td>\n    <td>Return results in ascending or descending order (Available in 5.5). Default is desc. \nAccepted values: asc, desc.</td>\n  </tr>    \n</table>\n<h3>Return Arguments</h3>\nSee <i>GET /service_plan/id/[int]</i>","urlObject":{"path":["api","2","{{user_name}}","service_plans"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"13c6849d-bd73-b7db-9951-a71babacad7f","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plans/count/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:41:19 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"259","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>589</id>\n        <name>test2</name>\n        <description/>\n        <user_limit>2</user_limit>\n        <session_user_limit>2</session_user_limit>\n        <recording_limit>2</recording_limit>\n        <filesize_limit>10000</filesize_limit>\n        <broadcasters_limit>1</broadcasters_limit>\n        <modify_branding_enabled/>\n        <advanced_sessions_enabled/>\n        <modify_permissions_enabled/>\n        <modify_colors_enabled/>\n        <mobile_access_enabled/>\n        <api_enabled/>\n        <voip_session_audio/>\n        <voip_available_session_audio>\n            <item>0</item>\n        </voip_available_session_audio>\n        <menu_buttons>\n            <options>0</options>\n            <camera>0</camera>\n            <microphone>0</microphone>\n            <medialibrary>0</medialibrary>\n            <inviteparticipants>0</inviteparticipants>\n            <screensharing>0</screensharing>\n            <recording>0</recording>\n            <notifications>0</notifications>\n            <lobby>0</lobby>\n            <breakoutrooms>0</breakoutrooms>\n        </menu_buttons>\n        <components>\n            <chat>0</chat>\n            <notes>0</notes>\n            <poll>0</poll>\n            <qa>0</qa>\n            <caption_stream>0</caption_stream>\n        </components>\n        <permissions>\n            <allow_change_layout>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_change_layout>\n            <allow_invite_users>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_invite_users>\n            <allow_end_session>\n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_end_session>\n            <allow_edit_notes>        \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_notes>\n            <allow_manage_roles>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_manage_roles>\n            <allow_recording>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_recording>\n            <allow_copy_embed_code>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_copy_embed_code>\n            <allow_edit_poll>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_poll>\n            <allow_all_chat>\n                <moderator>1</moderator>\n                <participant>1</participant>\n            </allow_all_chat>\n            <allow_private_chat>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_private_chat>\n            <allow_public_moderators_chat>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_public_moderators_chat>\n            <allow_clear_chat>\n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_clear_chat>\n            <allow_free_publish>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_free_publish>\n            <allow_stop_broadcasts>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_stop_broadcasts>\n            <allow_content_sharing>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_content_sharing>\n            <allow_content_control>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_content_control>\n            <allow_local_screen_share>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_local_screen_share>\n            <allow_activate_whiteboard>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_activate_whiteboard>\n            <allow_edit_whiteboard>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_whiteboard>\n            <allow_close_tab>            \n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_close_tab>\n            <enable_media_library>\n                <moderator>1</moderator>\n                <participant>1</participant>\n            </enable_media_library>\n        </permissions>\n    </item>\n</xml>"}],"_postman_id":"ed2becb3-591c-bc7b-87c0-56c39ad1ec2c"},{"name":"/service_plan","id":"99096f53-1dec-cd04-3436-bc962db5549e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"name\":\"Some Name\",\n  \"description\":\"Some Description\",\n  \"user_limit\":\"100\",\n  \"session_user_limit\":\"50\",\n  \"recording_limit\":\"50\",\n  \"filesize_limit\":\"500000\",\n  \"broadcasters_limit\":\"10\",\n  \"modify_branding_enabled\":\"1\",\n  \"advanced_sessions_enabled\":\"1\",\n  \"mobile_access_enabled\": \"1\", \n  \"api_enabled\": \"1\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan","description":"<p>Add new service plan</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>name (str)</td>\n        <td>The name of service plan.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>description (str)</td>\n        <td>The brief description for this service plan.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>user_limit (int)</td>\n        <td>The simultaneous user connection limit across all sessions in this account.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_user_limit (int)</td>\n        <td>The simultaneous user connection limit of any particular session in this account.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>recording_limit (int)</td>\n        <td>The limit on number of recordings this account may store.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>filesize_limit (int)</td>\n        <td>The limit on total filesize (in KB) of all files in this account's Media Library.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>broadcasters_limit (int)</td>\n        <td>Number of users in any session of this account who may broadcast at the same time.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>simultaneous_speakers_limit (int)</td>\n        <td>Number of speakers in any session of this account who may join at the same time (available with v 5.11.0).</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>modify_branding_enabled (bool)</td>\n        <td>Allow account holders to modify branding.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>modify_colors_enabled (bool)</td>\n        <td>Allow account holders to modify theme colors. Available when new flat-ui theme is enabled (available with v 4.4.5).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>advanced_sessions_enabled (bool)</td>\n        <td>Enable advanced scheduling features.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>mobile_access_enabled (bool)</td>\n        <td>Enable access from mobile applications.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>api_enabled (bool)</td>\n        <td>Enable access for API.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_registration_enabled (bool)</td>\n        <td>Allow account holders to enable registration and create an event page (Applies to HTML5 only, available with v 5.9.0).</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>modify_permissions_enabled (bool)</td>\n        <td>Allow account holders to modify session permissions (available with v 4.4.4)</td>\n    </tr>\n    <tr>\n        <td> </td>    \n        <td>webrtc_debug_enabled (bool)</td>\n        <td>Enable frontend console logs in this account for debugging (available with v 5.7.0).</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>password_protect_fast_session (bool)</td>\n        <td>Password protect MeetNow meetings (available with v 5.1.5).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>video_fit_to_screen (int)</td>\n       <td>Default video display settings (available with v 5.6).\n       Values:\n       - <b>0</b> - Display video in original aspect ratio\n       - <b>1</b> - Fit video to fill screen\n       </td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>meeting_duration_limit (int)</td>\n       <td>Set meeting duration limit in minutes. Users will be shown a warning 2 minutes before the meeting duration is reached and the session is ended  (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>meeting_duration_limit_enabled (bool)</td>\n       <td>Enable/disable meeting duration limit (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>meeting_duration_limit_redirect (string)</td>\n       <td>Choose whether to redirect users to a custom url or to the URLs they have defined on their branding screens. Set <b>branding_url</b> to use URLs from branding settings (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>unlimited_1_to_1_meetings (bool)</td>\n       <td>Enable/disable unlimited 1 to 1 meetings. Don't apply a meeting duration when 2 people are in a session. The time limitation will start when a third person enters or a recording is started. (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>allow_max_one_content_opened (bool)</td>\n       <td>Allow maximum one content opened. Thumbnail and Tiled modes will allow opening maximum one piece of content in the Stage. Fullscreen mode will not display content thumbnails to quickly access the previously open content. (available with v 5.30.0).</td>\n    </tr> \n  <tr>\n    <td> </td>\n    <td>available_roles (array)</td>\n    <td>Available roles. Possible values:\n- <b>1</b> - Speakers\n- <b>2</b> - Audience\n- <b>3</b> - Custom role\n (available with v 5.25.0).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>custom_role_name (string)</td>\n    <td>Name of the custom role\n (available with v 5.25.0).</td>\n  </tr>\n    <tr>\n        <td> </td>\n        <td>chat_emoji_enabled (bool)</td>\n        <td>Enable chat emojis. (available with v 5.34.0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>chat_emoji_reactions_enabled (bool)</td>\n        <td>Enable chat emoji reactions. (available with v 5.34.0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>child_friendly_emoji_enabled (bool)</td>\n        <td>Use child friendly emoji set in the chat panel. (available with v 5.34.0)</td>\n    </tr>  \n    <tr>\n        <td> </td>\n        <td>menu_buttons (array)</td>\n        <td>Menu Buttons Available in Session.\n      Set one of allowed values to TRUE to show menu button, or to FALSE to hide that one.\n      Leave this option EMPTY to use default menu settings.\n      Allowed values:\n      - <b>screensharingitem</b> (bool) - Show/Hide “Screen Sharing” item\n      - <b>inviteparticipantsitem</b> (bool) - Show/Hide “Invite Participants” item\n      - <b>medialibrary</b> (bool) - Show/Hide “Media Library” \n      - <b>camera</b> (bool) - Show/Hide “Camera” item\n      - <b>options</b> (bool) - Show/Hide “Options” item\n      - <b>recording</b> (bool) - Show/Hide “Recording” item\n      - <b>notifications</b> (bool) - Show/Hide “Notifications” item\n      - <b>microphone</b> (bool) - Show/Hide  “Microphone” item\n      - <b>endsession</b> - (bool) - Show/Hide \"End Session\" item (available with v 5.33.0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>components (array)</td>\n        <td>Components Available in Session (available with v 4.4.4). Set one of allowed values to TRUE to show menu button, or to FALSE to hide that one.\nAllowed values:\n - <b>chat</b> (bool) - Show/Hide “Chat” component\n - <b>notes</b> (bool) - Show/Hide “Notes” component\n - <b>poll</b> (bool) - Show/Hide  “Poll” component\n - <b>qa</b> (bool) - Show/Hide  “Q &amp; A” component\n - <b>caption_stream</b> (bool) - Show/Hide “Caption Stream” component (available with v 5.0.4 when caption stream feature is enabled on the server level)\n- <b>live_streaming</b> (bool) - Show/Hide \"Live Streaming\" component\n- <b>forced_layouts</b> (bool) - Show/Hide \"Forced layouts\" component\n- <b>whiteboard</b> (bool) - Show/Hide \"Whiteboard\" component (available with v 5.33.0)\n</td>\n    </tr>\n    <tr>\n       <td> </td>    \n       <td>e2ee_support_enabled (bool)</td>\n       <td>Enable/disable E2EE support (available with v 5.38.0).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>permissions (array)</td>\n        <td>\nPermissions Available in Session (available with v 4.4.4). Use following format to set permissions:<pre>\n{\"allow_invite_users\": {\n    \"moderator\": \"1\",\n    \"participant\": \"0\"\n},\n\"allow_all_chat\": {\n    \"moderator\": \"1\",\n    \"participant\": \"1\"\n}}\n</pre>Check “Session in-room permissions” table to see all possible permissions and default settings.\n    </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>voip_session_audio (string)</td>\n        <td>Default Session Audio. Allowed values: phone, voip, hybrid. (available with v 4.3.2)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>voip_available_session_audio (array)</td>\n        <td>Available session audio options (available with v 5.0.5). Values: \n- <b>phone</b> (Using external phone audio, users will be required to dial-in via the telephone)\n- <b>hybrid</b> (Users will see a pop-up screen where they are given the choice to listen via their speakers or to dial-in via the telephone)\n- <b>voip</b> (Using flash-based internal audio)</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>enable_bitrate_limit (bool)</td>\n       <td>Enable Total Room Publisher Bitrate Limit (TRPBL) (available with v 5.7).</td>\n    </tr>    \n    <tr>\n       <td> </td>\n       <td>min_bitrate_cap (int)</td>\n       <td>HD OFF max bitrate. The max bitrate of the broadcaster's video (in kbit, eg 128), when the HD toggle is in the left OFF position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>min_bitrate_cap (int)</td>\n       <td>HD ON max bitrate. The max bitrate of the broadcaster's video (in kbit, eg 512), when the HD toggle is in the right ON position. (available with v 5.7).</td>\n    </tr>   \n    <tr>\n       <td> </td>\n       <td>max_resolution (int)</td>\n       <td>Max resolution. The max resolution a broadcaster's video may reach (vertical pixel count, eg 720). Actual resolution will depend on available bandwidth, CPU, number of broadcasters and TRPBL. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>min_bitrate_cap_screen_share (int)</td>\n       <td>Screen share HD OFF max bitrate. The max bitrate of the broadcaster's screen share (in kbit, eg 256), when the HD toggle is in the left OFF position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>max_bitrate_cap_screen_share (int)</td>\n       <td>Screen share HD ON max bitrate. The max bitrate of the broadcaster's screen share (in kbit, eg 1024), when the HD toggle is in the right ON position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>max_resolution_screen_share (int)</td>\n       <td>Screen share Max resolution. The max resolution a broadcaster's screen share may reach (vertical pixel count, eg 1080). Actual resolution will depend on available bandwidth, CPU, number of broadcasters and TRPBL. (available with v 5.7).</td>\n    </tr>    \n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the added entity.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","service_plan"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"946052b1-2b3b-b2e0-6a9d-7f1608a4c454","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:48:24 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"282","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>830</id><message>Service plan added</message></xml>\n"}],"_postman_id":"99096f53-1dec-cd04-3436-bc962db5549e"},{"name":"/service_plan","id":"31463b86-a958-85bd-72e2-a9cf799f0e8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n    \"id\": 830,\n  \"name\":\"Some Name\",\n  \"description\":\"Some Description\",\n  \"user_limit\":\"100\",\n  \"session_user_limit\":\"50\",\n  \"recording_limit\":\"50\",\n  \"filesize_limit\":\"500000\",\n  \"broadcasters_limit\":\"10\",\n  \"modify_branding_enabled\":\"1\",\n  \"advanced_sessions_enabled\":\"1\",\n  \"mobile_access_enabled\": \"1\", \n  \"api_enabled\": \"1\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan","description":"<p>Update service plan settings</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the service plan to be edited.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>name (str)</td>\n        <td>The name of service plan.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>description (str)</td>\n        <td>The brief description for this service plan.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>user_limit (int)</td>\n        <td>The simultaneous user connection limit across all sessions in this account.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_user_limit (int)</td>\n        <td>The simultaneous user connection limit of any particular session in this account.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>recording_limit (int)</td>\n        <td>The limit on number of recordings this account may store.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>filesize_limit (int)</td>\n        <td>The limit on total filesize (in KB) of all files in this account's Media Library.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>broadcasters_limit (int)</td>\n        <td>Number of users in any session of this account who may broadcast at the same time.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>modify_branding_enabled (bool)</td>\n        <td>Allow account holders to modify branding.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>modify_colors_enabled (bool)</td>\n        <td>Allow account holders to modify theme colors. Available when new flat-ui theme is enabled (available with v 4.4.5).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>advanced_sessions_enabled (bool)</td>\n        <td>Enable advanced scheduling features.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>mobile_access_enabled (bool)</td>\n        <td>Enable access from mobile applications.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>api_enabled (bool)</td>\n        <td>Enable access for API.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_registration_enabled (bool)</td>\n        <td>Allow account holders to enable registration and create an event page (Available with v 5.9.0).</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>modify_permissions_enabled (bool)</td>\n        <td>Allow account holders to modify session permissions (available with v 4.4.4)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>chat_emoji_enabled (bool)</td>\n        <td>Enable chat emojis. (available with v 5.34.0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>chat_emoji_reactions_enabled (bool)</td>\n        <td>Enable chat emoji reactions. (available with v 5.34.0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>child_friendly_emoji_enabled (bool)</td>\n        <td>Use child friendly emoji set in the chat panel. (available with v 5.34.0)</td>\n    </tr> \n  <tr>\n    <td> </td>\n    <td>available_roles (array)</td>\n    <td>Available roles. Possible values:\n- <b>1</b> - Speakers\n- <b>2</b> - Audience\n- <b>3</b> - Custom role\n (available with v 5.25.0).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>custom_role_name (string)</td>\n    <td>Name of the custom role\n (available with v 5.25.0).</td>\n  </tr>\n    <tr>\n        <td> </td>\n        <td>menu_buttons (array)</td>\n        <td>Menu Buttons Available in Session.\n      Set one of allowed values to TRUE to show menu button, or to FALSE to hide that one.\n      Leave this option EMPTY to use default menu settings.\n      Allowed values:\n      - <b>screensharingitem</b> (bool) - Show/Hide “Screen Sharing” item\n      - <b>inviteparticipantsitem</b> (bool) - Show/Hide “Invite Participants” item\n      - <b>medialibrary</b> (bool) - Show/Hide “Media Library” \n      - <b>camera</b> (bool) - Show/Hide “Camera” item\n      - <b>options</b> (bool) - Show/Hide “Options” item\n      - <b>recording</b> (bool) - Show/Hide “Recording” item\n      - <b>notifications</b> (bool) - Show/Hide “Notifications” item\n      - <b>microphone</b> (bool) - Show/Hide  “Microphone” item\n      - <b>endsession</b> (bool) - Show/Hide \"End Session\" item(available with v 5.33.0)\n</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>components (array)</td>\n        <td>Components Available in Session (available with v 4.4.4). Set one of allowed values to TRUE to show menu button, or to FALSE to hide that one.\nAllowed values:\n - <b>chat</b> (bool) - Show/Hide “Chat” component\n - <b>notes</b> (bool) - Show/Hide “Notes” component\n - <b>poll</b> (bool) - Show/Hide  “Poll” component\n - <b>qa</b> (bool) - Show/Hide  “Q &amp; A” component\n - <b>caption_stream</b> (bool) - Show/Hide “Caption Stream” component (available with v 5.0.4 when caption stream feature is enabled on the server level)\n- <b>live_streaming</b> (bool) - Show/Hide \"Live Streaming\" component\n- <b>forced_layouts</b> (bool) - Show/Hide \"Forced layouts\" component\n- <b>whiteboard</b> (bool) - Show/Hide \"Whiteboard\" component (available with v 5.33.0)\n</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>permissions (array)</td>\n        <td>\nPermissions Available in Session (available with v 4.4.4). Use following format to set permissions:<pre>\n{\"allow_invite_users\": {\n    \"moderator\": \"1\",\n    \"participant\": \"0\"\n},\n\"allow_private_chat\": {\n    \"moderator\": \"1\",\n    \"participant\": \"1\"\n}}\n</pre>Check “Session in-room permissions” table to see all possible permissions and default settings.\n    </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>voip_session_audio (string)</td>\n        <td>Default Session Audio. Allowed values: phone, voip, hybrid. (available with v 4.3.2)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>voip_available_session_audio (array)</td>\n        <td>Available session audio options (available with v 5.0.5). Values: \n- <b>phone</b> (Using external phone audio, users will be required to dial-in via the telephone)\n- <b>hybrid</b> (Users will see a pop-up screen where they are given the choice to listen via their speakers or to dial-in via the telephone)\n- <b>voip</b> (Using flash-based internal audio)</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the updated entity.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","service_plan"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"498c57e4-56f0-eff1-a9df-193ded840fc7","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 12:01:37 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"322","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>830</id><message>Service plan updated</message></xml>\n"}],"_postman_id":"31463b86-a958-85bd-72e2-a9cf799f0e8e"},{"name":"/service_plan/id/[int]","id":"f0ab56eb-9327-153d-9c9a-578d4ed931a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1","description":"<p>Delete service plan.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the service plan to be deleted. Note: the id may also be appended to the URL (.../id/xxx) instead of in the request body.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of the deleted entity.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","service_plan","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"82057aa6-0de1-23b8-a8d3-2d7f39f34681","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:13:39 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"312","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>583</id><message>Service plan was deleted</message></xml>\n"}],"_postman_id":"f0ab56eb-9327-153d-9c9a-578d4ed931a9"}],"id":"87188d21-cd1d-85a7-f732-b15ae719b9fa","description":"<p>Service Plans (available with v 4.3.1).</p>\n<p><b>Admin permissions required.</b></p>","_postman_id":"87188d21-cd1d-85a7-f732-b15ae719b9fa"},{"name":"Polls","item":[{"name":"/poll/id/[int]","id":"98fa8a7e-3e81-4520-8564-abfb35f8dd73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/poll/id/1","description":"<p>Get poll by given ID#</p>\n<h3>Arguments</h3>\n\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>id (int)</td>\n    <td>ID# of the poll to be returned.</td>\n  </tr>\n</table>\n\n<h3>Return Arguments</h3>\n\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Poll ID#.</td>\n  </tr>\n  <tr>\n    <td>description (str)</td>\n    <td>Poll description.</td>\n  </tr>\n  <tr>\n    <td>session_id (int)</td>\n    <td>Poll session ID#.</td>\n  </tr>\n  <tr>\n    <td>group_id (int)</td>\n    <td>Poll group ID#.</td>\n  </tr>\n  <tr>\n    <td>is_multiple (int)</td>\n    <td>Allow to select multiple options.</td>\n  </tr>\n  <tr>\n    <td>is_anonymous_vote (int)</td>\n    <td>Allow anonymous vote.</td>\n  </tr>\n  <tr>\n    <td>share_results (int)</td>\n    <td>Allow to share poll results.</td>\n  </tr>\n  <tr>        \n    <td>position (int)</td>\n    <td>Poll position.</td>\n  </tr>  \n  <tr>\n    <td>options (bool)</td>\n    <td>Array of poll options.</td>\n  </tr>\n  <tr>\n    <td>status (str)</td>\n    <td>Poll status.</td>\n  </tr>\n  <tr>\n    <td>created_at (datetime)</td>\n    <td>Poll creation date.</td>     \n</tr></table>","urlObject":{"path":["api","2","{{user_name}}","poll","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"ae5aafb9-53ab-4da2-af6f-a23c6e4b0af3","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy","enabled":true}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:20:57 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"217","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <name>Parent Service Plan Template</name>\n    <description/>\n    <user_limit>1000</user_limit>\n    <session_user_limit/>\n    <recording_limit/>\n    <filesize_limit/>\n    <broadcasters_limit/>\n    <modify_branding_enabled>1</modify_branding_enabled>\n    <advanced_sessions_enabled>1</advanced_sessions_enabled>\n    <modify_permissions_enabled>0</modify_permissions_enabled>\n    <modify_colors_enabled>1</modify_colors_enabled>    \n    <mobile_access_enabled>1</mobile_access_enabled>    \n    <api_enabled/>\n    <voip_session_audio>voip</voip_session_audio>\n    <voip_available_session_audio>\n        <item>hybrid</item>\n        <item>voip</item>\n        <item>phone</item>\n    </voip_available_session_audio>\n    <menu_buttons>\n        <options>1</options>\n        <camera>1</camera>\n        <microphone>1</microphone>\n        <medialibrary>1</medialibrary>\n        <inviteparticipants>1</inviteparticipants>\n        <screensharing>1</screensharing>\n        <recording>1</recording>\n        <notifications>1</notifications>\n        <lobby>1</lobby>\n        <breakoutrooms>1</breakoutrooms>\n    </menu_buttons>\n    <components>\n        <chat>1</chat>\n        <notes>1</notes>\n        <poll>1</poll>\n        <qa>1</qa>\n        <caption_stream>0</caption_stream>\n    </components>\n    <permissions>\n        <allow_change_layout>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_change_layout>\n        <allow_invite_users>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_invite_users>\n        <allow_end_session>\n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_end_session>\n        <allow_edit_notes>        \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_notes>\n        <allow_manage_roles>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_manage_roles>\n        <allow_recording>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_recording>\n        <allow_copy_embed_code>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_copy_embed_code>\n        <allow_edit_poll>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_poll>\n        <allow_all_chat>\n            <moderator>1</moderator>\n            <participant>1</participant>\n        </allow_all_chat>\n        <allow_private_chat>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_private_chat>\n        <allow_public_moderators_chat>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_public_moderators_chat>\n        <allow_clear_chat>\n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_clear_chat>\n        <allow_free_publish>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_free_publish>\n        <allow_stop_broadcasts>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_stop_broadcasts>\n        <allow_content_sharing>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_content_sharing>\n        <allow_content_control>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_content_control>\n        <allow_local_screen_share>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_local_screen_share>\n        <allow_activate_whiteboard>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_activate_whiteboard>\n        <allow_edit_whiteboard>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_whiteboard>\n        <allow_close_tab>            \n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_close_tab>\n        <enable_media_library>\n            <moderator>1</moderator>\n            <participant>1</participant>\n        </enable_media_library>\n    </permissions>\n</xml>"},{"id":"d767e114-d84e-49f5-a407-ee075d244c81","name":"404 Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy","enabled":true}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1111"},"status":"Not Found","code":404,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:20:39 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"220","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><error>Not found</error></xml>\n"}],"_postman_id":"98fa8a7e-3e81-4520-8564-abfb35f8dd73"},{"name":"/polls","id":"d81bc77e-40ab-49ab-9a36-e6fb027084c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/polls","description":"<p>Get polls.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>order (str)</td>\n        <td>Return results in ascending or descending order of recording ID (Depricated in 5.5). Default is asc.<br /> Accepted values: asc, desc\n        </td>\n    </tr>\n  <tr>\n    <td> </td>\n    <td>order_field (str)</td>\n    <td>Return results in order of this field (Available in 5.5). Default is id. \nAccepted values: id, name, description.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>order_dir (str)</td>\n    <td>Return results in ascending or descending order (Available in 5.5). Default is desc. \nAccepted values: asc, desc.</td>\n  </tr>    \n</table>\n\n<h3>Return Arguments</h3>\nSee <i>GET /poll/id/[int]</i>","urlObject":{"path":["api","2","{{user_name}}","polls"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"550e0187-886f-4970-8376-ce8330b2eb31","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plans/count/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:41:19 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"259","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>589</id>\n        <name>test2</name>\n        <description/>\n        <user_limit>2</user_limit>\n        <session_user_limit>2</session_user_limit>\n        <recording_limit>2</recording_limit>\n        <filesize_limit>10000</filesize_limit>\n        <broadcasters_limit>1</broadcasters_limit>\n        <modify_branding_enabled/>\n        <advanced_sessions_enabled/>\n        <modify_permissions_enabled/>\n        <modify_colors_enabled/>\n        <mobile_access_enabled/>\n        <api_enabled/>\n        <voip_session_audio/>\n        <voip_available_session_audio>\n            <item>0</item>\n        </voip_available_session_audio>\n        <menu_buttons>\n            <options>0</options>\n            <camera>0</camera>\n            <microphone>0</microphone>\n            <medialibrary>0</medialibrary>\n            <inviteparticipants>0</inviteparticipants>\n            <screensharing>0</screensharing>\n            <recording>0</recording>\n            <notifications>0</notifications>\n            <lobby>0</lobby>\n            <breakoutrooms>0</breakoutrooms>\n        </menu_buttons>\n        <components>\n            <chat>0</chat>\n            <notes>0</notes>\n            <poll>0</poll>\n            <qa>0</qa>\n            <caption_stream>0</caption_stream>\n        </components>\n        <permissions>\n            <allow_change_layout>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_change_layout>\n            <allow_invite_users>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_invite_users>\n            <allow_end_session>\n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_end_session>\n            <allow_edit_notes>        \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_notes>\n            <allow_manage_roles>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_manage_roles>\n            <allow_recording>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_recording>\n            <allow_copy_embed_code>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_copy_embed_code>\n            <allow_edit_poll>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_poll>\n            <allow_all_chat>\n                <moderator>1</moderator>\n                <participant>1</participant>\n            </allow_all_chat>\n            <allow_private_chat>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_private_chat>\n            <allow_public_moderators_chat>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_public_moderators_chat>\n            <allow_clear_chat>\n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_clear_chat>\n            <allow_free_publish>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_free_publish>\n            <allow_stop_broadcasts>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_stop_broadcasts>\n            <allow_content_sharing>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_content_sharing>\n            <allow_content_control>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_content_control>\n            <allow_local_screen_share>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_local_screen_share>\n            <allow_activate_whiteboard>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_activate_whiteboard>\n            <allow_edit_whiteboard>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_whiteboard>\n            <allow_close_tab>            \n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_close_tab>\n            <enable_media_library>\n                <moderator>1</moderator>\n                <participant>1</participant>\n            </enable_media_library>\n        </permissions>\n    </item>\n</xml>"}],"_postman_id":"d81bc77e-40ab-49ab-9a36-e6fb027084c7"},{"name":"/poll","id":"e646b34e-e5c3-486d-9917-0ec5c359bf60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\":\"28203\",\n  \"description\":\"My Poll\",\n  \"group\":\"My Group\",\n  \"is_multiple\":\"1\",\n  \"share_results\":\"1\",\n  \"status\":\"new\",\n  \"position\":\"10\",\n  \"options\": [\n      {\n          \"description\": \"Option 1\"\n      },\n      {\n          \"description\": \"Option 2\"\n      }\n  ]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/poll","description":"<p>Add new poll</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>description (str)</td>\n        <td>Poll description.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_id(int)</td>\n        <td>Session ID#.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>group_id (str)</td>\n        <td>Group ID #.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>group (str)</td>\n        <td>Group name (New group with this name will be created).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>is_multiple (int)</td>\n        <td>Allow to select multiple options (1/0).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>share_results (int)</td>\n        <td>Allow to share poll results (1/0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>is_anonymous_vote (int)</td>\n        <td>Allow anonymous vote (1/0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>position (int)</td>\n        <td>Poll position.</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>options(bool)</td>\n        <td>Array of poll options.\n[{\n   \"description\": \"Option #1\",\n   \"color\": \"#C0C0C0\"\n}]\n</td>\n    </tr>     \n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the added entity.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","poll"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"e3af1742-27df-4532-ac84-f4cb3812cbb0","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:48:24 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"282","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>830</id><message>Service plan added</message></xml>\n"}],"_postman_id":"e646b34e-e5c3-486d-9917-0ec5c359bf60"},{"name":"/poll","id":"aaa44403-0bdf-4921-97b2-d97531833464","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"id\":\"420\",\n  \"status\":\"closed\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/poll","description":"<p>Update poll settings</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the poll to be edited.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>description (str)</td>\n        <td>Poll description.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_id(int)</td>\n        <td>Session ID#.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>group_id (str)</td>\n        <td>Group ID #.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>group (str)</td>\n        <td>Group name (New group with this name will be created).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>is_multiple (int)</td>\n        <td>Allow to select multiple options (1/0).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>share_results (int)</td>\n        <td>Allow to share poll results (1/0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>is_anonymous_vote (int)</td>\n        <td>Allow anonymous vote (1/0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>status (str)</td>\n        <td>Poll status (new, open or closed).</td>\n    </tr> \n    <tr>\n        <td> </td>\n        <td>position (int)</td>\n        <td>Poll position.</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>options(bool)</td>\n        <td>Array of poll options.\n<pre>\n[{\n   \"id\": 1, \n   \"description\": \"Option #1\",\n   \"color\": \"#C0C0C0\"\n}]\n</pre>\nNOTE: leave option id empty if you want to create new option.\n</td>\n    </tr> \n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the updated entity.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","poll"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"86920d85-8045-4000-82e3-5f748f2cbff4","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 12:01:37 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"322","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>830</id><message>Service plan updated</message></xml>\n"}],"_postman_id":"aaa44403-0bdf-4921-97b2-d97531833464"},{"name":"/poll/id/[int]","id":"a434ea38-5b92-43a2-8529-24206b41a77f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/poll/id/1","description":"<p>Delete poll.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the poll to be deleted. Note: the id may also be appended to the URL (.../id/xxx) instead of in the request body.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of the deleted entity.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","poll","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"6571ec3d-ed3f-4198-870f-dff156e1f9fc","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:13:39 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"312","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>583</id><message>Service plan was deleted</message></xml>\n"}],"_postman_id":"a434ea38-5b92-43a2-8529-24206b41a77f"},{"name":"/poll_group/id/[int]","id":"353c0ae6-5514-42b5-8cbb-865317f4c3af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/poll_group/id/74","description":"<p>Get poll group by given ID#</p>\n<h3>Arguments</h3>\n\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>id (int)</td>\n    <td>ID# of the group to be returned.</td>\n  </tr>\n</table>\n\n<h3>Return Arguments</h3>\n\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The ID# of poll group.</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Group name.</td>\n  </tr>\n  <tr>\n    <td>status(str)</td>\n    <td>Group status.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","poll_group","id","74"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"7cef5086-3357-450c-bea4-3aeb791bd634","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy","enabled":true}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:20:57 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"217","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <name>Parent Service Plan Template</name>\n    <description/>\n    <user_limit>1000</user_limit>\n    <session_user_limit/>\n    <recording_limit/>\n    <filesize_limit/>\n    <broadcasters_limit/>\n    <modify_branding_enabled>1</modify_branding_enabled>\n    <advanced_sessions_enabled>1</advanced_sessions_enabled>\n    <modify_permissions_enabled>0</modify_permissions_enabled>\n    <modify_colors_enabled>1</modify_colors_enabled>    \n    <mobile_access_enabled>1</mobile_access_enabled>    \n    <api_enabled/>\n    <voip_session_audio>voip</voip_session_audio>\n    <voip_available_session_audio>\n        <item>hybrid</item>\n        <item>voip</item>\n        <item>phone</item>\n    </voip_available_session_audio>\n    <menu_buttons>\n        <options>1</options>\n        <camera>1</camera>\n        <microphone>1</microphone>\n        <medialibrary>1</medialibrary>\n        <inviteparticipants>1</inviteparticipants>\n        <screensharing>1</screensharing>\n        <recording>1</recording>\n        <notifications>1</notifications>\n        <lobby>1</lobby>\n        <breakoutrooms>1</breakoutrooms>\n    </menu_buttons>\n    <components>\n        <chat>1</chat>\n        <notes>1</notes>\n        <poll>1</poll>\n        <qa>1</qa>\n        <caption_stream>0</caption_stream>\n    </components>\n    <permissions>\n        <allow_change_layout>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_change_layout>\n        <allow_invite_users>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_invite_users>\n        <allow_end_session>\n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_end_session>\n        <allow_edit_notes>        \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_notes>\n        <allow_manage_roles>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_manage_roles>\n        <allow_recording>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_recording>\n        <allow_copy_embed_code>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_copy_embed_code>\n        <allow_edit_poll>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_poll>\n        <allow_all_chat>\n            <moderator>1</moderator>\n            <participant>1</participant>\n        </allow_all_chat>\n        <allow_private_chat>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_private_chat>\n        <allow_public_moderators_chat>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_public_moderators_chat>\n        <allow_clear_chat>\n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_clear_chat>\n        <allow_free_publish>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_free_publish>\n        <allow_stop_broadcasts>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_stop_broadcasts>\n        <allow_content_sharing>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_content_sharing>\n        <allow_content_control>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_content_control>\n        <allow_local_screen_share>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_local_screen_share>\n        <allow_activate_whiteboard>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_activate_whiteboard>\n        <allow_edit_whiteboard>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_whiteboard>\n        <allow_close_tab>            \n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_close_tab>\n        <enable_media_library>\n            <moderator>1</moderator>\n            <participant>1</participant>\n        </enable_media_library>\n    </permissions>\n</xml>"},{"id":"ee61d58d-17cf-452a-a59c-4fe00da4e479","name":"404 Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy","enabled":true}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1111"},"status":"Not Found","code":404,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:20:39 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"220","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><error>Not found</error></xml>\n"}],"_postman_id":"353c0ae6-5514-42b5-8cbb-865317f4c3af"},{"name":"/poll_groups","id":"20fbadb7-4545-4ffe-9472-87a92637cd16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/poll_groups","description":"<p>Get poll groups.</p>\n<h3>Return Arguments</h3>\nSee <i>GET /poll_group/id/[int]</i>","urlObject":{"path":["api","2","{{user_name}}","poll_groups"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"2d7d6dae-c6c2-4b09-ab56-4aba532b1f6a","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plans/count/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:41:19 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"259","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>589</id>\n        <name>test2</name>\n        <description/>\n        <user_limit>2</user_limit>\n        <session_user_limit>2</session_user_limit>\n        <recording_limit>2</recording_limit>\n        <filesize_limit>10000</filesize_limit>\n        <broadcasters_limit>1</broadcasters_limit>\n        <modify_branding_enabled/>\n        <advanced_sessions_enabled/>\n        <modify_permissions_enabled/>\n        <modify_colors_enabled/>\n        <mobile_access_enabled/>\n        <api_enabled/>\n        <voip_session_audio/>\n        <voip_available_session_audio>\n            <item>0</item>\n        </voip_available_session_audio>\n        <menu_buttons>\n            <options>0</options>\n            <camera>0</camera>\n            <microphone>0</microphone>\n            <medialibrary>0</medialibrary>\n            <inviteparticipants>0</inviteparticipants>\n            <screensharing>0</screensharing>\n            <recording>0</recording>\n            <notifications>0</notifications>\n            <lobby>0</lobby>\n            <breakoutrooms>0</breakoutrooms>\n        </menu_buttons>\n        <components>\n            <chat>0</chat>\n            <notes>0</notes>\n            <poll>0</poll>\n            <qa>0</qa>\n            <caption_stream>0</caption_stream>\n        </components>\n        <permissions>\n            <allow_change_layout>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_change_layout>\n            <allow_invite_users>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_invite_users>\n            <allow_end_session>\n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_end_session>\n            <allow_edit_notes>        \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_notes>\n            <allow_manage_roles>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_manage_roles>\n            <allow_recording>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_recording>\n            <allow_copy_embed_code>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_copy_embed_code>\n            <allow_edit_poll>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_poll>\n            <allow_all_chat>\n                <moderator>1</moderator>\n                <participant>1</participant>\n            </allow_all_chat>\n            <allow_private_chat>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_private_chat>\n            <allow_public_moderators_chat>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_public_moderators_chat>\n            <allow_clear_chat>\n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_clear_chat>\n            <allow_free_publish>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_free_publish>\n            <allow_stop_broadcasts>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_stop_broadcasts>\n            <allow_content_sharing>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_content_sharing>\n            <allow_content_control>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_content_control>\n            <allow_local_screen_share>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_local_screen_share>\n            <allow_activate_whiteboard>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_activate_whiteboard>\n            <allow_edit_whiteboard>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_whiteboard>\n            <allow_close_tab>            \n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_close_tab>\n            <enable_media_library>\n                <moderator>1</moderator>\n                <participant>1</participant>\n            </enable_media_library>\n        </permissions>\n    </item>\n</xml>"}],"_postman_id":"20fbadb7-4545-4ffe-9472-87a92637cd16"},{"name":"/poll_group","id":"412a02dd-3145-47e3-8ff3-a34b7952e1d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n    \"name\": \"My Group\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/poll_group","description":"<p>Add new poll group</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>name (str)</td>\n        <td>The name of group.</td>\n    </tr>  \n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the added entity.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","poll_group"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"c5dca04a-0d2d-4665-a906-81003c1546e4","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:48:24 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"282","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>830</id><message>Service plan added</message></xml>\n"}],"_postman_id":"412a02dd-3145-47e3-8ff3-a34b7952e1d2"},{"name":"/poll_group","id":"e5cf5011-b772-4a40-814f-9f428d1ab404","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n    \"id\": 76,\n    \"name\": \"My Group\",\n    \"status\": \"open\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/poll_group","description":"<p>Update poll group</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the group to be edited.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>name (str)</td>\n        <td>The name of service plan.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>status (str)</td>\n        <td>Group status (new, open or closed).</td>\n    </tr>    \n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the updated entity.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","poll_group"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"d1eaed39-80b1-4465-8e10-0df61def560e","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 12:01:37 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"322","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>830</id><message>Service plan updated</message></xml>\n"}],"_postman_id":"e5cf5011-b772-4a40-814f-9f428d1ab404"},{"name":"/poll_group/id/[int]","id":"4e27d1fd-00b0-4494-80ba-55515cf93590","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/poll_group/id/40","description":"<p>Delete poll group.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the group to be deleted. Note: the id may also be appended to the URL (.../id/xxx) instead of in the request body.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of the deleted entity.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","poll_group","id","40"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"b40f68c6-397f-4489-90d9-904cef55d1ad","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 11:13:39 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"312","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>583</id><message>Service plan was deleted</message></xml>\n"}],"_postman_id":"4e27d1fd-00b0-4494-80ba-55515cf93590"}],"id":"2ae06d9e-b009-4707-9f0f-46a4e196dd66","description":"<p>Poll Groups (available with v 5.38.0).</p>","_postman_id":"2ae06d9e-b009-4707-9f0f-46a4e196dd66"},{"name":"Session invitees","item":[{"name":"/invitees/id/[int]","id":"1c894e78-2905-046c-e131-4bf7adc4a3c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitees/id/1","description":"<p>Get data of people invited to a session. All invitees are grouped into either speakers or audience users, depending on the role given to them when creating the session.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the session for which invitees should be retrieved.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>role (string)</td>\n        <td>Limit the returned invitees to users holding a particular role in the session. \nPossible values: all, speakers, audience and custom (available with version 5.25.0).</td>\n    </tr>   \n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>Account id of the invitee.</td>\n    </tr>\n    <tr>\n        <td>first_name (str)</td>\n        <td>The first name of the invited user.</td>\n    </tr>\n    <tr>\n        <td>last_name (str)</td>\n        <td>The last name of the invited user.</td>\n    </tr>\n    <tr>\n        <td>email (str)</td>\n        <td>The email address of the invited user.</td>\n    </tr>\n    <tr>\n        <td>personal_session_link (string)</td>\n        <td>A custom session link for this particular user. It is different from the session_link in GET sessions in that it does not prompt for a login, and will put the user into the session (with his username) with a single click.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","invitees","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"83fbe8b9-f1fa-7d45-187f-2d5e592cb816","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitees/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:11:02 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"257","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <moderators>\n        <item>\n            <id>1</id>\n            <email>moderator@mail.com</email>\n            <first_name>Moderator</first_name>\n            <last_name>Name</last_name>\n            <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsMQ==</personal_session_link>\n        </item>\n    </moderators>\n    <participants>\n        <item>\n            <id>2</id>\n            <email>participants@mail.com</email>\n            <first_name>Participant</first_name>\n            <last_name>Name</last_name>\n            <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsNDI3</personal_session_link>\n        </item>\n        <item>...</item>\n        <item>...</item>\n    </participants>\n    <observers/>\n</xml>"}],"_postman_id":"1c894e78-2905-046c-e131-4bf7adc4a3c3"},{"name":"/invitees/email/[str]","id":"3cb933c7-845f-46cf-8be3-cf1441afad1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitees/email/my_address@email.com","description":"<p>Get session invitees by email of the invited user (Available in v5.29.0).</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>email (str)</td>\n        <td>The email of the user for which invitees should be retrieved.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>Id of the invited user.</td>\n    </tr>\n    <tr>\n        <td>session_id (int)</td>\n        <td>Id of the session to which the user is invited.</td>\n    </tr>\n    <tr>\n        <td>first_name (str)</td>\n        <td>The first name of the invited user.</td>\n    </tr>\n    <tr>\n        <td>last_name (str)</td>\n        <td>The last name of the invited user.</td>\n    </tr>\n    <tr>\n        <td>email (str)</td>\n        <td>The email address of the invited user.</td>\n    </tr>\n    <tr>\n        <td>personal_session_link (string)</td>\n        <td>A custom session link for this particular user. It is different from the session_link in GET sessions in that it does not prompt for a login, and will put the user into the session (with his username) with a single click.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","invitees","email","my_address@email.com"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"cfc138c9-24fe-4c25-b544-a9cfd558012b","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitees/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:11:02 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <moderators>\n        <item>\n            <id>1</id>\n            <email>moderator@mail.com</email>\n            <first_name>Moderator</first_name>\n            <last_name>Name</last_name>\n            <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsMQ==</personal_session_link>\n        </item>\n    </moderators>\n    <participants>\n        <item>\n            <id>2</id>\n            <email>participants@mail.com</email>\n            <first_name>Participant</first_name>\n            <last_name>Name</last_name>\n            <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsNDI3</personal_session_link>\n        </item>\n        <item>...</item>\n        <item>...</item>\n    </participants>\n    <observers/>\n</xml>"}],"_postman_id":"3cb933c7-845f-46cf-8be3-cf1441afad1d"},{"name":"/invitee/id/[int]/session_id/[int]","id":"3f01dd91-49c5-cd62-7b93-e9129329baea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee/id/1/session_id/1","description":"<p>Get data of single person invited to a session. (available with version 4.2.9)</p>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the user for which invitees should be retrieved.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_id (int)</td>\n        <td>The id of the session for which invitees should be retrieved.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>Account id of the invitee.</td>\n    </tr>\n    <tr>\n        <td>first_name (str)</td>\n        <td>The first name of the invited user.</td>\n    </tr>\n    <tr>\n        <td>last_name (str)</td>\n        <td>The last name of the invited user.</td>\n    </tr>\n    <tr>\n        <td>role (str)</td>\n        <td>Role of invited person. Possible values:        \n 1 =&gt; Speaker\n 2 =&gt; Audience\n</td>\n    </tr>\n    <tr>\n        <td>email (str)</td>\n        <td>The email address of the invited user.</td> \n    </tr>\n    <tr>\n        <td>personal_session_link (string)</td>\n        <td>A custom session link for this particular user. It is different from the session_link in GET sessions in that it does not prompt for a login, and will put the user into the session (with his username) with a single click.</td>\n    </tr>   \n</table>","urlObject":{"path":["api","2","{{user_name}}","invitee","id","1","session_id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"217dd53f-2497-064d-fe42-a5ce019a1d23","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee/id/[int]/session_id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:26:41 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"497","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>427</id>\n    <email>user@mail.com</email>\n    <first_name>User</first_name>\n    <last_name>Name</last_name>\n    <role>2</role>\n    <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsNDI3</personal_session_link>\n</xml>"}],"_postman_id":"3f01dd91-49c5-cd62-7b93-e9129329baea"},{"name":"/invitee","id":"81dbc2c0-9f9e-6d1c-a9eb-a819aa6b9e24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\":1,\n  \"email\":\"robin@arsenal.com\",\n  \"first_name\":\"Robin\", \n  \"last_name\":\"van Persie\",\n  \"send_email_invitation\":false,\n  \"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee","description":"<p>Add an invitee to a session.</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Requred</b></td>\n    <td>session_id (int)</td>\n    <td>ID of the session to which invitee is added.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>email (str)</td>\n    <td>Email address of the invitee.</td>\n  </tr>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>first_name (str)</td>\n    <td>First name of the invitee.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>last_name (str)</td>\n    <td>Last name of the invitee.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>send_email_invitation (bool)</td>\n    <td>Set to false (or 0) to avoid sending a server-generated email invitation to the user. Default is true. Email invitations will be sent as soon as this call is made. If you want to send your own invitation emails, use GET recording_invitees to obtain the personal_link for each user..</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>role (int)</td>\n    <td>Define role of the invitee in the session. Default is 2.\n1 = Speaker, \n2 = Audience.\n3 = Custom role (Available in v5.25.0)\n</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>profile_image_url (str)</td>\n    <td>URL to profile image (Available in v5.33.0)\n</td>\n  </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Account id of the invitee.</td>\n  </tr>\n  <tr>\n    <td>first_name (str)</td>\n    <td>The first name of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>last_name (str)</td>\n    <td>The last name of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>email (str)</td>\n    <td>The email address of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>personal_session_link (string)</td>\n    <td>A custom session link for this particular user. It is different from the session_link in GET sessions in that it does not prompt for a login, and will put the user into the session (with his username) with a single click (Available in v5.1.7).</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","invitee"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"eaaf526a-7b04-e037-0dc3-673ed4121b23","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"email\":\"robin@arsenal.com\",\n\t\"first_name\":\"Robin\", \n\t\"last_name\":\"van Persie\",\n\t\"send_email_invitation\":false,\n\t\"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:49:41 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"606","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitee added</message>\n</xml>"}],"_postman_id":"81dbc2c0-9f9e-6d1c-a9eb-a819aa6b9e24"},{"name":"/invitee","id":"a7c2582e-d087-952c-9a0d-bf74a773af71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\":1,\n  \"user_id\":1,\n  \"send_email_invitation\":false,\n  \"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee","description":"<p>Modify the role of an invitee to a session.</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Requred</b></td>\n    <td>session_id (int)</td>\n    <td>ID of the session to which invitee is added.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>user_id(int)</td>\n    <td>User ID of the invitee. The PUT call returned this.</td>\n  </tr>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>first_name (str)</td>\n    <td>The first name of the invited user (Available in v5.37.0).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>last_name (str)</td>\n    <td>The last name of the invited user (Available in v5.37.0).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>send_email_invitation (bool)</td>\n    <td>Set to false (or 0) to avoid sending a server-generated email invitation to the user. Default is true. Email invitations will be sent as soon as this call is made. If you want to send your own invitation emails, use GET recording_invitees to obtain the personal_link for each user..</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>role (int)</td>\n    <td>Define role of the invitee in the session. Default is 2.\n1 = Speaker, \n2 = Audience,\n3 = Custom role (Available in v5.25.0).\n</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>profile_image_url (str)</td>\n    <td>URL to profile image (Available in v5.33.0)\n</td>\n  </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Account id of the invitee.</td>\n  </tr>\n  <tr>\n    <td>first_name (str)</td>\n    <td>The first name of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>last_name (str)</td>\n    <td>The last name of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>email (str)</td>\n    <td>The email address of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>personal_session_link (string)</td>\n    <td>A custom session link for this particular user. It is different from the session_link in GET sessions in that it does not prompt for a login, and will put the user into the session (with his username) with a single click (Available in v5.1.7).</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","invitee"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"9b90dfe2-66b0-794b-b10a-3c1660f46e7a","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"user_id\":1,\n\t\"send_email_invitation\":false,\n\t\"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:56:16 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"578","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitation was updated</message>\n</xml>"}],"_postman_id":"a7c2582e-d087-952c-9a0d-bf74a773af71"},{"name":"/invitee","id":"0f82adce-5963-832f-0699-16a19fd1c710","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee","description":"<p>Delete an invitee from a session.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Requred</b></td>\n        <td>session_id (int)</td>\n        <td>ID of the session to which invitee is added.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>user_id (int)</td>\n        <td>User ID of the invitee. </td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of deleted invitee.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","invitee"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"9f04c150-4cd9-93b2-ce41-ea54be9b161b","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"user_id\":1\n}\t"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitee deleted</message>\n</xml>"}],"_postman_id":"0f82adce-5963-832f-0699-16a19fd1c710"},{"name":"/invitees","id":"7fd43b7b-ec6f-4dd1-99b9-39774fc72e6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitees/id/1","description":"<p>Delete all invitees from a session (Available in v5.5.0).</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Requred</b></td>\n        <td>id (int)</td>\n        <td>ID of the session to which invitees are added.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>ID of the session.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","invitees","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"ec66cf0f-ab04-4c1b-af86-02128cf9a11a","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":1\n}\t"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitees/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitations were deleted</message>\n</xml>"}],"_postman_id":"7fd43b7b-ec6f-4dd1-99b9-39774fc72e6f"},{"name":"/user_invitees/id/[int]","id":"6f7bc47b-b775-4126-9c90-cb8bd18296aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitees/id/1","description":"<p>Get data of people invited to a session. All invitees are grouped into either moderators, participants or observers, depending on the role given to them when creating the session (Available in v5.4.0).</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the session for which invitees should be retrieved.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>role (string)</td>\n        <td>Limit the returned invitees to users holding a particular role in the session. \nPossible values: all, speakers, audience and custom (Available in v5.25.0).</td>\n    </tr>   \n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>Account id of the invitee.</td>\n    </tr>\n    <tr>\n        <td>first_name (str)</td>\n        <td>The first name of the invited user.</td>\n    </tr>\n    <tr>\n        <td>last_name (str)</td>\n        <td>The last name of the invited user.</td>\n    </tr>\n    <tr>\n        <td>email (str)</td>\n        <td>The email address of the invited user.</td>\n    </tr>\n    <tr>\n        <td>personal_session_link (string)</td>\n        <td>A custom session link for this particular user. It is different from the session_link in GET sessions in that it does not prompt for a login, and will put the user into the session (with his username) with a single click.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","user_invitees","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"f54ac9b6-3338-4d8f-98e9-097e73fcb358","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitees/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:11:02 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <moderators>\n        <item>\n            <id>1</id>\n            <email>moderator@mail.com</email>\n            <first_name>Moderator</first_name>\n            <last_name>Name</last_name>\n            <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsMQ==</personal_session_link>\n        </item>\n    </moderators>\n    <participants>\n        <item>\n            <id>2</id>\n            <email>participants@mail.com</email>\n            <first_name>Participant</first_name>\n            <last_name>Name</last_name>\n            <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsNDI3</personal_session_link>\n        </item>\n        <item>...</item>\n        <item>...</item>\n    </participants>\n    <observers/>\n</xml>"}],"_postman_id":"6f7bc47b-b775-4126-9c90-cb8bd18296aa"},{"name":"/user_invitee/id/[int]/session_id/[int]","id":"fb94ac16-7c42-4257-a2ad-b927bda59fc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitee/id/1/session_id/1","description":"<p>Get data of single person invited to a session  (Available in v5.4.0).</p>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the user for which invitees should be retrieved.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_id (int)</td>\n        <td>The id of the session for which invitees should be retrieved.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>Account id of the invitee.</td>\n    </tr>\n    <tr>\n        <td>first_name (str)</td>\n        <td>The first name of the invited user.</td>\n    </tr>\n    <tr>\n        <td>last_name (str)</td>\n        <td>The last name of the invited user.</td>\n    </tr>\n    <tr>\n        <td>role (str)</td>\n        <td>Role of invited person. Possible values:        \n 1 =&gt; Moderator\n 2 =&gt; Participant\n 3 =&gt; Observer\n</td>\n    </tr>\n    <tr>\n        <td>email (str)</td>\n        <td>The email address of the invited user.</td> \n    </tr>\n    <tr>\n        <td>personal_session_link (string)</td>\n        <td>A custom session link for this particular user. It is different from the session_link in GET sessions in that it does not prompt for a login, and will put the user into the session (with his username) with a single click.</td>\n    </tr>   \n</table>","urlObject":{"path":["api","2","{{user_name}}","user_invitee","id","1","session_id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"8cd05f28-dab5-4bd0-889c-362c62ccd0d8","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitee/id/[int]/session_id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:26:41 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>427</id>\n    <email>user@mail.com</email>\n    <first_name>User</first_name>\n    <last_name>Name</last_name>\n    <role>2</role>\n    <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsNDI3</personal_session_link>\n</xml>"}],"_postman_id":"fb94ac16-7c42-4257-a2ad-b927bda59fc8"},{"name":"/user_invitee","id":"f25c9b37-74c3-4bf0-a67e-9b8a58c59c09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\":1,\n  \"email\":\"robin@arsenal.com\",\n  \"first_name\":\"Robin\", \n  \"last_name\":\"van Persie\",\n  \"send_email_invitation\":false,\n  \"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitee","description":"<p>Add an invitee to a session (Available in v5.4.0).</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Requred</b></td>\n    <td>session_id (int)</td>\n    <td>ID of the session to which invitee is added.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>email (str)</td>\n    <td>Email address of the invitee.</td>\n  </tr>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>first_name (str)</td>\n    <td>First name of the invitee.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>last_name (str)</td>\n    <td>Last name of the invitee.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>send_email_invitation (bool)</td>\n    <td>Set to false (or 0) to avoid sending a server-generated email invitation to the user. Default is true. Email invitations will be sent as soon as this call is made. If you want to send your own invitation emails, use GET recording_invitees to obtain the personal_link for each user..</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>role (int)</td>\n    <td>Define role of the invitee in the session. Default is 2.\n1 = Speaker, \n2 = Audience,\n3 = Custom role (Available in v5.25.0).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>profile_image_url (str)</td>\n    <td>URL to profile image (Available in v5.33.0)\n</td>\n  </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Account id of the invitee.</td>\n  </tr>\n  <tr>\n    <td>first_name (str)</td>\n    <td>The first name of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>last_name (str)</td>\n    <td>The last name of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>email (str)</td>\n    <td>The email address of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>personal_session_link (string)</td>\n    <td>A custom session link for this particular user. It is different from the session_link in GET sessions in that it does not prompt for a login, and will put the user into the session (with his username) with a single click (Available in v5.1.7).</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","user_invitee"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"78dda6ad-f63f-4ffd-88c9-9aeb2d715979","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"email\":\"robin@arsenal.com\",\n\t\"first_name\":\"Robin\", \n\t\"last_name\":\"van Persie\",\n\t\"send_email_invitation\":false,\n\t\"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:49:41 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitee added</message>\n</xml>"}],"_postman_id":"f25c9b37-74c3-4bf0-a67e-9b8a58c59c09"},{"name":"/user_invitee","id":"30701d1e-d8a8-4fe9-8da1-80015744ff04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\":1,\n  \"user_id\":1,\n  \"send_email_invitation\":false,\n  \"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitee","description":"<p>Modify the role of an invitee to a session (Available in v5.4.0).</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Requred</b></td>\n    <td>session_id (int)</td>\n    <td>ID of the session to which invitee is added.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>user_id(int)</td>\n    <td>User ID of the invitee. The PUT call returned this.</td>\n  </tr>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>first_name (str)</td>\n    <td>The first name of the invited user (Available in v5.37.0).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>last_name (str)</td>\n    <td>The last name of the invited user (Available in v5.37.0).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>send_email_invitation (bool)</td>\n    <td>Set to false (or 0) to avoid sending a server-generated email invitation to the user. Default is true. Email invitations will be sent as soon as this call is made. If you want to send your own invitation emails, use GET recording_invitees to obtain the personal_link for each user..</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>role (int)</td>\n    <td>Define role of the invitee in the session. Default is 2.\n1 = Speaker, \n2 = Audience,\n3 = Custom role (Available in v5.25.0).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>profile_image_url (str)</td>\n    <td>URL to profile image (Available in v5.33.0)\n</td>\n  </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Account id of the invitee.</td>\n  </tr>\n  <tr>\n    <td>first_name (str)</td>\n    <td>The first name of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>last_name (str)</td>\n    <td>The last name of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>email (str)</td>\n    <td>The email address of the invited user (Available in v5.1.7).</td>\n  </tr>\n  <tr>\n    <td>personal_session_link (string)</td>\n    <td>A custom session link for this particular user. It is different from the session_link in GET sessions in that it does not prompt for a login, and will put the user into the session (with his username) with a single click (Available in v5.1.7).</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","user_invitee"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"4d24852f-628e-4371-ba27-6749dc931aec","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"user_id\":1,\n\t\"send_email_invitation\":false,\n\t\"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:56:16 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitation was updated</message>\n</xml>"}],"_postman_id":"30701d1e-d8a8-4fe9-8da1-80015744ff04"},{"name":"/user_invitee","id":"9afeabdc-e881-452e-84cd-4f3fc7cfa3f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitee","description":"<p>Delete an invitee from a session related to sub user account (Available in v5.4.0).</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Requred</b></td>\n        <td>session_id (int)</td>\n        <td>ID of the session to which invitee is added.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>user_id (int)</td>\n        <td>User ID of the invitee. </td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of deleted invitee.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","user_invitee"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"47b93dce-ea28-4700-bb3f-75de465984aa","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":1\n}\t"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitees/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitations were deleted</message>\n</xml>"}],"_postman_id":"9afeabdc-e881-452e-84cd-4f3fc7cfa3f6"},{"name":"/user_invitees","id":"05d12482-de58-4778-a616-2c30fb308eaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitees/id/1","description":"<p>Delete all invitees from a session related to sub user account (Available in v5.5.0).</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Requred</b></td>\n        <td>id (int)</td>\n        <td>ID of the session to which invitees are added.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of the session.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","user_invitees","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"15d030b0-9343-45d1-814d-a43ff51f40b1","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"user_id\":1\n}\t"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_invitee"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitee deleted</message>\n</xml>"}],"_postman_id":"05d12482-de58-4778-a616-2c30fb308eaf"}],"id":"c8854107-8d6a-b244-8b5a-51bdfb4ea561","_postman_id":"c8854107-8d6a-b244-8b5a-51bdfb4ea561","description":""},{"name":"Session Breakouts","item":[{"name":"/breakout/id/[int]","id":"03d654c3-1216-4453-8276-4c530e57e543","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/breakout/id/1","description":"<p>Get data of single pre-assigned breakout room. (available with version 5.12.0)</p>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of pre-assigned breakout room.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>ID of pre-assigned breakout room.</td>\n    </tr>\n    <tr>\n        <td>topic (str)</td>\n        <td>Topic of pre-assigned breakout room.</td>\n    </tr>\n    <tr>\n        <td>session_link (str)</td>\n        <td>URL of pre-assigned breakout room.</td>\n    </tr>\n    <tr>\n        <td>invitations (array)</td>\n        <td>Array of invited users\n</td>\n    </tr>\n</table>\n<p>invitations (array):</p>\n<table>\n    <tr>\n        <td>user_id (int)</td>\n        <td>ID of invited user.</td>\n    </tr>\n    <tr>\n        <td>first_name (str)</td>\n        <td>Invited user first name.</td>\n    </tr>\n    <tr>\n        <td>last_name (str)</td>\n        <td>Invited user last name.</td>\n    </tr>\n    <tr>\n        <td>email (str)</td>\n        <td>Invited user email.\n</td>\n    </tr>   <tr>\n        <td>personal_link (array)</td>\n        <td>Personal join link\n</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","breakout","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"0f1d28d5-9118-4b92-98d8-ecf6fc3c4b89","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/breakout/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:26:41 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<xml>\n\t<id>1</id>\n\t<topic>Test breakout</topic>\n\t<session_link>https://www.domain.com/live/admin/dcf0dkjq</session_link>\n\t<invitations>\n\t\t<item>\n\t\t    <user_id>1</user_id>\n\t\t\t<first_name>Fname</first_name>\n\t\t\t<last_name>Lname</last_name>\n\t\t\t<email>user1@email.com</email>\n\t\t\t<personal_link>https://www.domain.com/invite/ZjVjYTFiZmZjMzE5M2FiNyw3NzM0LDEwMDMwMjY=</personal_link>\n\t\t</item>\n\t\t<item>\n\t\t\t<user_id>2</user_id>\n\t\t\t<first_name>Fname</first_name>\n\t\t\t<last_name>Lname</last_name>\n\t\t\t<email>user2@email.com</email>\n\t\t\t<personal_link>https://www.domain.com/invite/ZDdmZDc5MTlhMjcwZWJhMyw3NzM0LDEwMDMwMjc=</personal_link>\n\t\t</item>\n\t</invitations>\n</xml>"}],"_postman_id":"03d654c3-1216-4453-8276-4c530e57e543"},{"name":"/breakouts/session_id/[int]","id":"f3f4b4ff-8874-45bd-94d1-610852af078b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/breakouts/session_id/1","description":"<p>Get data of pre-assigned breakout \n rooms (Available in v5.12.0).</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>session_id (int)</td>\n        <td>The id of the session for which pre-assigned breakout \n rooms should be retrieved.</td>\n    </tr>       \n</table>\n<h3>Return Arguments</h3>\n<p>\nSee GET /breakouts/id/[int]\n</p>","urlObject":{"path":["api","2","{{user_name}}","breakouts","session_id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"6c9ec3be-d97e-4c96-b3e9-42501d5b491e","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/breakouts/session_id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:11:02 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<xml>\n\t<item>\n\t\t<id>1</id>\n\t\t<topic>Test breakout</topic>\n\t\t<session_link>https://www.domain.com/live/admin/dcf0dkjq</session_link>\n\t\t<invitations>\n\t\t\t<item>\n\t\t\t<user_id>1</user_id>\n\t\t\t\t<first_name>Fname</first_name>\n\t\t\t\t<last_name>Lname</last_name>\n\t\t\t\t<email>user1@email.com</email>\n\t\t\t\t<personal_link>https://www.domain.com/invite/ZjVjYTFiZmZjMzE5M2FiNyw3NzM0LDEwMDMwMjY=</personal_link>\n\t\t\t</item>\n\t\t\t<item>\n\t\t\t\t<user_id>2</user_id>\n\t\t\t\t<first_name>Fname</first_name>\n\t\t\t\t<last_name>Lname</last_name>\n\t\t\t\t<email>user2@email.com</email>\n\t\t\t\t<personal_link>https://www.domain.com/invite/ZDdmZDc5MTlhMjcwZWJhMyw3NzM0LDEwMDMwMjc=</personal_link>\n\t\t\t</item>\n\t\t</invitations>\n\t</item>\n</xml>"}],"_postman_id":"f3f4b4ff-8874-45bd-94d1-610852af078b"},{"name":"/breakouts","id":"098940df-a82e-421a-806c-d6876ffc09ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":""},"url":"{{API_EndPoint}}/api/2/{{user_name}}/breakouts","description":"<p>See POST /breakouts</p>\n","urlObject":{"path":["api","2","{{user_name}}","breakouts"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"a70531e7-4e89-4b0a-a19a-ad0bfdc05129","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"email\":\"robin@arsenal.com\",\n\t\"first_name\":\"Robin\", \n\t\"last_name\":\"van Persie\",\n\t\"send_email_invitation\":false,\n\t\"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:49:41 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Breakout sessions were updated</message>\n</xml>"}],"_postman_id":"098940df-a82e-421a-806c-d6876ffc09ff"},{"name":"/breakouts","id":"19ab5a40-921f-48b9-bb60-e9ce5947bbff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n    \"session_id\":7729,\n    \"send_email_invitation\":2,\n    \"breakouts\":[{\n        \"topic\":\"Test breakout 1\",\n        \"invitations\":[\n            {\n                \"first_name\":\"Fname1\",\n                \"last_name\":\"Lname1\",\n                \"email\":\"user1@email.com\"\n            },\n            {\n                \"first_name\":\"Fname2\",\n                \"last_name\":\"Lname2\",\n                \"email\":\"user2@email.com\"\n            }\n        ]\n    },{\n        \"topic\":\"Test breakout 2\",\n        \"invitations\":[\n            {\n                \"first_name\":\"Fname3\",\n                \"last_name\":\"Lname3\",\n                \"email\":\"user3@email.com\"\n            }\n        ]\n    }\n]}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/breakouts","description":"<p>Create pre-assigned breakout rooms.</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Requred</b></td>\n    <td>session_id (int)</td>\n    <td>ID of the session to which breakout rooms are added.</td>\n  </tr>\n  <tr>\n    <td><b>Requred</b></td>\n    <td> \n        breakouts (array)\n    </td>\n    <td>Pre-assigned breakout rooms data. Data example:\n<pre>\n{\n    \"id\": 1,\n    \"topic\":\"Test breakout 1\",\n    \"invitations\":[\n        {\n            \"user_id\": 1,\n            \"first_name\":\"Fname1\",\n            \"last_name\":\"Lname1\",\n            \"email\":\"user1@email.com\"\n        }\n    ]\n}\n</pre>\n</td>\n  </tr>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>send_email_invitation (bool)</td>\n    <td>Set to false (or 0) to avoid sending a server-generated email invitation to the users. Default is 0. \n1 - send invitations to all users.\n2 - send invitations to new added users.\n</td>\n</tr> \n</table>\n\n<p>breakouts (array):</p>\n<table>\n  <tr>\n    <td><b>Requred</b></td>\n    <td>topic (str)</td>\n    <td>Breakout room name.</td>\n  </tr>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>invitations (array)</td>\n    <td>Array of invited users.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>id (int)</td>\n    <td>ID of the breakout session (Required when you want to update already added breakout room).</td>\n  </tr>\n</table>\n\n<p>invitations (array):</p>\n<table>\n  <tr>\n    <td><b>Requred</b></td>\n    <td>first_name (str)</td>\n    <td>First name of invited user.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>last_name (str)</td>\n    <td>Last name of invited user.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>email (str)</td>\n    <td>Email of invited user.</td>\n  </tr>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>user_id (int)</td>\n    <td>ID of previously invited user (Required when you want to update invited user).</td>\n</tr></table>\n<p>Put empty array to clean up previously invited users.</p>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","breakouts"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"0b0b9e54-865d-4727-a68e-366fb48f0004","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n    \"session_id\":1123,\n    \"send_email_invitation\":2,\n    \"breakouts\":[{\n        \"topic\":\"Test breakout 1\",\n        \"invitations\":[\n            {\n                \"first_name\":\"Fname1\",\n                \"last_name\":\"Lname1\",\n                \"email\":\"user1@email.com\"\n            },\n            {\n                \"first_name\":\"Fname2\",\n                \"last_name\":\"Lname2\",\n                \"email\":\"user2@email.com\"\n            }\n        ]\n    },{\n        \"topic\":\"Test breakout 2\",\n        \"invitations\":[\n            {\n                \"first_name\":\"Fname3\",\n                \"last_name\":\"Lname3\",\n                \"email\":\"user3@email.com\"\n            }\n        ]\n    }\n]}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:56:16 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Breakout sessions were updated</message>\n</xml>"}],"_postman_id":"19ab5a40-921f-48b9-bb60-e9ce5947bbff"},{"name":"/breakout","id":"a67ebb3e-89f7-41f6-86f4-8c9ef34cb893","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/breakout/id/1","description":"<p>Delete pre-assigned breakout room by ID (Available in v5.12.0).</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Requred</b></td>\n        <td>id (int)</td>\n        <td>ID of pre-assigned breakout room.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>ID breakout room.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","breakout","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"08be14a6-d535-4abc-99ce-ac8bd48e91a1","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":1\n}\t"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/breakout/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Breakout session was deleted</message>\n</xml>"}],"_postman_id":"a67ebb3e-89f7-41f6-86f4-8c9ef34cb893"},{"name":"/breakouts","id":"c3253f53-ac0f-4563-9e0d-f2d79c76d605","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":""},"url":"{{API_EndPoint}}/api/2/{{user_name}}/breakouts/session_id/7729","description":"<p>Delete all pre-assigned breakout rooms from a session (Available in v5.12.0).</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Requred</b></td>\n        <td>session_id (int)</td>\n        <td>ID of the session to which breakout rooms are added.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>session_id (int)</td>\n        <td>ID of the session.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","breakouts","session_id","7729"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"eba3648e-9a98-4d96-8868-ba8d985f29c9","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1\n}\t"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/breakouts/session_id/1"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Breakout sessions were deleted</message>\n</xml>"}],"_postman_id":"c3253f53-ac0f-4563-9e0d-f2d79c76d605"}],"id":"592f98d1-6c86-4d4a-9164-2195f38eced0","_postman_id":"592f98d1-6c86-4d4a-9164-2195f38eced0","description":""},{"name":"Session recurring","item":[{"name":"/session_recurring/session_id/[int]","id":"dcb58464-2acd-4352-92a3-44d8a5935fd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/session_recurring/session_id/1","description":"<p>Get session recurring settings (Available in v5.1.8).</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>session_id (int)</td>\n    <td>The id of the recurring session (The main session in the series).</td>\n  </tr>\n</table>\n<h3>Return Arguments</h3>\n<div>shedule (array):</div>\n<table>\n  <tr>\n    <td>session_id (int)</td>\n    <td>The id of the recurring session (The main session in the series).</td>\n  </tr>\n  <tr>\n    <td>start_time (str)</td>\n    <td>The start time of the first recurring session (series start time).</td>\n  </tr>\n  <tr>\n    <td>period (str)</td>\n    <td>Recurring period: day, week or month.</td>\n  </tr>\n  <tr>\n    <td>frequency (int)</td>\n    <td>Recurring frequency.</td>\n  </tr>\n  <tr>\n    <td>repeat_on (string)</td>\n    <td>When repeat session in selected period. Days of week for week period, or day of the month for month period.</td>\n  </tr>\n  <tr>\n    <td>end_date (date)</td>\n    <td>The series end date.</td>\n  </tr>\n  <tr>\n    <td>end_occurrences (int)</td>\n    <td>Number of sessions in the series.</td>\n  </tr>  \n</table>\n<div>sessions (array) - session IDs and start dates of all sessions in the series:</div>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the recurring session.</td>\n  </tr>\n  <tr>\n    <td>start_date (date)</td>\n    <td>The start date of the recurring session.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","session_recurring","session_id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"88c78a6d-a23d-4780-96a4-fd115a7a6851","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"email\":\"robin@arsenal.com\",\n\t\"first_name\":\"Robin\", \n\t\"last_name\":\"van Persie\",\n\t\"send_email_invitation\":false,\n\t\"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:49:41 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitee added</message>\n</xml>"}],"_postman_id":"dcb58464-2acd-4352-92a3-44d8a5935fd2"},{"name":"/session_recurring","id":"e59943fd-d4ab-1725-383f-d6810408ca8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\":1,\n  \"email\":\"robin@arsenal.com\",\n  \"first_name\":\"Robin\", \n  \"last_name\":\"van Persie\",\n  \"send_email_invitation\":false,\n  \"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}//session_recurring","description":"<p>Make recurring session series (Available in v5.1.8).</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>session_id (int)</td>\n    <td>The id of the recurring session (The main session in the series).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>period (str)</td>\n    <td>Recurring period: day, week or month.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>frequency (int)</td>\n    <td>Recurring frequency. Repeat every [frequency] period. For example: set 2 to repeat every 2 week, or set 5 to repeat session onse in 5 days.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>end_date (date)</td>\n    <td>The series end date. Should be date up to 6 months into the future.</td>\n  </tr>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>end_occurrences (int)</td>\n    <td>Number of sessions in the series (this argument required when end_date is empty).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>repeat_on (string)</td>\n    <td>\n        Set when repeat session in selected period. Days of week for week period, or day of the month for month period (this argument is accepted for week or month periods only).\n        Weeks: 1 = Mon, 2 = Tue, 3 = Wed, 4 = Thu, 5 = Fri, 6 = Sat, 7 = Sun. You should select one or few week days. \"5\" - repeat session every Friday, \"1,3,5\" - repeat session every Monday, Wednesday and Friday.\n        Months: monthday = Repeat every day of month, weekday = Repeat every week day of the week.\n     </td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>type (string)</td>\n    <td>Possible values:\n        - reuse: re-use same session (default)\n        - duplicate: create new session for each \n        (Available in v5.1.9)\n    </td>\n  </tr>\n</table>\n<h3>Return Arguments</h3>\n<div>sessions (array) - session IDs and start dates of all sessions in the series:</div>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the recurring session.</td>\n  </tr>\n  <tr>\n    <td>start_date (date)</td>\n    <td>The start date of the recurring session.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","","session_recurring"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"f5c54a0c-5044-3896-bd05-3246228146df","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"email\":\"robin@arsenal.com\",\n\t\"first_name\":\"Robin\", \n\t\"last_name\":\"van Persie\",\n\t\"send_email_invitation\":false,\n\t\"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:49:41 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"606","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitee added</message>\n</xml>"}],"_postman_id":"e59943fd-d4ab-1725-383f-d6810408ca8d"},{"name":"/session_recurring","id":"4cd52a1d-69dc-efeb-b6f4-c3858f2215a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\":1,\n  \"user_id\":1,\n  \"send_email_invitation\":false,\n  \"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}//session_recurring","description":"<p>Update recurring session shedule (Available in v5.1.8).</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>session_id (int)</td>\n    <td>The id of the recurring session (The main session in the series).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>period (str)</td>\n    <td>Recurring period: day, week or month.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>frequency (int)</td>\n    <td>Recurring frequency. Repeat every [frequency] period. For example: set 2 to repeat every 2 week, or set 5 to repeat session onse in 5 days.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>end_date (date)</td>\n    <td>The series end date. Should be date up to 6 months into the future.</td>\n  </tr>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>end_occurrences (int)</td>\n    <td>Number of sessions in the series (this argument required when end_date is empty).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>repeat_on (string)</td>\n    <td>\n        Set when repeat session in selected period. Days of week for week period, or day of the month for month period (this argument is accepted  for week or month periods only).\n        Weeks: 1 = Mon, 2 = Tue, 3 = Wed, 4 = Thu, 5 = Fri, 6 = Sat, 7 = Sun. You should select one or few week days. \"5\" - repeat session every Friday, \"1,3,5\" - repeat session every Monday, Wednesday and Friday.\n        Months: monthday = Repeat every day of month, weekday = Repeat every week day of the week.\n     </td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>type (string)</td>\n    <td>Possible values:\n        - reuse: re-use same session (default)\n        - duplicate: create new session for each \n        (Available in v5.1.9)\n    </td>\n  </tr>  \n</table>\n<h3>Return Arguments</h3>\n<div>sessions (array) - session IDs and start dates of all sessions in the series:</div>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the recurring session.</td>\n  </tr>\n  <tr>\n    <td>start_date (date)</td>\n    <td>The start date of the recurring session.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","","session_recurring"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"e94a60ba-a550-e19c-004b-e0e90241531a","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"user_id\":1,\n\t\"send_email_invitation\":false,\n\t\"role\":1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 10:56:16 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"578","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitation was updated</message>\n</xml>"}],"_postman_id":"4cd52a1d-69dc-efeb-b6f4-c3858f2215a0"},{"name":"/session_recurring","id":"49d85650-b098-8db6-914f-1d7692cbfad7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/session_recurring","description":"<p>Delete recurring sessions and convert main session in the series to regular session (Available in v5.1.8).</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Requred</b></td>\n    <td>session_id (int)</td>\n    <td>The id of the recurring session (The main session in the series).</td>\n  </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>session_id (int)</td>\n    <td>The id of the recurring session (The main session in the series).</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","session_recurring"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"2520df72-a8ff-cbe8-85b3-fed19c8ab87e","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"session_id\":1,\n\t\"user_id\":1\n}\t"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Invitee deleted</message>\n</xml>"}],"_postman_id":"49d85650-b098-8db6-914f-1d7692cbfad7"}],"id":"0fdf7cef-835c-c7e8-99bf-19ff9254cfa9","_postman_id":"0fdf7cef-835c-c7e8-99bf-19ff9254cfa9","description":""},{"name":"Sessions","item":[{"name":"/session/id/[int]","id":"200067b1-c5c4-09c3-99e6-717feab6b4f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/session/id/[int]","description":"<p>Return session data by given ID#.</p>\n\n<h3>Arguments</h3>\n\n<table><tbody><tr><td><b>Requred</b></td><td>id (int)</td><td>id of the session to be returned.</td></tr></tbody></table>\n\n<h3>Return Arguments (Regular Session)</h3>\n\n<table><tbody><tr><td>id (int)</td><td>The id of the edited recording.</td></tr><tr><td>topic (str)</td><td>The name or title of this session.</td></tr><tr><td>start_time (datetime)</td><td>The datetime string of when this session will take or has taken place. Will always default to the user’s timezone &amp; DST settings.</td></tr><tr><td>duration (int)</td><td>Duration of the meeting, in minutes (The meeting will not automatically end after the specified duration; this setting fits only scheduling purposes).</td></tr><tr><td>password (str)</td><td>The session’s access password, required to join. None, if empty.</td></tr><tr><td>session_link (str)</td><td>Full link to the session. If friendly_url is NULL, session_key is used.</td></tr><tr><td>custom_data(array)</td><td>An array of objects containing custom fields in the form of custom1, custom2 etc.</td></tr></tbody></table>","urlObject":{"path":["api","2","{{user_name}}","session","id","[int]"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"5fffdf03-12d4-c436-e7fb-085e3d445947","name":"Regular Session","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/session/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 11:59:27 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"278","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>2</id>\n    <topic>Regulart session</topic>\n    <start_time>2017-06-01 12:05:00</start_time>\n    <duration>60</duration>\n    <password/>\n    <session_access_code/>\n    <session_link>http://domain.com/go/admin/ncp2snq</session_link>\n    <advanced_mode>0</advanced_mode>\n</xml>"},{"id":"a0b79b70-a363-8f2d-9dc0-16407aa23c20","name":"Advanced Session","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/session/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 11:54:26 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"322","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>173</id>\n    <session_link>http://domain.com/go/admin/5u3ustj</session_link>\n    <advanced_mode>1</advanced_mode>\n    <session_access_code/>\n    <schedule>\n        <topic>Advanced Session</topic>\n        <start_time>2017-07-29 10:15:00</start_time>\n        <duration>60</duration>\n        <password/>\n        <agenda>Some text</agenda>\n        <description>Some text</description>\n        <display_custom_instructions>0</display_custom_instructions>\n        <custom_instructions/>\n    </schedule>\n    <participants>\n        <invited_participants>\n            <moderators>\n                <item>\n                    <id>1</id>\n                    <email>moderator@mail.com</email>\n                    <first_name>Moderator</first_name>\n                    <last_name>Name</last_name>\n                    <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsNDI3</personal_session_link>\n                </item>\n            </moderators>\n            <participants>\n                <item>\n                    <id>2</id>\n                    <email>participant@mail.com</email>\n                    <first_name>Participant</first_name>\n                    <last_name>Name</last_name>\n                    <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsNDQ1</personal_session_link>\n                </item>\n            </participants>            \n        </invited_participants>\n        <prevent_user_count>0</prevent_user_count>\n    </participants>\n    <access>\n        <private_access>0</private_access>\n        <guests_join_as>2</guests_join_as>\n        <access_enable_breakout_rooms>0</access_enable_breakout_rooms>\n        <access_enable_lobby>0</access_enable_lobby>\n        <access_guest_login_fields>\n            <item>email</item>\n            <item>company</item>\n        </access_guest_login_fields>\n    </access>\n    <audio_video>\n        <av_voip_audio>voip</av_voip_audio>\n        <av_auto_broadcast_speakers>1</av_auto_broadcast_speakers>\n        <av_auto_broadcast_audience>1</av_auto_broadcast_audience>\n    </audio_video>\n    <registration>\n        <register_url>http://domain.com/register/admin/5u3ustj</register_url>\n        <register_limit_register>0</register_limit_register>\n        <register_close_register>0</register_close_register>\n        <register_require>2</register_require>\n        <register_password_to_registration/>\n        <register_end_of_registration>1</register_end_of_registration>\n        <register_end_of_registration_value>You have been registered to this event. Thank you!</register_end_of_registration_value>\n    </registration>\n    <register_fields>\n        <item>\n            <field_name>first_name</field_name>\n            <field_type>text</field_type>\n            <field_title>first_name</field_title>\n            <show>1</show>\n            <required>1</required>\n        </item>\n        <item>\n            <field_name>last_name</field_name>\n            <field_type>text</field_type>\n            <field_title>last_name</field_title>\n            <show>1</show>\n            <required>1</required>\n        </item>\n        <item>\n            <field_name>gender</field_name>\n            <field_type>select</field_type>\n            <field_title>gender</field_title>\n            <show>0</show>\n            <required>0</required>\n            <options>\n                <item>male</item>\n                <item>female</item>\n            </options>\n            <selected>0</selected>\n        </item>\n        <item>\n            <field_name>email</field_name>\n            <field_type>text</field_type>\n            <field_title>email</field_title>\n            <show>1</show>\n            <required>1</required>\n        </item>\n        <item>\n            <field_name>phone</field_name>\n            <field_type>text</field_type>\n            <field_title>phone</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>job_title</field_name>\n            <field_type>text</field_type>\n            <field_title>job_title</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>company</field_name>\n            <field_type>text</field_type>\n            <field_title>company</field_title>\n            <show>1</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>address</field_name>\n            <field_type>text</field_type>\n            <field_title>address</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>city</field_name>\n            <field_type>text</field_type>\n            <field_title>city</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>state</field_name>\n            <field_type>text</field_type>\n            <field_title>state</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>postcode</field_name>\n            <field_type>text</field_type>\n            <field_title>postcode</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>country</field_name>\n            <field_type>select</field_type>\n            <field_title>country</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>website</field_name>\n            <field_type>text</field_type>\n            <field_title>website</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>industry</field_name>\n            <field_type>text</field_type>\n            <field_title>industry</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n    </register_fields>\n    <invitations>\n        <invitations_content>Content</invitations_content>\n        <invitations_reminder_content_first>Content</invitations_reminder_content_first>\n        <invitations_reminder_content_second>Content</invitations_reminder_content_second>\n        <invitations_absentees_content/>\n        <invitations_attendees_content/>\n        <invitations_first_reminder_send_to_myself>0</invitations_first_reminder_send_to_myself>\n        <invitations_second_reminder_send_to_myself>0</invitations_second_reminder_send_to_myself>\n        <invitations_absentees_send_to_myself>0</invitations_absentees_send_to_myself>\n        <invitations_attendees_send_to_myself>0</invitations_attendees_send_to_myself>\n        <invitations_send_reminder_first>60</invitations_send_reminder_first>\n        <invitations_send_reminder_first_interval>minutes</invitations_send_reminder_first_interval>\n        <invitations_send_reminder_second>10</invitations_send_reminder_second>\n        <invitations_send_reminder_second_interval>minutes</invitations_send_reminder_second_interval>\n    </invitations>\n    <menu_buttons>\n        <options>1</options>\n        <camera>1</camera>\n        <microphone>1</microphone>\n        <medialibrary>1</medialibrary>\n        <inviteparticipants>1</inviteparticipants>\n        <screensharing>1</screensharing>\n        <recording>1</recording>\n        <notifications>1</notifications>\n        <lobby>1</lobby>\n        <breakoutrooms>1</breakoutrooms>\n    </menu_buttons>\n    <report>\n        <csv_link>http://domain.com/sessions/report/csv/1/7fbd3ed58c9e4d258d1ce7c84f68f1ec</csv_link>\n        <excel_link>http://domain.com/sessions/report/xls/1/7fbd3ed58c9e4d258d1ce7c84f68f1ec</excel_link>\n        <polls_csv_link>http://domain.com/sessions/polls_report/csv/1/7fbd3ed58c9e4d258d1ce7c84f68f1ec</polls_csv_link>\n        <polls_excel_link>http://domain.com/sessions/polls_report/xls/1/7fbd3ed58c9e4d258d1ce7c84f68f1ec</polls_excel_link>\n    </report>\n    <branding>\n        <event_photo>http://domian.com/themes/flat_ui/images/default_branding/event_photo.png</event_photo>\n        <email_header>http://domain.com/storage/users/1/branding_session_173_email_header.png</email_header>\n        <email_footer>http://domain.com/themes/flat_ui/images/default_branding/emails/footer.png</email_footer>\n    </branding>\n</xml>"}],"_postman_id":"200067b1-c5c4-09c3-99e6-717feab6b4f7"},{"name":"/user_session/id/[int]","id":"e358c717-1a33-f5fb-8c03-aa7c51308b29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_session/id/[int]","description":"<p>Return sub account session's data by given ID#. Available with version 5.2.1.</p>\n\n<h3>Arguments</h3>\n\n<table><tbody><tr><td><b>Requred</b></td><td>id (int)</td><td>id of the session to be returned.</td></tr></tbody></table>\n\n<h3>Return Arguments (Regular Session)</h3>\n\n<table><tbody><tr><td>id (int)</td><td>The id of the edited recording.</td></tr><tr><td>topic (str)</td><td>The name or title of this session.</td></tr><tr><td>start_time (datetime)</td><td>The datetime string of when this session will take or has taken place. Will always default to the user’s timezone &amp; DST settings.</td></tr><tr><td>duration (int)</td><td>Duration of the meeting, in minutes (The meeting will not automatically end after the specified duration; this setting fits only scheduling purposes).</td></tr><tr><td>password (str)</td><td>The session’s access password, required to join. None, if empty.</td></tr><tr><td>session_link (str)</td><td>Full link to the session. If friendly_url is NULL, session_key is used.</td></tr><tr><td>custom_data(array)</td><td>An array of objects containing custom fields in the form of custom1, custom2 etc.</td></tr></tbody></table>","urlObject":{"path":["api","2","{{user_name}}","user_session","id","[int]"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"3eed734a-6cf8-e28e-c3b8-b1ac2e5c7d04","name":"Advanced Session","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/session/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 11:54:26 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"322","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>173</id>\n    <session_link>http://domain.com/go/admin/5u3ustj</session_link>\n    <advanced_mode>1</advanced_mode>    \n    <schedule>\n        <topic>Advanced Session</topic>\n        <start_time>2017-07-29 10:15:00</start_time>\n        <duration>60</duration>\n        <password/>\n        <agenda>Some text</agenda>\n        <description>Some text</description>\n        <display_custom_instructions>0</display_custom_instructions>\n        <custom_instructions/>        \n    </schedule>\n    <participants>\n        <invited_participants>\n            <moderators>\n                <item>\n                    <id>1</id>\n                    <email>moderator@mail.com</email>\n                    <first_name>Moderator</first_name>\n                    <last_name>Name</last_name>\n                    <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsNDI3</personal_session_link>\n                </item>\n            </moderators>\n            <participants>\n                <item>\n                    <id>2</id>\n                    <email>participant@mail.com</email>\n                    <first_name>Participant</first_name>\n                    <last_name>Name</last_name>\n                    <personal_session_link>http://domain.com/join/NXUzdXN0aiwxNzMsNDQ1</personal_session_link>\n                </item>\n            </participants>            \n        </invited_participants>\n        <prevent_user_count>0</prevent_user_count>\n    </participants>\n    <access>\n        <private_access>0</private_access>\n        <guests_join_as>2</guests_join_as>        \n        <access_enable_breakout_rooms>0</access_enable_breakout_rooms>\n        <access_enable_lobby>0</access_enable_lobby>\n        <access_guest_login_fields>\n            <item>email</item>\n            <item>company</item>\n        </access_guest_login_fields>\n    </access>\n    <audio_video>\n        <av_voip_audio>voip</av_voip_audio>\n        <av_auto_broadcast_speakers>1</av_auto_broadcast_speakers>\n        <av_auto_broadcast_audience>1</av_auto_broadcast_audience>\n    </audio_video>\n    <registration>\n        <register_url>http://domain.com/register/admin/5u3ustj</register_url>\n        <register_limit_register>0</register_limit_register>\n        <register_close_register>0</register_close_register>\n        <register_require>2</register_require>\n        <register_password_to_registration/>\n        <register_end_of_registration>1</register_end_of_registration>\n        <register_end_of_registration_value>You have been registered to this event. Thank you!</register_end_of_registration_value>\n    </registration>\n    <register_fields>\n        <item>\n            <field_name>first_name</field_name>\n            <field_type>text</field_type>\n            <field_title>first_name</field_title>\n            <show>1</show>\n            <required>1</required>\n        </item>\n        <item>\n            <field_name>last_name</field_name>\n            <field_type>text</field_type>\n            <field_title>last_name</field_title>\n            <show>1</show>\n            <required>1</required>\n        </item>\n        <item>\n            <field_name>gender</field_name>\n            <field_type>select</field_type>\n            <field_title>gender</field_title>\n            <show>0</show>\n            <required>0</required>\n            <options>\n                <item>male</item>\n                <item>female</item>\n            </options>\n            <selected>0</selected>\n        </item>\n        <item>\n            <field_name>email</field_name>\n            <field_type>text</field_type>\n            <field_title>email</field_title>\n            <show>1</show>\n            <required>1</required>\n        </item>\n        <item>\n            <field_name>phone</field_name>\n            <field_type>text</field_type>\n            <field_title>phone</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>job_title</field_name>\n            <field_type>text</field_type>\n            <field_title>job_title</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>company</field_name>\n            <field_type>text</field_type>\n            <field_title>company</field_title>\n            <show>1</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>address</field_name>\n            <field_type>text</field_type>\n            <field_title>address</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>city</field_name>\n            <field_type>text</field_type>\n            <field_title>city</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>state</field_name>\n            <field_type>text</field_type>\n            <field_title>state</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>postcode</field_name>\n            <field_type>text</field_type>\n            <field_title>postcode</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>country</field_name>\n            <field_type>select</field_type>\n            <field_title>country</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>website</field_name>\n            <field_type>text</field_type>\n            <field_title>website</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n        <item>\n            <field_name>industry</field_name>\n            <field_type>text</field_type>\n            <field_title>industry</field_title>\n            <show>0</show>\n            <required>0</required>\n        </item>\n    </register_fields>\n    <invitations>\n        <invitations_content>Content</invitations_content>\n        <invitations_reminder_content_first>Content</invitations_reminder_content_first>\n        <invitations_reminder_content_second>Content</invitations_reminder_content_second>\n        <invitations_absentees_content/>\n        <invitations_attendees_content/>\n        <invitations_first_reminder_send_to_myself>0</invitations_first_reminder_send_to_myself>\n        <invitations_second_reminder_send_to_myself>0</invitations_second_reminder_send_to_myself>\n        <invitations_absentees_send_to_myself>0</invitations_absentees_send_to_myself>\n        <invitations_attendees_send_to_myself>0</invitations_attendees_send_to_myself>\n        <invitations_send_reminder_first>60</invitations_send_reminder_first>\n        <invitations_send_reminder_first_interval>minutes</invitations_send_reminder_first_interval>\n        <invitations_send_reminder_second>10</invitations_send_reminder_second>\n        <invitations_send_reminder_second_interval>minutes</invitations_send_reminder_second_interval>\n    </invitations>\n    <menu_buttons>\n        <options>1</options>\n        <camera>1</camera>\n        <microphone>1</microphone>\n        <medialibrary>1</medialibrary>\n        <inviteparticipants>1</inviteparticipants>\n        <screensharing>1</screensharing>\n        <recording>1</recording>\n        <notifications>1</notifications>\n        <lobby>1</lobby>\n        <breakoutrooms>1</breakoutrooms>\n    </menu_buttons>\n    <report>\n        <csv_link>http://domain.com/sessions/report/csv/1/7fbd3ed58c9e4d258d1ce7c84f68f1ec</csv_link>\n        <excel_link>http://domain.com/sessions/report/xls/1/7fbd3ed58c9e4d258d1ce7c84f68f1ec</excel_link>\n        <polls_csv_link>http://domain.com/sessions/polls_report/csv/1/7fbd3ed58c9e4d258d1ce7c84f68f1ec</polls_csv_link>\n        <polls_excel_link>http://domain.com/sessions/polls_report/xls/1/7fbd3ed58c9e4d258d1ce7c84f68f1ec</polls_excel_link>\n    </report>\n    <branding>\n        <event_photo>http://domian.com/themes/flat_ui/images/default_branding/event_photo.png</event_photo>\n        <email_header>http://domain.com/storage/users/1/branding_session_173_email_header.png</email_header>\n        <email_footer>http://domain.com/themes/flat_ui/images/default_branding/emails/footer.png</email_footer>\n    </branding>\n</xml>"},{"id":"3ef0b3fb-140f-728e-8348-268d423897b2","name":"Regular Session","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/session/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 11:59:27 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"278","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>2</id>\n    <topic>Regulart session</topic>\n    <start_time>2017-06-01 12:05:00</start_time>\n    <duration>60</duration>\n    <password/>    \n    <session_link>http://domain.com/go/admin/ncp2snq</session_link>\n    <advanced_mode>0</advanced_mode>\n</xml>"}],"_postman_id":"e358c717-1a33-f5fb-8c03-aa7c51308b29"},{"name":"/sessions","id":"bed104f7-18c3-b46b-52fd-ab8853a3a5c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/sessions","description":"<p>Return list of sessions.</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>count(int)</td>\n    <td>Specify number of returned results. Default is 100.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>offset(int)</td>\n    <td>Specify to move the cursor through the recordset. Default is 0.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>order(str)</td>\n    <td>Return results in ascending or descending order of session ID (Depricated in 5.5). Default is asc. \nAccepted values: asc, desc. </td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>order_field (str)</td>\n    <td>Return results in order of this field (Available in 5.5). Default is id. \nAccepted values: id, topic, start_time, duration, friendly_url, type, advanced_mode.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>order_dir (str)</td>\n    <td>Return results in ascending or descending order (Available in 5.5). Default is desc. \nAccepted values: asc, desc.</td>\n  </tr>   \n  <tr>\n    <td> </td>\n    <td>return (str)</td>\n    <td>Specify what fieldset should be in the results.\nExample: id;topic;start_time (field names separated by semicolons).</td>\n  </tr>  \n</table>\n\n<h3>Return Arguments</h3>\n<p>See <code>GET /session/id/[int]</code> method.</p>","urlObject":{"path":["api","2","{{user_name}}","sessions"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"88ee6195-9180-a7b7-91ff-ed34bd9f0125","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 07 Jun 2017 06:46:18 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"439","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <topic>test</topic>\n        <start_time>2017-03-13 13:15:00</start_time>\n        <duration>60</duration>\n        <password/>\n        <session_link>http://os4-dev.digitalsamba.com/go/admin/uckolps</session_link>\n        <advanced_mode>0</advanced_mode>\n    </item>\n    <item>...</item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"bed104f7-18c3-b46b-52fd-ab8853a3a5c4"},{"name":"/user_sessions/user_id/[int]","id":"ad8662d6-2e63-6171-b4f7-4513a4897c60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_sessions/user_id/[int]","description":"<p>Return list of sessions related to sub account. Available with version 5.2.1.</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>user_id(int)</td>\n    <td>ID of child user.</td>\n  </tr>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>count(int)</td>\n    <td>Specify number of returned results. Default is 100.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>offset(int)</td>\n    <td>Specify to move the cursor through the recordset. Default is 0.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>order(str)</td>\n    <td>Return results in ascending or descending order of session ID. Default is asc. \nAccepted values: asc, desc.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>return (str)</td>\n    <td>Specify what fieldset should be in the results.\nExample: id;topic;start_time (field names separated by semicolons). Available from 5.5.</td>\n  </tr>   \n</table>\n\n<h3>Return Arguments</h3>\n<p>See <code>GET /session/id/[int]</code> method.</p>","urlObject":{"path":["api","2","{{user_name}}","user_sessions","user_id","[int]"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"bb849646-1fd7-82ef-ed07-8308c11ca5eb","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 07 Jun 2017 06:46:18 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"439","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <topic>test</topic>\n        <start_time>2017-03-13 13:15:00</start_time>\n        <duration>60</duration>\n        <password/>        \n        <session_link>http://os4-dev.digitalsamba.com/go/admin/uckolps</session_link>\n        <advanced_mode>0</advanced_mode>\n    </item>\n    <item>...</item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"ad8662d6-2e63-6171-b4f7-4513a4897c60"},{"name":"/invited_sessions","id":"b0c267cb-3b10-c99f-d07b-d07e4f60e0ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invited_sessions\n","description":"<p>Get invited sessions associated with this user account. Available with version 4.2.4.</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Optional</b></td>\n    <td>count(int)</td>\n    <td>Specify number of returned results. Default is 100.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>offset(int)</td>\n    <td>Specify to move the cursor through the recordset. Default is 0.</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>order(str)</td>\n    <td>Return results in ascending or descending order of session ID. Default is asc. \nAccepted values: asc, desc.</td>\n  </tr>  \n</table>\n\n<h3>Return Arguments</h3>\n<p>See <code>GET /session/id/[int]</code> method.</p>","urlObject":{"path":["api","2","{{user_name}}","invited_sessions\n"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"6729e1e5-b6e0-e706-8df1-4ef80d6b5a3a","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invited_sessions\n"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 07 Jun 2017 07:30:30 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"226","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>310</id>\n        <topic>Invited session</topic>\n        <start_time>2017-06-07 07:35:00</start_time>\n        <duration>60</duration>\n        <password/>\n        <session_access_code/>\n        <session_link>http://domain.com/go/usename/zge17y2</session_link>\n        <advanced_mode>0</advanced_mode>\n    </item>\n    <item>...</item><item>...</item>\n</xml>"}],"_postman_id":"b0c267cb-3b10-c99f-d07b-d07e4f60e0ff"},{"name":"roles","id":"c87c1db7-2b5c-9b2b-7d63-6b531793cfe2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer ks2fYSsmpZ5va5Ft4WuRl1cglxFcwVXxipUDVwc37bRo7q4pagnijxMGnOvxX5Wb"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://dev-api.monza.digitalsamba.com/api/v1/libraries/3593b4d6-858b-4ef7-a7cb-773e8bd177bb/files/a97fa4bf-03c3-47c9-9912-25727911f651/uploaded","description":"<p>Create a new session</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>topic (str)</td>\n        <td>The title of the meeting.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>duration (int)</td>\n        <td>Duration of the meeting, in minutes (The meeting will not automatically end after the specified duration; this setting fits only scheduling purposes).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>start_time (datetime)</td>\n        <td>Start time in datetime format eg \"2010-08-31 11:05:00\". Will always default to the user’s timezone &amp; DST settings.See the \"Timezones\" section for more info.</td>\n    </tr>    \n    <tr>\n        <td><b>Optional</b></td>\n        <td>friendly_url (str)</td>\n        <td>Define a friendly URL segment to be used instead of auto-generated rather than encrypted meeting ID.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>password (str)</td>\n        <td>To password protect the meeting define this.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invited_participants (array)</td>\n        <td>JSON array of users who should receive an email invitation, in the following format:<pre>[\n    {\n        \"id\": \"1\",\n        \"email\": \"email@domain.com\",\n        \"first_name\": \"First Name\",\n        \"last_name\": \"Last Name\",\n        \"role\": 1,\n        \"send_email_invitation\": false\n    }\n]</pre>role (int): Defines  the user’s status in the meeting: \n            - <b>1</b> - Speaker, \n            - <b>2</b> - Audience,\n            - <b>3</b> - Custom Role (available with v 5.25.0).\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>send_email_invitations (bool)</td>\n        <td>Set to false (or 0) to avoid sending a server-generated email invitation to the user. Default is true. Email invitations will be sent as soon as this call is made. If you want to send your own invitation emails, use GET invitees to obtain the personal_session_link for each user.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>custom_data (array)</td>\n        <td>JSON array of custom data, in the following formats:<pre>[\n    {\n        \"custom1\": \"custom value 1\",\n        \"custom2\": \"custom value 2\",\n        \"custom3\": \"custom value 3\"\n    }\n]</pre>You may add additional custom fields (custom4 and beyond), provided the field name is in the format “customX” where X is an integer incremented by 1.\n            Custom value is varchar(200).\n        </td>\n    </tr>\n</table>\n\n<h3>Advanced Session Arguments</h3>\n<p>Available since version 4.2.3 and only if advanced scheduling features are enabled in Product Admin (via UI only). These parameters mimic the options available when creating a session in the web-interface and clicking “Advanced options”.</p>\n<p>Advanced params are available in PUT and POST session API methods</p>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>advanced_mode (bool)</td>\n        <td>Set to true to enable advanced params for this session. Default is false.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>prevent_user_count (bool)</td>\n        <td>Set to true to hide the user count from audience users. Speakers can always see this number. Default is false.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>save_contacts_to_ab (bool)</td>\n        <td>Set to true to save invitees to your Address Book. Default is false.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>display_participant_name (str)</td>\n        <td>Set format of participant names in the meeting room (available with v 5.5.0). Allowed values:\n            - <b>full_name</b> - Full Name (Emily Harper)\n            - <b>user_id</b> - User Id (User 123456)\n            - <b>last_name_first_name</b> - Last Name, First Name (Harper, Emily)\n            - <b>first_name_initial</b> - First Name + Initial (Emily H.)\n            - <b>initial_last_name</b> - Initial + Last Name (E. Harper)\n            - <b>first_name</b> - First Name only (Emily)\n            - <b>last_name</b> - Last Name only (Harper)\n            - <b>initials</b> - Initials only (E. H.)\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>hide_recording_notifications (bool)</td>\n        <td>Set this param to true to remove all UI notifications from recordings. The MP4 files will not contain notifications (available with v 5.5.0).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>all_day (bool)</td>\n        <td>Set this param to true when session should take all day (available with v 5.1.5).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>attach_calendar_file (int)</td>\n        <td>Select ICS attacments mode (available with v 5.1.5).\n            Allowed values:\n            - <b>0</b> - Do not attach or link a calendar file to the invitation email\n            - <b>1</b> - Attach a calendar file to the invitation email\n            - <b>2</b> - Add a link to the calendar file to the invitation email\n        </td>\n    </tr>     \n    <tr>\n        <td> </td>\n        <td>description (text)</td>\n        <td>Description of the session.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>agenda (text)</td>\n        <td>Agenda of the session.</td>\n    </tr>      \n    <tr>\n        <td> </td>\n        <td>display_custom_instructions (bool)</td>\n        <td>Set to true to display custom instructions for participants.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>custom_instructions (text)</td>\n        <td>Custom instructions for participants, these will be displayed on the session login page.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>guests_join_as (int)</td>\n        <td>Set the default role for guests that have not been specifically invited and given a role then: \n            - <b>1</b> - Speaker, \n            - <b>2</b> - Audience, \n            - <b>3</b> - Cutom Role (available with v 5.25.0). \n            Default is Audience.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_enable_lobby (bool)</td>\n        <td>This option puts non-moderators in a lobby until moderators allow them to enter the session. Not available when the teleconference option is selected</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_enable_breakout_rooms (bool)</td>\n        <td>Allow participants to disperse into smaller groups while in session. Not available when the teleconference option is selected</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_allow_everyone_to_broadcast(bool)</td>\n        <td>Allow all users to broadcast on Breakout Room start; otherwise inherit permissions as set in the Main Room (available with v 5.32.0)</td>\n    </tr> \n    <tr>\n        <td> </td>\n        <td>access_allow_choose_breakout_room (bool)</td>\n        <td>Allow audience users to freely move around breakout rooms (available with v 5.36.0)</td>\n    </tr> \n    <tr>\n        <td> </td>\n        <td>access_guest_login_fields (array)</td>\n        <td>List of optional fields on session login form. Allowed fields: email, company. Format: <pre>[\"email\",\"company\"]</pre>(available with v 5.0.2)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_before_start (numeric)</td>\n        <td>Restrict early access. (available with v 5.1.5)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_public_visibity (numeric)</td>\n        <td>Make visible on your public page. Users will be able to join and/or register for your sessions through a public page (available with v 5.1.5).\n            Allowed values:\n            - <b>0</b> - Session isn't visible on public pages\n            - <b>1</b> - Session is visible on your public page\n            - <b>2</b> - Session is visible on company public page (for company accounts only)\n            - <b>3</b> - Session is visible on both public pages (for company accounts only)\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_chat_emoji_enabled (bool)</td>\n        <td>Enable chat emojis. (available with v 5.34.0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_chat_emoji_reactions_enabled (bool)</td>\n        <td>Enable chat emoji reactions. (available with v 5.34.0)</td>\n    </tr>        \n    <tr>\n        <td> </td>\n        <td>private_access (bool)</td>\n        <td>Set to true to allow access only to users who have registered or been invited. Default is false (any user with the URL may join, subject to knowing the session password, if defined)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>av_auto_broadcast_speakers (bool)</td>\n        <td>Automatically start audio and video broadcast of Speakers when they enter, if they have broadcast permissions (available with v 5.5.0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>av_auto_broadcast_audience (bool)</td>\n        <td>Automatically start audio and video broadcast of Audience when they enter, if they have broadcast permissions \n            (available with v 5.5.0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>av_voip_audio (str)</td>\n        <td>Session Audio. Allowed values: phone, voip, hybrid. (available with v 4.3.2). Only \"voip\" session audio allowed when break-out rooms are enabled (access_enable_breakout_rooms param)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>av_allow_max_one_content_opened (bool)</td>\n        <td>Allow maximum one content opened. Thumbnail and Tiled modes will allow opening maximum one piece of content in the Stage. Fullscreen mode will not display content thumbnails to quickly access the previously open content. (available with v 5.30.0).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>av_e2ee_support_enabled (bool)</td>\n        <td>Enable/disable E2EE (available with v 5.38.0).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_require (bool)</td>\n        <td>Set to (0) no registration form (1) allow registration or (2) require registration</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_friendly_url (str)</td>\n        <td>Define the friendly URL segment of the registration page eg: www.domain.com/register/[username]/[friendlyurl]</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_limit_register (int)</td>\n        <td>Limit number of users that can register to this session to this number. Default is unlimited.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_close_register (int)</td>\n        <td>Time, in minutes, before the start time of the session, at which to no longer accept registrations. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_password_to_registration (str)</td>\n        <td>Set to true to require users to enter a password before being able to register for the event.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_end_of_registration (str)</td>\n        <td>Set to true to show a custom message to users after they registered.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_end_of_registration_value (str)</td>\n        <td>Custom message to display to users after they registered (if previous param is true).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_fields (array)</td>\n        <td>JSON array of fields in registration form.\n            Default fields: first_name, last_name and email\n            Format:<pre>\n[\n    { \n        \"field_name\": \"phone\",\n        \"show\": 1, \n        \"required\": 1 \n    },\n    { \n        \"field_name\": \"custom_field_2\",\n        \"field_title\": \"custom radio\",\n        \"field_type\": \"radio\",\n        \"options\": [\"radio 1\", \"radio 2\"],\n        \"selected\": 2\n    }\n]</pre><b>field_name</b>: name of field. you can you one of standard field names ('first_name, last_name, email, phone, job_title, company, address, city, postcode, country, website, industry) or add custom fields (custom_field_{number}).\n            <b>show</b>: 1/0\n            <b>required</b>: 1/0\n            <b>field_type</b>: text, textarea, radio, checkbox or select (select type available with v 5.0.5 only)\n            <b>options</b>: array of option titles (only for radio, checkbox or select fields)\n            <b>selected</b>: number of selected option (only for radio or checkbox files)\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_send_reminder_first (int)</td>\n        <td>Set to number of time units before the start of the event when the first reminder email should be sent.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_send_reminder_first_interval (str)</td>\n        <td>Define time units for previous parameter, possible choices “minutes”, “hours”, “days”.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_send_reminder_second (int)</td>\n        <td>Set to number of time units before the start of the event when the second reminder email should be sent.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_send_reminder_second_interval (str)</td>\n        <td>Define time units for previous parameter, possible choices “minutes”, “hours”, “days”.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_reminder_content_first (str)</td>\n        <td>Textual content of the first reminder email. This field supports placeholders.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_reminder_content_second (str)</td>\n        <td>Textual content of the second reminder email. This field supports placeholders.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_attendees_content (str)</td>\n        <td>Textual content of the email that is sent to attendees of the event. This field supports placeholders.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_absentees_content (str)</td>\n        <td>Textual content of the email that is sent to absentees of the event. This field supports placeholders.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_first_reminder_send_to_myself (bool)</td>\n        <td>Set to true to send yourself (= the Account Holder) a copy of the first reminder email.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_second_reminder_send_to_myself (bool)</td>\n        <td>Set to true to send yourself (= the Account Holder) a copy of the second reminder email.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_attendees_send_to_myself (bool)</td>\n        <td>Set to true to send yourself (= the Account Holder) a copy of the attendee email.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_absentees_send_to_myself (bool)</td>\n        <td>Set to true to send yourself (= the Account Holder) a copy of the absentee email.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>send_join_links_to_myself (bool)</td>\n        <td>Set to true to send yourself (= the Account Holder) a CSV file with the join links of all invitees (available with v 5.5.0).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_content (str)</td>\n        <td>Custom content of the invitation email (replaces the default invitation email).\n            This field supports placeholders.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>caption_stream_event_id (str)</td>\n        <td>Caption event ID (available with v 5.0.4 when caption stream feature is enabled on the server level)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>live_stream_endpoint (str)</td>\n        <td>Live stream ffmpeg endpoint URL (available with v 5.3.0)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>menu_buttons (array)</td>\n        <td>Menu Buttons Available in Session (not available since  v5.39.0).        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>branding (array)</td>\n        <td>Upload a custom image to override the default image defined in the Branding area (available with v 4.3.9)\n            Allowed values:\n            - <b>email_header</b> - URL to Event Photo  image. <i>Dimensions: 240px wide, 180px high. Format: gif, jpg, png. Filesize: Max 1024KB.</i>\n            - <b>email_footer</b> - URL to Email Header image. <i>Maximum dimensions: 600px wide, 600px high. Format: png (transparent background recommended). Filesize: Max 1024KB.</i>\n            - <b>event_photo</b> - URL to Email Footer image. <i>Maximum dimensions: 600px wide, 600px high. Format: png (transparent background recommended). Filesize: Max 1024KB.</i>\n        </td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of the newly created session.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>  \n</table>","urlObject":{"protocol":"https","path":["api","v1","libraries","3593b4d6-858b-4ef7-a7cb-773e8bd177bb","files","a97fa4bf-03c3-47c9-9912-25727911f651","uploaded"],"host":["dev-api","monza","digitalsamba","com"],"query":[],"variable":[]}},"response":[{"id":"e707935a-ec9c-0880-e553-752061cc3459","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"topic\": \"Test\",\n\t\"duration\": 60, \n\t\"start_time\": \"2017-09-10 12:00:00\", \n\t\"invited_participants\":[\n\t\t{\n\t\t\t\"email\":\"email@domain.com\",\n\t\t\t\"first_name\":\"First Name\",\n\t\t\t\"last_name\":\"Last Name\",\n\t\t\t\"role\":1,\n\t\t\t\"send_email_invitation\":0\n\t\t}\n\t],\"custom_data\": [\n\t\t{\n\t\t\t\"custom1\":\"first custom value\", \n\t\t\t\"custom2\":\"second custom value\", \n\t\t\t\"custom3\":\"third custom value\",\n\t\t\t\"custom4\":\"fourth custom value\"\n\t\t}\n\t]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/session"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 07 Jun 2017 06:38:13 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"1152","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>307</id><message>Session added</message></xml>\n"}],"_postman_id":"c87c1db7-2b5c-9b2b-7d63-6b531793cfe2"},{"name":"/user_session","id":"14bcde46-d315-5622-22bc-c8ca4e20b64d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"topic\": \"Test\",\n  \"duration\": 60, \n  \"start_time\": \"2017-09-10 12:00:00\", \n  \"invited_participants\":[\n    {\n      \"email\":\"email@domain.com\",\n      \"first_name\":\"First Name\",\n      \"last_name\":\"Last Name\",\n      \"role\":1,\n      \"send_email_invitation\":0\n    }\n  ],\"custom_data\": [\n    {\n      \"custom1\":\"first custom value\", \n      \"custom2\":\"second custom value\", \n      \"custom3\":\"third custom value\",\n      \"custom4\":\"fourth custom value\"\n    }\n  ]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_session","description":"<p>Create a new session</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>user_id (int)</td>\n        <td>ID of session owner.</td>\n    </tr>\n    <tr>\n        <td><b>Required</b></td>\n        <td>topic (str)</td>\n        <td>The title of the meeting.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>duration (int)</td>\n        <td>Duration of the meeting, in minutes (The meeting will not automatically end after the specified duration; this setting fits only scheduling purposes).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>start_time (datetime)</td>\n        <td>Start time in datetime format eg \n“2010-08-31 11:05:00”. Will always default to the user’s timezone &amp; DST settings.See the “Timezones” section for more info.</td>\n    </tr>    \n    <tr>\n        <td><b>Optional</b></td>\n        <td>friendly_url (str)</td>\n        <td>Define a friendly URL segment to be used instead of auto-generated rather than encrypted meeting ID.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>password (str)</td>\n        <td>To password protect the meeting define this.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invited_participants (array)</td>\n        <td>JSON array of users who should receive an email invitation, in the following format:<pre>[\n    {\n    \"id\": \"1\",\n    \"email\": \"email@domain.com\",\n    \"first_name\": \"First Name\",\n    \"last_name\": \"Last Name\",\n    \"role\": 1,\n    \"send_email_invitation\": false\n    }\n]</pre>role (int): Defines  the user’s status in the meeting: Speaker (1) or Audience (2)\n\n<p>send_email_invitations (bool): Set to false (or 0) to avoid sending a server-generated email invitation to the user. Default is true. Email invitations will be sent as soon as this call is made. If you want to send your own invitation emails, use GET invitees to obtain the personal_session_link for each user.</p></td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>custom_data (array)</td>\n        <td>JSON array of custom data, in the following formats:<pre>[\n    {\n    \"custom1\": \"custom value 1\",\n    \"custom2\": \"custom value 2\",\n    \"custom3\": \"custom value 3\"\n    }\n]</pre>You may add additional custom fields (custom4 and beyond), provided the field name is in the format “customX” where X is an integer incremented by 1.\nCustom value is varchar(200).</td>\n    </tr><p></p>\n</table>\n<h3>Advanced Session Arguments</h3>\n<p>Available since version 4.2.3 and only if advanced scheduling features are enabled in Product Admin (via UI only). These parameters mimic the options available when creating a session in the web-interface and clicking “Advanced options”.</p>\n<p>Advanced params are available in PUT and POST session API methods</p>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>advanced_mode (bool)</td>\n        <td>Set to true to enable advanced params for this session. Default is false..</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>prevent_user_count (bool)</td>\n        <td>Set to true to hide the user count from audience users. Speakers can always see this number. Default is false.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>save_contacts_to_ab (bool)</td>\n        <td>Set to true to save invitees to your Address Book. Default is false.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>all_day (bool)</td>\n        <td>Set this param to true when session should take all day (available with v 5.1.5).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>attach_calendar_file (int)</td>\n        <td>Select ICS attacments mode (available with v 5.1.5).\nAllowed values:\n- <b>0</b> - Do not attach or link a calendar file to the invitation email\n- <b>1</b> - Attach a calendar file to the invitation email\n- <b>2</b> - Add a link to the calendar file to the invitation email</td>\n    </tr>     \n    <tr>\n        <td> </td>\n        <td>description (text)</td>\n        <td>Description of the session.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>agenda (text)</td>\n        <td>Agenda of the session.</td>\n    </tr>      \n    <tr>\n        <td> </td>\n        <td>display_custom_instructions (bool)</td>\n        <td>Set to true to display custom instructions for participants.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>custom_instructions (text)</td>\n        <td>Custom instructions for participants, these will be displayed on the session login page.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>guests_join_as (int)</td>\n        <td>Set the default role for guests that have not been specifically invited and given a role then: \n        Speaker (1), \n        Audience (2)\n        Default is Audience.</td>\n    </tr>   \n    <tr>\n        <td> </td>\n        <td>access_enable_lobby (bool)</td>\n        <td>This option puts non-moderators in a lobby until moderators allow them to enter the session. Not available when the teleconference option is selected</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_enable_breakout_rooms (bool)</td>\n        <td>Allow participants to disperse into smaller groups while in session. Not available when the teleconference option is selected</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_guest_login_fields (array)</td>\n        <td>List of optional fields on session login form. Allowed fields: email, company. \nFormat: <pre>[\"email\",\"company\"]</pre>(available with v 5.0.2)\n</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_before_start (numeric)</td>\n        <td>Restrict early access. (available with v 5.1.5)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>access_public_visibity (numeric)</td>\n        <td>Make visible on your public page. Users will be able to join and/or register for your sessions through a public page (available with v 5.1.5).\nAllowed values:\n- <b>0</b> - Session isn't visible on public pages\n- <b>1</b> - Session is visible on your public page\n- <b>2</b> - Session is visible on company public page (for company accounts only)\n- <b>3</b> - Session is visible on both public pages (for company accounts only)</td>\n</tr>        \n<tr>\n        <td> </td>\n        <td>private_access (bool)</td>\n        <td>Set to true to allow access only to users who have registered or been invited. Default is false (any user with the URL may join, subject to knowing the session password, if defined)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>voip_session_audio (str)</td>\n        <td>Session Audio. Allowed values: phone, voip, hybrid. (available with v 4.3.2)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_require (bool)</td>\n        <td>Set to (0) no registration form (1) allow registration or (2) require registration</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_friendly_url (str)</td>\n        <td>Define the friendly URL segment of the registration page eg: www.domain.com/register/[username]/[friendlyurl]</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_limit_register (int)</td>\n        <td>Limit number of users that can register to this session to this number. Default is unlimited.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_close_register (int)</td>\n        <td>Time, in minutes, before the start time of the session, at which to no longer accept registrations. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_password_to_registration (str)</td>\n        <td>Set to true to require users to enter a password before being able to register for the event.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_end_of_registration (str)</td>\n        <td>Set to true to show a custom message to users after they registered.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_end_of_registration_value (str)</td>\n        <td>Custom message to display to users after they registered (if previous param is true).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>register_fields (array)</td>\n        <td>JSON array of fields in registration form.\nDefault fields: first_name, last_name and email\nFormat:<pre>\n[\n    { \n    \"field_name\": \"phone\",\n    \"show\": 1, \n    \"required\": 1 \n    },\n    { \n    \"field_name\": \"custom_field_2\",\n    \"field_title\": \"custom radio\",\n    \"field_type\": \"radio\",\n    \"options\": [\"radio 1\", \"radio 2\"],\n    \"selected\": 2\n    }\n}</pre><b>field_name</b>: name of field. you can you one of standard field names ('first_name, last_name, gender, email, phone, job_title, company, address, city, postcode, country, website, industry) or add custom fields (custom_field_{number}).\n<b>show</b>: 1/0\n<b>required</b>: 1/0\n<b>field_type</b>: text, textarea, radio, checkbox or select (select type available with v 5.0.5 only)\n<b>options</b>: array of option titles (only for radio, checkbox or select fields)\n<b>selected</b>: number of selected option (only for radio or checkbox files)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_send_reminder_first (bool)</td>\n        <td>Set to number of time units before the start of the event when the first reminder email should be sent.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_send_reminder_first_interval (int)</td>\n        <td>Define time units for previous parameter, possible choices “minutes”, “hours”, “days”.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_send_reminder_second (bool)</td>\n        <td>Set to number of time units before the start of the event when the second reminder email should be sent.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_send_reminder_second_interval (int)</td>\n        <td>Define time units for previous parameter, possible choices “minutes”, “hours”, “days”.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_reminder_content_first (str)</td>\n        <td>Textual content of the first reminder email. This field supports placeholders.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_reminder_content_second (str)</td>\n        <td>Textual content of the second reminder email. This field supports placeholders.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_attendees_content (str)</td>\n        <td>Textual content of the email that is sent to attendees of the event. This field supports placeholders.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_absentees_content (str)</td>\n        <td>Textual content of the email that is sent to absentees of the event. This field supports placeholders.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_first_reminder_send_to_myself (bool)</td>\n        <td>Set to true to send yourself (= the Account Holder) a copy of the first reminder email.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_second_reminder_send_to_myself (bool)</td>\n        <td>Set to true to send yourself (= the Account Holder) a copy of the second reminder email.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_attendees_send_to_myself (bool)</td>\n        <td>Set to true to send yourself (= the Account Holder) a copy of the attendee email.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_absentees_send_to_myself (bool)</td>\n        <td>Set to true to send yourself (= the Account Holder) a copy of the absentee email.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>invitations_content (str)</td>\n        <td>Custom content of the invitation email (replaces the default invitation email).\nThis field supports placeholders.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>caption_stream_event_id (str)</td>\n        <td>Caption event ID (available with v 5.0.4 when caption stream feature is enabled on the server level)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>menu_buttons (array)</td>\n        <td>Menu Buttons Available in Session. (available with v 4.3.9)\n \n<p>Set one of allowed values to TRUE to show menu button, or to FALSE to hide that one.</p>\n<p>Leave this option EMPTY to use default menu settings.</p>\n<p>Allowed values:</p>\n<ul>\n<li><b>screensharing</b> (bool) - Show/Hide “Screen Sharing” item</li>\n<li><b>inviteparticipants</b> (bool) - Show/Hide “Invite Participants” item</li>\n<li><b>medialibrary</b> (bool) - Show/Hide “Media Library” item</li>\n<li><b>camera</b> (bool) - Show/Hide “Camera” item</li>\n<li><b>options</b> (bool) - Show/Hide “Options” item</li>\n<li><b>recording</b> (bool) - Show/Hide “Recording” item</li>\n<li><b>notifications</b> (bool) - Show/Hide “Notifications” item</li>\n<li><b>microphone</b> (bool) - Show/Hide  “Microphone” item</li></ul></td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>branding (array)</td>\n      <td>Upload a custom image to override the default image defined in the Branding area (available with v 4.3.9)\n\n<p>Allowed values:</p>\n<ul>\n<li><b>email_header</b> - URL to Event Photo  image. <i>Dimensions: 240px wide, 180px high. Format: gif, jpg, png. Filesize: Max 1024KB.</i></li>\n<li><b>email_footer</b> - URL to Email Header image. <i>Maximum dimensions: 600px wide, 600px high. Format: png (transparent background recommended). Filesize: Max 1024KB.</i></li>\n<li><b>event_photo</b> - URL to Email Footer image. <i>Maximum dimensions: 600px wide, 600px high. Format: png (transparent background recommended). Filesize: Max 1024KB.</i></li></ul></td>\n  </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the newly created session.</td>\n  </tr>\n  <tr>\n    <td>user_id (int)</td>\n    <td>ID of session owner.</td>\n  </tr>  \n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","user_session"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"6a2c4d26-0b54-6486-316e-1222551fa760","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"topic\": \"Test\",\n\t\"duration\": 60, \n\t\"start_time\": \"2017-09-10 12:00:00\", \n\t\"invited_participants\":[\n\t\t{\n\t\t\t\"email\":\"email@domain.com\",\n\t\t\t\"first_name\":\"First Name\",\n\t\t\t\"last_name\":\"Last Name\",\n\t\t\t\"role\":1,\n\t\t\t\"send_email_invitation\":0\n\t\t}\n\t],\"custom_data\": [\n\t\t{\n\t\t\t\"custom1\":\"first custom value\", \n\t\t\t\"custom2\":\"second custom value\", \n\t\t\t\"custom3\":\"third custom value\",\n\t\t\t\"custom4\":\"fourth custom value\"\n\t\t}\n\t]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/session"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 07 Jun 2017 06:38:13 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"1152","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>307</id><message>Session added</message></xml>\n"}],"_postman_id":"14bcde46-d315-5622-22bc-c8ca4e20b64d"},{"name":"/session","id":"17cae63d-42f0-4a61-1c38-29ce78186669","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/session","description":"<p>Edit an existing session.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (str)</td>\n        <td>The id of the session.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td></td>\n        <td>See Arguments of <code>PUT /session</code> method.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of the updated session.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>   \n</table>","urlObject":{"path":["api","2","{{user_name}}","session"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"17cae63d-42f0-4a61-1c38-29ce78186669"},{"name":"/user_session","id":"de4ec6db-e326-abc2-b88a-765db8ebce33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_session","description":"<p>Edit an existing session related to sub user account. Available with version 5.2.1.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (str)</td>\n        <td>The id of the session.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td></td>\n        <td>See Arguments of <code>PUT /session</code> method.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the updated session.</td>\n  </tr>\n  <tr>\n    <td>user_id (int)</td>\n    <td>ID of session owner.</td>\n  </tr>  \n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","user_session"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de4ec6db-e326-abc2-b88a-765db8ebce33"},{"name":"/session","id":"e17e720e-29b4-9127-03b1-83617bb00d6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\"1\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/session","description":"<p>Delete an existing session.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (str)</td>\n        <td>The id of the session to be deleted. Note: the id may also be appended to the URL (.../id/xxx) instead of in the request body.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of the deleted session.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text messsage.</td>\n    </tr>   \n</table>","urlObject":{"path":["api","2","{{user_name}}","session"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"87842296-5ecb-c158-ff40-78760d3f11bf","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\"1\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/session"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Wed, 07 Jun 2017 07:37:08 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"569","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Session was deleted</message>\n</xml>"}],"_postman_id":"e17e720e-29b4-9127-03b1-83617bb00d6b"}],"id":"224eedb6-cad0-9548-941a-05b4b10aa48f","_postman_id":"224eedb6-cad0-9548-941a-05b4b10aa48f","description":""},{"name":"Statistics","item":[{"name":"/statistics","id":"f6c203f1-2eed-882c-cf66-63ea932c57dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/statistics","description":"<p>GET statistics and GET admin_statistics can potentially return a very large amount of date. In addition to limiting the /days parameter, we recommend that you:</p>\n1. limit type of data by using the /return option to define a subset of data fields, \n2. use the /count and /offset options to page through the results.\n\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>days (int)</td>\n        <td>Number of days to retrieve stats for. A high number may yield a very large return set.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>session_id (int)</td>\n        <td>Return stats for specific session id. Available in v5.11.0</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>breakouts (int)</td>\n        <td>Include stats for any breakouts created within parent session id (can only be used in conjuction with session_id param ). Available in v5.11.0</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>return(str)</td>\n        <td>Choose which fields should be returned by adding a list of semi-colon delimited field names eg \n<pre>.../statistics/days/5/return/id;aid;sid;sn</pre>\nIf not defined, a pre-defined subset of fields is returned</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>aid (int)</td>\n        <td>Account ID.</td>\n    </tr>\n    <tr>\n        <td>ahfn (str)</td>\n        <td>Account Holder First Name.</td>\n    </tr>\n    <tr>\n        <td>ahln (str)</td>\n        <td>Account Holder Last Name.</td>\n    </tr>\n    <tr>\n        <td>ahl (str)</td>\n        <td>Account Holder Login.</td>\n    </tr>\n    <tr>\n        <td>sid (int)</td>\n        <td>Session ID.</td>\n    </tr>\n    <tr>\n        <td>pbsid (int)</td>\n        <td>Parent Session ID (null if not breakout session).</td>\n    </tr>\n    <tr>\n        <td>sn (str)</td>\n        <td>Session Name.</td>\n    </tr>\n    <tr>\n        <td>pfn (str)</td>\n        <td>Participant First Name.</td>\n</tr>\n    <tr>\n        <td>pfn (str)</td>\n        <td>Participant First Name.</td>\n    </tr>\n    <tr>\n        <td>pln (str)</td>\n        <td>Participant Last Name.</td>\n    </tr>\n    <tr>\n        <td>pe (int)</td>\n        <td>Participant Email.</td>\n    </tr>\n    <tr>\n        <td>pr (int)</td>\n        <td>Participant Role.</td>\n    </tr>\n    <tr>\n        <td>pid (int)</td>\n        <td>Participant ID.</td>\n    </tr>\n        <tr>\n        <td>pip (str)</td>\n        <td>Participant ip address (OEM setting only)</td>\n    </tr>\n    <tr>\n        <td>jt (datetime)</td>\n        <td>Join Time.</td>\n    </tr>\n    <tr>\n        <td>lt (datetime)</td>\n        <td>Leave Time.</td>\n    </tr>\n    <tr>\n        <td>d (time)</td>\n        <td>Duration.</td>\n    </tr>\n    <tr>\n        <td>st (str)</td>\n        <td>Session Timezone.</td>\n    </tr>\n    <tr>\n        <td>sp (str)</td>\n        <td>Session Password.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","statistics"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"914188b2-153b-d98f-320b-946d920219e3","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/statistics"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 12:20:12 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"503","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <aid>1</aid>\n        <ahfn>Owner</ahfn>\n        <ahln>Name</ahln>\n        <ahl>owner_login</ahl>\n        <sid>1</sid>\n        <sn>Session Name</sn>\n        <pfn>Guest</pfn>\n        <pln>Name</pln>\n        <pe>user@gmail.com</pe>\n        <pr>0</pr>\n        <jt>2017-05-05 09:54:45</jt>\n        <lt>2017-05-05 10:01:42</lt>\n        <d>00:06:57</d>\n        <st>UTC</st>\n        <sp>2</sp>        \n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"f6c203f1-2eed-882c-cf66-63ea932c57dd"},{"name":"/statistics Copy","id":"cf921a12-e71c-415c-ac0d-115995c244e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/statistics","description":"<p>GET statistics and GET admin_statistics can potentially return a very large amount of date. In addition to limiting the /days parameter, we recommend that you:</p>\n1. limit type of data by using the /return option to define a subset of data fields, \n2. use the /count and /offset options to page through the results.\n\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>days (int)</td>\n        <td>Number of days to retrieve stats for. A high number may yield a very large return set.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>session_id (int)</td>\n        <td>Return stats for specific session id. Available in v5.11.0</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>breakouts (int)</td>\n        <td>Include stats for any breakouts created within parent session id (can only be used in conjuction with session_id param ). Available in v5.11.0</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>return(str)</td>\n        <td>Choose which fields should be returned by adding a list of semi-colon delimited field names eg \n<pre>.../statistics/days/5/return/id;aid;sid;sn</pre>\nIf not defined, a pre-defined subset of fields is returned</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>aid (int)</td>\n        <td>Account ID.</td>\n    </tr>\n    <tr>\n        <td>ahfn (str)</td>\n        <td>Account Holder First Name.</td>\n    </tr>\n    <tr>\n        <td>ahln (str)</td>\n        <td>Account Holder Last Name.</td>\n    </tr>\n    <tr>\n        <td>ahl (str)</td>\n        <td>Account Holder Login.</td>\n    </tr>\n    <tr>\n        <td>sid (int)</td>\n        <td>Session ID.</td>\n    </tr>\n    <tr>\n        <td>pbsid (int)</td>\n        <td>Parent Session ID (null if not breakout session).</td>\n    </tr>\n    <tr>\n        <td>sn (str)</td>\n        <td>Session Name.</td>\n    </tr>\n    <tr>\n        <td>pfn (str)</td>\n        <td>Participant First Name.</td>\n</tr>\n    <tr>\n        <td>pfn (str)</td>\n        <td>Participant First Name.</td>\n    </tr>\n    <tr>\n        <td>pln (str)</td>\n        <td>Participant Last Name.</td>\n    </tr>\n    <tr>\n        <td>pe (int)</td>\n        <td>Participant Email.</td>\n    </tr>\n    <tr>\n        <td>pr (int)</td>\n        <td>Participant Role.</td>\n    </tr>\n    <tr>\n        <td>pid (int)</td>\n        <td>Participant ID.</td>\n    </tr>\n        <tr>\n        <td>pip (str)</td>\n        <td>Participant ip address (OEM setting only)</td>\n    </tr>\n    <tr>\n        <td>jt (datetime)</td>\n        <td>Join Time.</td>\n    </tr>\n    <tr>\n        <td>lt (datetime)</td>\n        <td>Leave Time.</td>\n    </tr>\n    <tr>\n        <td>d (time)</td>\n        <td>Duration.</td>\n    </tr>\n    <tr>\n        <td>st (str)</td>\n        <td>Session Timezone.</td>\n    </tr>\n    <tr>\n        <td>sp (str)</td>\n        <td>Session Password.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","statistics"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"8e1d1bcc-4ca1-428c-856f-4b89a82126cb","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/statistics"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 12:20:12 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"503","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <aid>1</aid>\n        <ahfn>Owner</ahfn>\n        <ahln>Name</ahln>\n        <ahl>owner_login</ahl>\n        <sid>1</sid>\n        <sn>Session Name</sn>\n        <pfn>Guest</pfn>\n        <pln>Name</pln>\n        <pe>user@gmail.com</pe>\n        <pr>0</pr>\n        <jt>2017-05-05 09:54:45</jt>\n        <lt>2017-05-05 10:01:42</lt>\n        <d>00:06:57</d>\n        <st>UTC</st>\n        <sp>2</sp>        \n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"cf921a12-e71c-415c-ac0d-115995c244e2"},{"name":"/admin_statistics","id":"6ad7b5a8-8f98-2569-af13-d279848b1122","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/admin_statistics","description":"<p>Get connection statistics for all user accounts belonging to [username]. Requires admin rights.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>days (int)</td>\n        <td>Number of days to retrieve stats for. A high number may yield a very large return set.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>session_id (int)</td>\n        <td>Return stats for specific session id. Available in v5.11.0</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>breakouts (int)</td>\n        <td>Include stats for any breakouts created within parent session id (can only be used in conjuction with session_id param ). Available in v5.11.0</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>return(str)</td>\n        <td>Choose which fields should be returned by adding a list of semi-colon delimited field names eg \n<pre>.../statistics/days/5/return/id;aid;sid;sn</pre>\nIf not defined, a pre-defined subset of fields is returned</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>aid (int)</td>\n        <td>Account ID.</td>\n    </tr>\n    <tr>\n        <td>ahfn (str)</td>\n        <td>Account Holder First Name.</td>\n    </tr>\n    <tr>\n        <td>ahln (str)</td>\n        <td>Account Holder Last Name.</td>\n    </tr>\n    <tr>\n        <td>ahl (str)</td>\n        <td>Account Holder Login.</td>\n    </tr>\n    <tr>\n        <td>sid (int)</td>\n        <td>Session ID.</td>\n    </tr>\n    <tr>\n        <td>pbsid (int)</td>\n        <td>Parent Session ID (null if not breakout session).</td>\n    </tr>\n    <tr>\n        <td>sn (str)</td>\n        <td>Session Name.</td>\n    </tr>\n    <tr>\n        <td>pfn (str)</td>\n        <td>Participant First Name.</td>\n    </tr>\n    <tr>\n        <td>pln (str)</td>\n        <td>Participant Last Name.</td>\n    </tr>\n    <tr>\n        <td>pe (int)</td>\n        <td>Participant Email.</td>\n    </tr>\n    <tr>\n        <td>pid (int)</td>\n        <td>Participant ID.</td>\n    </tr>\n    <tr>\n        <td>pr (int)</td>\n        <td>Participant Role (available with version 4.3.6)\nPossible values:\n0 - Session owner\n1 - Speaker\n2 - Audience\n</td>\n    </tr>\n    <tr>\n        <td>jt (datetime)</td>\n        <td>Join Time.</td>\n    </tr>\n    <tr>\n        <td>lt (datetime)</td>\n        <td>Leave Time.</td>\n    </tr>\n    <tr>\n        <td>d (time)</td>\n        <td>Duration.</td>\n    </tr>\n    <tr>\n        <td>st (str)</td>\n        <td>Session Timezone.</td>\n    </tr>\n    <tr>\n        <td>sp (str)</td>\n        <td>Session Password.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","admin_statistics"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"4d1edd9d-da97-5442-54ae-7ac50aea0885","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/admin_statistics"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 12:38:07 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"2757","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <aid>3</aid>\n        <ahfn>Owner</ahfn>\n        <ahln>Name</ahln>\n        <ahl>owner_login</ahl>\n        <sid>3</sid>\n        <sn>Session Name</sn>\n        <pfn>Guest</pfn>\n        <pln>Name</pln>\n        <pe>guest@mail.com</pe>\n        <pr>2</pr>\n        <jt>2017-05-02 07:39:27</jt>\n        <lt>2017-05-02 07:40:36</lt>\n        <d>00:01:09</d>\n        <st>UTC</st>\n        <sp>1</sp>\n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>...\n</item>\n</xml>"}],"_postman_id":"6ad7b5a8-8f98-2569-af13-d279848b1122"},{"name":"/statistics_live","id":"1cef8f67-7b37-6498-ed0c-7fd4b35164bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/statistics_live","description":"<p>Get live connection statistics for the user’s account. (Available in v4.3.7)</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>session_id (int)</td>\n        <td>Return stats for specific session id. Available in v5.11.0</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>breakouts (int)</td>\n        <td>Include stats for any breakouts created within parent session id (can only be used in conjuction with session_id param ). Available in v5.11.0</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>return(str)</td>\n        <td>Choose which fields should be returned by adding a list of semi-colon delimited field names eg \n<pre>.../statistics_live/days/5/return/id;aid;sid;sn</pre>\nIf not defined, a pre-defined subset of fields is returned</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>aid (int)</td>\n        <td>Account ID.</td>\n    </tr>\n    <tr>\n        <td>ahfn (str)</td>\n        <td>Account Holder First Name.</td>\n    </tr>\n    <tr>\n        <td>ahln (str)</td>\n        <td>Account Holder Last Name.</td>\n    </tr>\n    <tr>\n        <td>ahl (str)</td>\n        <td>Account Holder Login.</td>\n    </tr>\n    <tr>\n        <td>sid (int)</td>\n        <td>Session ID.</td>\n    </tr>\n    <tr>\n        <td>pbsid (int)</td>\n        <td>Parent Session ID (null if not breakout session).</td>\n    </tr>\n    <tr>\n        <td>sn (str)</td>\n        <td>Session Name.</td>\n    </tr>\n    <tr>\n        <td>pfn (str)</td>\n        <td>Participant First Name.</td>\n    </tr>\n    <tr>\n        <td>pln (str)</td>\n        <td>Participant Last Name.</td>\n    </tr>\n    <tr>\n        <td>pe (int)</td>\n        <td>Participant Email.</td>\n    </tr>\n    <tr>\n        <td>pid (int)</td>\n        <td>Participant ID.</td>\n    </tr>\n    <tr>\n        <td>pr (int)</td>\n        <td>Participant Role (available with version 4.3.6)\nPossible values:\n0 - Session owner\n1 - Speaker\n2 - Audience\n</td>\n    </tr>\n    <tr>\n        <td>jt (datetime)</td>\n        <td>Join Time.</td>\n    </tr>\n    <tr>\n        <td>lpt (datetime)</td>\n        <td>Last Ping Time.</td>\n    </tr>\n    <tr>\n        <td>d (time)</td>\n        <td>Duration.</td>\n    </tr>\n    <tr>\n        <td>st (str)</td>\n        <td>Session Timezone.</td>\n    </tr>\n    <tr>\n        <td>sp (str)</td>\n        <td>Session Password.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","statistics_live"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"95001e5c-5900-307c-4033-1962e2139433","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/statistics_live"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 12:51:21 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"133","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <aid>1</aid>\n        <ahfn>Owner</ahfn>\n        <ahln>Name</ahln>\n        <ahl>owner_login</ahl>\n        <sid>15</sid>\n        <sn>Session Name</sn>\n        <pfn>Guest</pfn>\n        <pln>Name</pln>\n        <pe>guest@mail.com</pe>\n        <pr>0</pr>\n        <jt>2017-06-01 12:51:21</jt>\n        <lpt>2017-06-01 12:51:21</lpt>\n        <d>00:20:30</d>\n        <st>UTC</st>\n        <sp>8hmLTtpnik</sp>\n    </item>\n    </xml>"}],"_postman_id":"1cef8f67-7b37-6498-ed0c-7fd4b35164bf"},{"name":"/admin_statistics_live","id":"dd651fb8-bca7-8b71-953e-e47d8b512895","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/admin_statistics_live","description":"<p>Get live connection statistics for all user accounts belonging to [username]. Requires admin rights. (Available in v4.3.7)</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>session_id (int)</td>\n        <td>Return stats for specific session id. Available in v5.11.0</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>breakouts (int)</td>\n        <td>Include stats for any breakouts created within parent session id (can only be used in conjuction with session_id param ). Available in v5.11.0</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>return(str)</td>\n        <td>Choose which fields should be returned by adding a list of semi-colon delimited field names eg \n<pre>.../statistics_live/days/5/return/id;aid;sid;sn</pre>\nIf not defined, a pre-defined subset of fields is returned</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>aid (int)</td>\n        <td>Account ID.</td>\n    </tr>\n    <tr>\n        <td>ahfn (str)</td>\n        <td>Account Holder First Name.</td>\n    </tr>\n    <tr>\n        <td>ahln (str)</td>\n        <td>Account Holder Last Name.</td>\n    </tr>\n    <tr>\n        <td>ahl (str)</td>\n        <td>Account Holder Login.</td>\n    </tr>\n    <tr>\n        <td>sid (int)</td>\n        <td>Session ID.</td>\n    </tr>\n    <tr>\n        <td>pbsid (int)</td>\n        <td>Parent Session ID (null if not breakout session).</td>\n    </tr>\n    <tr>\n        <td>sn (str)</td>\n        <td>Session Name.</td>\n    </tr>\n    <tr>\n        <td>pfn (str)</td>\n        <td>Participant First Name.</td>\n    </tr>\n    <tr>\n        <td>pln (str)</td>\n        <td>Participant Last Name.</td>\n    </tr>\n    <tr>\n        <td>pe (int)</td>\n        <td>Participant Email.</td>\n    </tr>\n    <tr>\n        <td>pid (int)</td>\n        <td>Participant ID.</td>\n    </tr>\n    <tr>\n        <td>pr (int)</td>\n        <td>Participant Role (available with version 4.3.6)\nPossible values:\n0 - Session owner\n1 - Speaker\n2 - Audience\n</td>\n    </tr>\n    <tr>\n        <td>jt (datetime)</td>\n        <td>Join Time.</td>\n    </tr>\n    <tr>\n        <td>lpt (datetime)</td>\n        <td>Last Ping Time.</td>\n    </tr>\n    <tr>\n        <td>d (time)</td>\n        <td>Duration.</td>\n    </tr>\n    <tr>\n        <td>st (str)</td>\n        <td>Session Timezone.</td>\n    </tr>\n    <tr>\n        <td>sp (str)</td>\n        <td>Session Password.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","admin_statistics_live"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"2b04f33b-a413-e1fa-f037-19f9ef97dcf5","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/admin_statistics_live"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 12:57:54 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"495","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>2522</id>\n        <aid>1</aid>\n        <ahfn>Owner</ahfn>\n        <ahln>Name</ahln>\n        <ahl>owner_login</ahl>\n        <sid>12</sid>\n        <sn>Session Name</sn>\n        <pfn>Guest</pfn>\n        <pln>Name</pln>\n        <pe>guest@mail.com</pe>\n        <pr>0</pr>\n        <jt>2017-06-01 12:51:21</jt>\n        <lpt>2017-06-01 12:57:51</lpt>\n        <d>00:06:30</d>\n        <st>UTC</st>\n        <sp>8hmLTtpnik</sp>\n    </item>\n</xml>"}],"_postman_id":"dd651fb8-bca7-8b71-953e-e47d8b512895"}],"id":"a4011bf7-1302-9cb4-f8f8-e98e6b20208f","description":"<p>Get usage statistics</p>\n","_postman_id":"a4011bf7-1302-9cb4-f8f8-e98e6b20208f"},{"name":"Telephony","item":[{"name":"/telephony_phonesync_server/id/[int]","id":"a1a3f065-2a85-2907-a097-d8e5696474c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phonesync_server/id/1","description":"<p>Get telephony phonesync server info by given ID#.</p>\n\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The PhoneSync Server ID number.</td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>PhoneSync Server ID number</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>PhoneSync Server friendly display name</td>\n  </tr>\n  <tr>\n    <td>url (str)</td>\n    <td>PhoneSync Server URL</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_phonesync_server","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"b5cfa0fa-66d4-72d2-9246-9faaa96cdfa1","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phonesync_server/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 15:58:39 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"429","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <name>PhoneSync Server Name</name>\n    <url>rtmp://255.255.255.255:1935</url>\n</xml>"}],"_postman_id":"a1a3f065-2a85-2907-a097-d8e5696474c8"},{"name":"/telephony_phonesync_servers","id":"50bb18a5-5c35-231a-99eb-f100af9ec245","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phonesync_servers","description":"<p>Get telephony phonesync servers list</p>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>PhoneSync Server ID number</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>PhoneSync Server friendly display name</td>\n  </tr>\n  <tr>\n    <td>url (str)</td>\n    <td>PhoneSync Server URL</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_phonesync_servers"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"df456ba8-028d-702b-e2f1-546c6cb79d1f","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phonesync_servers"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 16:08:38 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"484","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <name>PhoneSync Server Name</name>\n        <url>rtmp://255.255.255.255:1935</url>\n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"50bb18a5-5c35-231a-99eb-f100af9ec245"},{"name":"/telephony_gateway/id/[id]","id":"18b2b21e-7c73-15ba-8be1-0fbf2ba137c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_gateway/id/[int]","description":"<p>Get telephony gateway info by given ID#.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The Gateway ID number.</td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Gateway ID number</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Gateway friendly display name</td>\n  </tr>\n  <tr>\n    <td>url (str)</td>\n    <td>Gateway account name. This name must match the gateway name of the external SIP profile created on the PhoneSync server.</td>\n  </tr>\n  <tr>\n    <td>server_id (int)</td>\n    <td>PhoneSync Server ID number.</td>\n  </tr>\n  <tr>\n    <td>server_name (str)</td>\n    <td>PhoneSync Server friendly display name.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_gateway","id","[int]"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"48e0d918-3ef0-763f-cdaf-f828928abb78","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_gateway/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 16:11:30 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"139","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <name>Gateway Name</name>\n    <account>Account</account>\n    <server_id>1</server_id>\n    <server_name>PhoneSync Server Name</server_name>\n</xml>"}],"_postman_id":"18b2b21e-7c73-15ba-8be1-0fbf2ba137c7"},{"name":"/telephony_gateways","id":"73826504-23f2-e73c-6ae7-9f18b5c7a198","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_gateways","description":"<p>Get telephony gateways list.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>server_id (int)</td>\n        <td>PhoneSync Server ID number.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Gateway ID number</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Gateway friendly display name</td>\n  </tr>\n  <tr>\n    <td>url (str)</td>\n    <td>Gateway account name. This name must match the gateway name of the external SIP profile created on the PhoneSync server.</td>\n  </tr>\n  <tr>\n    <td>server_id (int)</td>\n    <td>PhoneSync Server ID number.</td>\n  </tr>\n  <tr>\n    <td>server_name (str)</td>\n    <td>PhoneSync Server friendly display name.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_gateways"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"73826504-23f2-e73c-6ae7-9f18b5c7a198"},{"name":"/telephony_bridge_api/id/[int]","id":"2d3bac13-8278-ed57-d2bb-e4cb4adbbb05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_bridge_api/id/1","description":"<p>Get telephony bridge API info by given ID number.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The telephony bridge API ID number.</td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Bridge API ID number</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Bridge API friendly display name</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_bridge_api","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"fe8b219c-e805-0f96-0b6b-a91f60dcf4f0","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_bridge_api/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 16:28:54 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"124","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <name>Bridge API Name</name>\n</xml>"}],"_postman_id":"2d3bac13-8278-ed57-d2bb-e4cb4adbbb05"},{"name":"/telephony_bridge_apis","id":"e5378d5e-afab-1612-e4c0-9d761c72af4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_bridge_apis","description":"<p>Get telephony bridge API list.</p>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Bridge API ID number</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Bridge API friendly display name</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_bridge_apis"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"52d142cb-bad8-ba6e-8b68-8ba477bc97f3","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_bridge_apis"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 16:29:35 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"95","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <name>Bridge API Name</name>\n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"e5378d5e-afab-1612-e4c0-9d761c72af4c"},{"name":"/telephony_phone_number/id/[int]","id":"5009fb79-0555-61de-4fda-e412f80277df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phone_number/id/1","description":"<p>Get telephony phone number info by given ID#.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The telephony phone number ID.</td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Telephony phone number ID.</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Telephony phone number friendly display name.</td>\n  </tr>\n  <tr>\n    <td>moderator_instructions (str)</td>\n    <td>Instructions to display to moderators.</td>\n  </tr>\n  <tr>\n    <td>participant_instructions (str)</td>\n    <td>Instructions to display to participants.</td>\n  </tr>\n  <tr>\n    <td>hide_flex_instructions (bool)</td>\n    <td>Hide Flex Instructions. Show/hide the entire phone instructions popup in session.</td>\n  </tr>\n  <tr>\n    <td>display_number (str)</td>\n    <td>Dial-in phone numbers to display to participants.</td>\n  </tr>\n  <tr>\n    <td>digit_delay (int)</td>\n    <td>The delay (in milliseconds) that is added in between multi-character DTMF elements.</td>\n  </tr>\n  <tr>\n    <td>dial_in_steps (array)</td>\n    <td>Individual dial steps used to create the dialstring that is required to access the conference on the bridge.</td>\n  </tr>  \n  <tr>\n    <td>telephony_bridge_id (int)</td>\n    <td>Telephony Bridge API IDif OnSync has been integrated with your bridge.</td>\n  </tr>\n  <tr>\n    <td>telephony_bridge_name (str)</td>\n    <td>Telephony Bridge API name.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_phone_number","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"da8bcef8-e65f-9ce7-1ea3-27df3f606dde","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phone_number/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 16:34:57 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"487","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <name>Telephony Phone Number Name</name>\n    <moderator_instructions>Moderator Instructions</moderator_instructions>\n    <participant_instructions>Participant Instructions</participant_instructions>\n    <hide_flex_instructions>0</hide_flex_instructions>\n    <display_number>+1132123123</display_number>\n    <digit_delay>500</digit_delay>\n    <dial_in_steps>\n        <item>\n            <t>pstn</t>\n            <v>+1132123123</v>\n        </item>\n        <item>\n            <t>delay</t>\n            <v>2000</v>\n        </item>\n        <item>\n            <t>pin</t>\n            <v/>\n        </item>\n        <item>\n            <t>dtmf</t>\n            <v>#</v>\n        </item>\n    </dial_in_steps>\n    <telephony_bridge_id>1</telephony_bridge_id>\n    <telephony_bridge_name>Telephony Bridge API Name</telephony_bridge_name>\n</xml>"}],"_postman_id":"5009fb79-0555-61de-4fda-e412f80277df"},{"name":"/telephony_phone_numbers","id":"45a5405b-090d-6f67-7c44-8f73ff1a403c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phone_numbers","description":"<p>Get telephony phone numbers list.</p>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Telephony phone number ID.</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Telephony phone number friendly display name.</td>\n  </tr>\n  <tr>\n    <td>moderator_instructions (str)</td>\n    <td>Instructions to display to moderators.</td>\n  </tr>\n  <tr>\n    <td>participant_instructions (str)</td>\n    <td>Instructions to display to participants.</td>\n  </tr>\n  <tr>\n    <td>hide_flex_instructions (bool)</td>\n    <td>Hide Flex Instructions. Show/hide the entire phone instructions popup in session.</td>\n  </tr>\n  <tr>\n    <td>display_number (str)</td>\n    <td>Dial-in phone numbers to display to participants.</td>\n  </tr>\n  <tr>\n    <td>digit_delay (int)</td>\n    <td>The delay (in milliseconds) that is added in between multi-character DTMF elements.</td>\n  </tr>\n  <tr>\n    <td>dial_in_steps (array)</td>\n    <td>Individual dial steps used to create the dialstring that is required to access the conference on the bridge.</td>\n  </tr>  \n  <tr>\n    <td>telephony_bridge_id (int)</td>\n    <td>Telephony Bridge API IDif OnSync has been integrated with your bridge.</td>\n  </tr>\n  <tr>\n    <td>telephony_bridge_name (str)</td>\n    <td>Telephony Bridge API name.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_phone_numbers"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"ae219b38-6bc3-7f01-cdcd-fdb13862ff47","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phone_numbers"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 16:43:29 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"156","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <name>Telephony Phone Number Name</name>\n        <moderator_instructions>Moderator Instructions</moderator_instructions>\n        <participant_instructions>Participant Instructions</participant_instructions>\n        <hide_flex_instructions>0</hide_flex_instructions>\n        <display_number>+1132123123</display_number>\n        <digit_delay>500</digit_delay>\n        <dial_in_steps>\n            <item>\n                <t>pstn</t>\n                <v>+1132123123</v>\n            </item>\n            <item>\n                <t>delay</t>\n                <v>2000</v>\n            </item>\n            <item>\n                <t>pin</t>\n                <v/>\n            </item>\n            <item>\n                <t>dtmf</t>\n                <v>#</v>\n            </item>\n        </dial_in_steps>\n        <telephony_bridge_id>1</telephony_bridge_id>\n        <telephony_bridge_name>Telephony Bridge API Name</telephony_bridge_name>\n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"45a5405b-090d-6f67-7c44-8f73ff1a403c"},{"name":"/telephony_pricing_plan/id/[int]","id":"14063066-735a-eaf2-25ef-55a5a13ca39c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_pricing_plan/id/[int]","description":"<p>Get telephony pricing plan by given ID number. Available with version 5.0.8</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The telephony pricing plan ID number.</td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Telephony pricing plan ID number</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Telephony pricing plan friendly display name</td>\n  </tr>\n  <tr>\n    <td>price (number)</td>\n    <td>The rate to charge account holders for each consumed dial-in minute.</td>\n  </tr>\n  <tr>\n    <td>currency (str)</td>\n    <td>Currency of the price (USD/EUR).</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_pricing_plan","id","[int]"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"63d9c729-b0c8-23b8-fdea-0dce78e03716","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_pricing_plan/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 16:52:14 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"140","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>2</id>\n    <name>Per Minute Pricing</name>\n    <price>0.02</price>\n    <currency>USD</currency>\n</xml>"},{"id":"e411a779-25aa-ddb0-7d7c-6435e83296be","name":"Response - Not Found ","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_pricing_plan/id/[int]"},"status":"Not Found","code":404,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 16:52:47 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"144","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><error>Telephony pricing plan is not found</error></xml>\n"}],"_postman_id":"14063066-735a-eaf2-25ef-55a5a13ca39c"},{"name":"/telephony_pricing_plans","id":"b366e98d-c050-6d2b-7527-189fa21c454a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_pricing_plans","description":"<p>Get telephony pricing plans listing. Available with version 5.0.8</p>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Telephony pricing plan ID number</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Telephony pricing plan friendly display name</td>\n  </tr>\n  <tr>\n    <td>price (number)</td>\n    <td>The rate to charge account holders for each consumed dial-in minute.</td>\n  </tr>\n  <tr>\n    <td>currency (str)</td>\n    <td>Currency of the price (USD/EUR).</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_pricing_plans"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"e6c0cbc6-8a88-f4ac-765b-3ab9f2509cfd","name":"<>","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_pricing_plans"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 16:57:38 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"132","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>2</id>\n        <name>Per Minute Pricing</name>\n        <price>0.02</price>\n        <currency>USD</currency>\n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"b366e98d-c050-6d2b-7527-189fa21c454a"},{"name":"/telephony_package/id/[int]","id":"fe8bc1a6-1d3a-eb8a-2639-5dd93b61ffd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_package/id/1","description":"<p>Get telephony included minutes pack by given ID number. Available with version 5.0.8</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The pack ID number.</td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Pack ID number</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Pack friendly display name</td>\n  </tr>\n  <tr>\n    <td>minutes (number)</td>\n    <td>The number of free minutes included per billing cycle.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_package","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"14733bf9-8b20-8f62-d8b7-53e819ae6c63","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_package/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 17:00:24 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"156","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <name>1000 free minutes</name>\n    <minutes>20</minutes>\n</xml>"}],"_postman_id":"fe8bc1a6-1d3a-eb8a-2639-5dd93b61ffd2"},{"name":"/telephony_packages","id":"c7b17052-b300-1ea3-258b-4aebcdd380ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_packages","description":"<p>Get telephony included minutes packs. Available with version 5.0.8</p>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>Pack ID number</td>\n  </tr>\n  <tr>\n    <td>name (str)</td>\n    <td>Pack friendly display name</td>\n  </tr>\n  <tr>\n    <td>minutes (number)</td>\n    <td>The number of free minutes included per billing cycle.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_packages"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"7205fe9c-77c2-de79-3d82-2a13791d8455","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_packages"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 17:06:51 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"225","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <name>1000 free minutes</name>\n        <minutes>1000</minutes>\n    </item>\n    <item>...</item><item>...</item>\n</xml>"}],"_postman_id":"c7b17052-b300-1ea3-258b-4aebcdd380ff"},{"name":"/telephony_phone_number","id":"46165869-779e-0cf1-1e2c-74b79ef54b55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"name\":\"Phone Number\",\n\t\"moderator_instructions\":\"Moderator Instructions\",\n\t\"participant_instructions\":\"Participant Instructions\",\n\t\"hide_flex_instructions\":1,\n\t\"display_number\":\"123123123\",\n\t\"digit_delay\":500,\n\t\"dial_in_steps\":[\n\t\t{\"t\":\"pstn\", \"v\":\"32343423423\"},\n\t\t{\"t\":\"delay\", \"v\":\"2000\"},\n\t\t{\"t\":\"pin\", \"v\":\"\"},\n\t\t{\"t\":\"delay\", \"v\":\"1000\"},\n\t\t{\"t\":\"dtmf\", \"v\":\"#\"},\n\t\t{\"t\":\"delay\", \"v\":\"1000\"},\n\t\t{\"t\":\"dtmf\", \"v\":\"1\"},\n\t\t{\"t\":\"extension\", \"v\":\"\"}\n\t]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phone_number","description":"<p>Add telephony phone number</p>\n\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>name (str)</td>\n        <td>Phone number friendly display name.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>moderator_instructions (str)</td>\n        <td>Instructions to display to moderators, eg \"*5 Mute/Unmute All\".</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>participant_instructions  (str)</td>\n        <td>Instructions to display to participants, eg \"*6 Mute Your Own Audio\".</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>telephony_bridge_id (int)</td>\n        <td>Select a Bridge API if OnSync has been integrated with your bridge.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>hide_flex_instructions (bool)</td>\n        <td>Hide Flex Instructions. Show/hide the entire phone instructions popup in session.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>display_number (str)</td>\n        <td>Dial-in phone numbers to display to participants eg \"USA: +1-234-567-890\".</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>dial_in_steps (array)</td>\n        <td>Individual dial steps used to create the dialstring that is required to access the conference on the bridge.\nExample:<pre>\n[{\"t\":\"pstn\",\"v\":\"32343423423\"},\n{\"t\":\"delay\",\"v\":\"2000\"},\n{\"t\":\"pin\",\"v\":\"\"},\n{\"t\":\"delay\",\"v\":\"1000\"}}</pre>\nPossible types (values of ‘t’ elements):\n- pstn (phone number)\n- pin\n- delay (numeric)\n- dtmf\n- extension (numeric)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>digit_delay (int)</td>\n        <td>The delay (in milliseconds) that is added in between multi-character DTMF elements. For example, between the individual numbers of a PIN code.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the added entity.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_phone_number"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"6022c8b0-f51b-0b58-5cc9-e1172549471c","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","type":"text","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"name\":\"Phone Number\",\n\t\"moderator_instructions\":\"Moderator Instructions\",\n\t\"participant_instructions\":\"Participant Instructions\",\n\t\"hide_flex_instructions\":1,\n\t\"display_number\":\"123123123\",\n\t\"digit_delay\":500,\n\t\"dial_in_steps\":[\n\t\t{\"t\":\"pstn\", \"v\":\"32343423423\"},\n\t\t{\"t\":\"delay\", \"v\":\"2000\"},\n\t\t{\"t\":\"pin\", \"v\":\"\"},\n\t\t{\"t\":\"delay\", \"v\":\"1000\"},\n\t\t{\"t\":\"dtmf\", \"v\":\"#\"},\n\t\t{\"t\":\"delay\", \"v\":\"1000\"},\n\t\t{\"t\":\"dtmf\", \"v\":\"1\"},\n\t\t{\"t\":\"extension\", \"v\":\"\"}\n\t]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phone_number"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Sat, 03 Jun 2017 05:51:06 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"602","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Telephony phone number added</message>\n</xml>"}],"_postman_id":"46165869-779e-0cf1-1e2c-74b79ef54b55"},{"name":"/telephony_phone_number","id":"33256b4d-dedb-b1ae-0059-270410cc5e85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phone_number","description":"<p>Update telephony phone number by given ID.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>Telephony phone number ID.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>name (str)</td>\n        <td>Phone number friendly display name.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>moderator_instructions (str)</td>\n        <td>Instructions to display to moderators, eg \"*5 Mute/Unmute All\".</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>participant_instructions  (str)</td>\n        <td>Instructions to display to participants, eg \"*6 Mute Your Own Audio\".</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>telephony_bridge_id (int)</td>\n        <td>Select a Bridge API if OnSync has been integrated with your bridge.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>hide_flex_instructions (bool)</td>\n        <td>Hide Flex Instructions. Show/hide the entire phone instructions popup in session.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>display_number (str)</td>\n        <td>Dial-in phone numbers to display to participants eg \"USA: +1-234-567-890\".</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>dial_in_steps (array)</td>\n        <td>Individual dial steps used to create the dialstring that is required to access the conference on the bridge.\nExample:<pre>\n[{\"t\":\"pstn\",\"v\":\"32343423423\"},\n{\"t\":\"delay\",\"v\":\"2000\"},\n{\"t\":\"pin\",\"v\":\"\"},\n{\"t\":\"delay\",\"v\":\"1000\"}}</pre>\nPossible types (values of ‘t’ elements):\n- pstn (phone number)\n- pin\n- delay (numeric)\n- dtmf\n- extension (numeric)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>digit_delay (int)</td>\n        <td>The delay (in milliseconds) that is added in between multi-character DTMF elements. For example, between the individual numbers of a PIN code.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the updated entity.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_phone_number"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"6536ee6c-314e-a8de-5bf2-f60920414522","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\": 1,\n\t\"name\":\"New Phone Number Name\",\n\t\"moderator_instructions\":\"New Moderator Instructions\",\n\t\"participant_instructions\":\"New Participant Instructions\",\n\t\"hide_flex_instructions\":1,\n\t\"display_number\":\"123123123\",\n\t\"digit_delay\":500,\n\t\"dial_in_steps\":[\n\t\t{\"t\":\"pstn\", \"v\":\"32343423423\"},\n\t\t{\"t\":\"delay\", \"v\":\"2000\"},\n\t\t{\"t\":\"pin\", \"v\":\"\"},\n\t\t{\"t\":\"delay\", \"v\":\"1000\"},\n\t\t{\"t\":\"dtmf\", \"v\":\"#\"},\n\t\t{\"t\":\"delay\", \"v\":\"1000\"},\n\t\t{\"t\":\"dtmf\", \"v\":\"1\"},\n\t\t{\"t\":\"extension\", \"v\":\"\"}\n\t]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_phone_number"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Sat, 03 Jun 2017 05:54:34 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"201","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>1</id><message>Telephony phone number updated</message></xml>\n"}],"_postman_id":"33256b4d-dedb-b1ae-0059-270410cc5e85"},{"name":"/user_telephony_details/id/[int]","id":"0934f58e-7c43-ded5-1142-be4a908253b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_telephony_details/id/1","description":"<p>Get user telephony settings by gived user ID number (Returns telephony settings of current user when ID is not passed - Available v 5.5.0)</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>ID# of user account.</td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>user_id (int)</td>\n    <td>Pack ID number</td>\n  </tr>\n  <tr>\n    <td>telephony_server_id (int)</td>\n    <td>PhoneSync Server ID.</td>\n  </tr>\n  <tr>\n    <td>telephony_gateway_id (int)</td>\n    <td>Telephony Gateway ID.</td>\n  </tr>\n  <tr>\n    <td>telephony_number_id (int)</td>\n    <td>Phone number ID.</td>\n  </tr>\n  <tr>\n    <td>telephony_pricing_plan_id   (int)</td>\n    <td>Per-minute Pricing ID (Available v 5.0.8).</td>\n  </tr>\n  <tr>\n    <td>telephony_package_id (int)</td>\n    <td>Included Minutes Pack ID (Available v 5.0.8).</td>\n  </tr>\n  <tr>\n    <td>minutes_used_in_month (float)</td>\n    <td>dial-in minutes used in current month (Available v 5.0.8).</td>\n  </tr>\n  <tr>\n    <td>minutes_used_total (array)</td>\n    <td>dial-in minutes usage history per month (Available v 5.0.8).</td>\n  </tr>\n  <tr>\n    <td>moderator_pin (int)</td>\n    <td>Moderators PIN.</td>\n  </tr>\n  <tr>\n    <td>participant_pin (int)</td>\n    <td>Participants PIN.</td>\n  </tr>\n  <tr>\n    <td>comserver_pin (int)</td>\n    <td>PIN user by communication server.</td>\n  </tr>\n  <tr>\n    <td>dial_in_number (str)</td>\n    <td>The telephony phone number (Available v 5.5.0).</td>\n  </tr>  \n  <tr>\n    <td>extension (int)</td>\n    <td>The extension that uniquely identifies your conference room on the phone bridge.</td>\n  </tr>  \n</table>","urlObject":{"path":["api","2","{{user_name}}","user_telephony_details","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"cfaa8798-0773-f0a8-5e2b-447622495ad3","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_telephony_details/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Sat, 03 Jun 2017 05:57:15 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"157","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <user_id>1</user_id>\n    <telephony_number_id>1</telephony_number_id>\n    <telephony_gateway_id>2</telephony_gateway_id>\n    <telephony_server_id>1</telephony_server_id>\n    <telephony_pricing_plan_id/>\n    <telephony_package_id/> \n    <moderator_pin>455257</moderator_pin>\n    <minutes_used_in_month>0</minutes_used_in_month>\n    <minutes_used_total>\n        <item>\n            <date>2017-03</date>\n            <minutes>69.43</minutes>\n        </item>\n        <item>\n            <date>2017-04</date>\n            <minutes>90</minutes>\n        </item>\n        <item>\n            <date>2017-05</date>\n            <minutes>110</minutes>\n        </item>\n    </minutes_used_total>\n    <participant_pin>581421</participant_pin>\n    <comserver_pin>423482</comserver_pin>\n    <extension/>\n</xml>"}],"_postman_id":"0934f58e-7c43-ded5-1142-be4a908253b7"},{"name":"/user_telephony_details","id":"4b77a198-a6bc-6877-376c-bdf8d1285223","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"user_id\":1,\n  \"telephony_server_id\":1,\n  \"telephony_gateway_id\":2,\n  \"telephony_number_id\":14,\n  \"moderator_pin\":4322123,\n  \"participant_pin\": 567098,\n  \"extension\": 123\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_telephony_details","description":"<p>Add user telephony settings.</p>\n<h3>Arguments</h3>\n\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>user_id (int)</td>\n    <td>User account ID number</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>telephony_server_id (int)</td>\n    <td>PhoneSync Server ID (Use GET telephony_phonesync_servers to see existing PhoneSync  servers).</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>telephony_gateway_id (int)</td>\n    <td>Telephony Gateway ID (Use GET telephony_gateways to see existing gateways).</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>telephony_number_id (int)</td>\n    <td>Phone number ID (Use GET telephony_phone_numbers to see existing telephony numbers).</td>\n  </tr>\n  <tr>\n  <td><b>Optional</b></td>\n    <td>moderator_pin (int)</td>\n    <td>Specify which PIN moderators will be required to provide to join the phone conference (optional param from v 5.0.4).</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>participant_pin (int)</td>\n    <td>Specify which PIN participants will be required to provide to join the phone conference (optional param from v 5.0.4).</td>\n  </tr>    \n  <tr>\n    <td> </td>\n    <td>telephony_pricing_plan_id   (int)</td>\n    <td>Per-minute Pricing ID, (Use GET telephony_pricing_plans to see existing telephony pricing plans). Available v 5.0.8.</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>telephony_package_id (int)</td>\n    <td>Included Minutes Pack ID (Use GET telephony_packages to see existing included minutes packs). Available v 5.0.8.</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>comserver_pin (int)</td>\n    <td>PIN user by communication server. If empty, the communication server will use the Moderator PIN.</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>extension (int)</td>\n    <td>Specify the extension that uniquely identifies your conference room on the phone bridge.</td>\n  </tr>  \n</table>\n\n\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>ID# of user account.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text message.</td>\n    </tr>    \n</table>","urlObject":{"path":["api","2","{{user_name}}","user_telephony_details"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"56193bbb-4560-2a57-3c5b-191ed2f1ae7a","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"user_id\":1,\n\t\"telephony_server_id\":1,\n\t\"telephony_gateway_id\":2,\n\t\"telephony_number_id\":14,\n\t\"moderator_pin\":4322123,\n\t\"participant_pin\": 567098,\n\t\"extension\": 123\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_telephony_details"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Sat, 03 Jun 2017 06:16:07 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"213","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>1</id><message>Telephony settings are updated</message></xml>\n"}],"_postman_id":"4b77a198-a6bc-6877-376c-bdf8d1285223"},{"name":"/user_telephony_details","id":"4e5a87e9-c990-98de-ed5a-9026343a37fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_telephony_details","description":"<p>Update user telephony settings.</p>\n<p>NOTE: this method is alias of PUT /user_telephony_details</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>user_id (int)</td>\n    <td>User account ID number</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>telephony_server_id (int)</td>\n    <td>PhoneSync Server ID (Use GET telephony_phonesync_servers to see existing PhoneSync  servers).</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>telephony_gateway_id (int)</td>\n    <td>Telephony Gateway ID (Use GET telephony_gateways to see existing gateways).</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>telephony_number_id (int)</td>\n    <td>Phone number ID (Use GET telephony_phone_numbers to see existing telephony numbers).</td>\n  </tr>\n  <tr>\n  <td><b>Optional</b></td>\n    <td>moderator_pin (int)</td>\n    <td>Specify which PIN moderators will be required to provide to join the phone conference (optional param from v 5.0.4).</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>participant_pin (int)</td>\n    <td>Specify which PIN participants will be required to provide to join the phone conference (optional param from v 5.0.4).</td>\n  </tr>  \n  <tr>\n  <td> </td>\n    <td>telephony_pricing_plan_id (int)</td>\n    <td>Per-minute Pricing ID, (Use GET telephony_pricing_plans to see existing telephony pricing plans). Available v 5.0.8.</td>\n  </tr> \n  <tr>\n  <td> </td>\n    <td>telephony_package_id (int)</td>\n    <td>Included Minutes Pack ID (Use GET telephony_packages to see existing included minutes packs). Available v 5.0.8.</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>comserver_pin (int)</td>\n    <td>PIN user by communication server. If empty, the communication server will use the Moderator PIN.</td>\n  </tr>\n  <tr>\n  <td> </td>\n    <td>extension (int)</td>\n    <td>Specify the extension that uniquely identifies your conference room on the phone bridge.</td>\n  </tr>  \n</table>\n\n\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>ID# of user account.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text message.</td>\n    </tr>    \n</table>","urlObject":{"path":["api","2","{{user_name}}","user_telephony_details"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4e5a87e9-c990-98de-ed5a-9026343a37fb"},{"name":"/user_telephony_details","id":"8ecf8070-dbef-5775-319e-e8032ae06471","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\"1\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_telephony_details","description":"<p>Delete user telephony settings.</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>user_id (int)</td>\n    <td>The id of the user account of telephony settings to be deleted. Note: the id may also be appended to the URL (.../id/xxx) instead of in the request body.</td>\n  </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>ID# of user account.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text message.</td>\n    </tr>    \n</table>","urlObject":{"path":["api","2","{{user_name}}","user_telephony_details"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"5c2b63ef-7cfd-accf-c7d3-1470664968c4","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\"1\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_telephony_details"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Sat, 03 Jun 2017 06:25:16 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"591","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>1</id><message>Telephony settings are removed</message></xml>\n"}],"_postman_id":"8ecf8070-dbef-5775-319e-e8032ae06471"},{"name":"/telephony_statistics","id":"a72a72da-7d7a-d083-3ff4-2c91b17a0e3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_statistics","description":"<p>Gets user telephony history</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>days (int)</td>\n        <td>Number of days to retrieve stats for. A high number may yield a very large return set.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>date_from (string)</td>\n        <td>Get telephony history from date (date in YYYY-MM-DD format)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>date_to (string)</td>\n        <td>Get telephony history to date (date in YYYY-MM-DD format)</td>\n    </tr>    \n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>user_id (int)</td>\n    <td>Account ID.</td>\n  </tr>\n  <tr>\n    <td>call_id (str)</td>\n    <td>Unique connection ID.</td>\n  </tr>\n  <tr>\n    <td>meeting_id (str)</td>\n    <td>Unique meeting ID.</td>\n  </tr>\n  <tr>\n    <td>access_code (str)</td>\n    <td>PIN code provided by caller.</td>\n  </tr>\n  <tr>\n    <td>address_from (int)</td>\n    <td>The phone number, SIP address, Client identifier or SIM Sid that made this call.</td>\n  </tr>\n  <tr>\n    <td>address_to (str)</td>\n    <td>The phone number, SIP address, Client identifier or SIM Sid that received this call.</td>\n  </tr>\n  <tr>\n    <td>bridge_name (str)</td>\n    <td>Bridge name.</td>\n  </tr>\n  <tr>\n    <td>callee (str)</td>\n    <td>Callee phone number.</td>\n  </tr>\n  <tr>\n    <td>caller (int)</td>\n    <td>Caller phone number.</td>\n  </tr>\n  <tr>\n    <td>custom_name (datetime)</td>\n    <td>Custom name caller name.</td>\n  </tr>\n  <tr>\n    <td>role (datetime)</td>\n    <td>Caller's role.</td>\n  </tr>\n  <tr>\n    <td>time_connect (time)</td>\n    <td>The start time of the call.</td>\n  </tr>\n  <tr>\n    <td>time_disconnect (str)</td>\n    <td>The end time of the call.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_statistics"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"efa76bd5-ba08-29a6-5de4-c2fa2af495c8","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_statistics"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Sat, 03 Jun 2017 06:26:38 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"144","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <session_id>1</session_id>\n        <user_id>1</user_id>\n        <call_id>CAc75d6e65a144e2268782580249d04ab0</call_id>\n        <meeting_id>CFd5fa74d7eb83985260292eda42a468e2</meeting_id>\n        <access_code>455257</access_code>\n        <address_from>+266696687</address_from>\n        <address_to>(917) 111-111111</address_to>\n        <bridge_name>Bridge Name</bridge_name>\n        <callee>+19177111222</callee>\n        <caller>+2661112223</caller>\n        <custom_name/>\n        <role>1</role>\n        <time_connect>2017-03-29 09:34:06</time_connect>\n        <time_disconnect>2017-03-29 09:42:07</time_disconnect>\n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"a72a72da-7d7a-d083-3ff4-2c91b17a0e3f"},{"name":"/telephony_admin_statistics","id":"b21ef041-e7b2-810f-ac7f-cd75df544655","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_admin_statistics","description":"<p>Gets telephony history. Requires admin access rights</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>days (int)</td>\n        <td>Number of days to retrieve stats for. A high number may yield a very large return set.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>date_from (string)</td>\n        <td>Get telephony history from date (date in YYYY-MM-DD format)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>date_to (string)</td>\n        <td>Get telephony history to date (date in YYYY-MM-DD format)</td>\n    </tr>    \n</table>\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>user_id (int)</td>\n    <td>Account ID.</td>\n  </tr>\n  <tr>\n    <td>call_id (str)</td>\n    <td>Unique connection ID.</td>\n  </tr>\n  <tr>\n    <td>meeting_id (str)</td>\n    <td>Unique meeting ID.</td>\n  </tr>\n  <tr>\n    <td>access_code (str)</td>\n    <td>PIN code provided by caller.</td>\n  </tr>\n  <tr>\n    <td>address_from (int)</td>\n    <td>The phone number, SIP address, Client identifier or SIM Sid that made this call.</td>\n  </tr>\n  <tr>\n    <td>address_to (str)</td>\n    <td>The phone number, SIP address, Client identifier or SIM Sid that received this call.</td>\n  </tr>\n  <tr>\n    <td>bridge_name (str)</td>\n    <td>Bridge name.</td>\n  </tr>\n  <tr>\n    <td>callee (str)</td>\n    <td>Callee phone number.</td>\n  </tr>\n  <tr>\n    <td>caller (int)</td>\n    <td>Caller phone number.</td>\n  </tr>\n  <tr>\n    <td>custom_name (datetime)</td>\n    <td>Custom name caller name.</td>\n  </tr>\n  <tr>\n    <td>role (datetime)</td>\n    <td>Caller's role.</td>\n  </tr>\n  <tr>\n    <td>time_connect (time)</td>\n    <td>The start time of the call.</td>\n  </tr>\n  <tr>\n    <td>time_disconnect (str)</td>\n    <td>The end time of the call.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","telephony_admin_statistics"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"9216766b-da35-ad81-9222-df96e3cd3de6","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/telephony_admin_statistics"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Sat, 03 Jun 2017 06:48:24 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"808","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <session_id>236</session_id>\n        <user_id>90</user_id>\n        <call_id>CA89be11ff981df9599a6070ccb5a2f1ea</call_id>\n        <meeting_id>CFddec60607139a3cd58d4cc95013aaeea</meeting_id>\n        <access_code>398234</access_code>\n        <address_from>(737) 874-1111222</address_from>\n        <address_to>(917) 746-22233</address_to>\n        <bridge_name>Bridge Name</bridge_name>\n        <callee>+19171117333</callee>\n        <caller>+17322222833</caller>\n        <custom_name/>\n        <role>2</role>\n        <time_connect>2017-05-15 12:09:15</time_connect>\n        <time_disconnect>2017-05-15 12:10:48</time_disconnect>\n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"b21ef041-e7b2-810f-ac7f-cd75df544655"}],"id":"00da345d-635b-42f1-fced-5b4336d00a95","description":"<p>Manage telephony settings (available with v 4.4.4).</p>\n<p><b>Requires admin access rights and freeswitch VOIP implementation (VOIP_BRIDGE = 2).</b></p>","_postman_id":"00da345d-635b-42f1-fced-5b4336d00a95"},{"name":"Users","item":[{"name":"/user/id/[int]","id":"49d1e599-7c77-3f1b-a028-1c9d1831b26a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user/id/1","description":"<p>Get user account info by given ID#.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The user account ID number.</td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>User account ID number.</td>\n  </tr>\n  <tr>\n    <td>login (str)</td>\n    <td>The username of the user, used to login.</td>\n  </tr>\n  <tr>\n    <td>email (str)</td>\n    <td>The email address of the user.</td>\n  </tr>\n  <tr>\n    <td>first_name (int)</td>\n    <td>The first name of the user.</td>\n  </tr>\n  <tr>\n    <td>last_name (str)</td>\n    <td>The last name of the user.</td>\n  </tr>\n  <tr>\n    <td>company (str)</td>\n    <td>The company of the user.</td>\n  </tr>\n  <tr>\n    <td>country (str)</td>\n    <td>The user’s country of residence.</td>\n  </tr>\n  <tr>\n    <td>timezone (str)</td>\n    <td>The timezone of the user. See section “Timezones” below for more.</td>\n  </tr>\n  <tr>\n    <td>afid_key (str)</td>\n    <td>The user’s affiliate key, pass this to signup pages to associate any new user signups with the user owning the afid_key.</td>\n  </tr>\n  <tr>\n    <td>language (str)</td>\n    <td>The language chosen by the user.</td>\n  </tr>\n  <tr>\n    <td>last_login (datetime)</td>\n    <td>The datetime string the user logged in the last time.</td>\n  </tr>\n  <tr>\n    <td>paid_signup_date (datetime)</td>\n    <td>The datetime string when the user signed up to a paid service plan .</td>\n  </tr>\n  <tr>\n    <td>activated (bool)</td>\n    <td>Boolean whether the user account is enabled or not.</td>\n  </tr>\n  <tr>\n    <td>parent_id (int)</td>\n    <td>The ID of the user to which the current user belongs. (Available in v4.2.3).</td>\n  </tr>\n  <tr>\n    <td>is_guest(bool)</td>\n    <td>Boolean whether the user account is a guest account or a registered account.</td>\n  </tr>\n  <tr>\n    <td>expiry_date (date)</td>\n    <td>The date when the account expires.</td>\n  </tr>\n  <tr>\n    <td>role (str)</td>\n    <td>User role.</td>\n  </tr>\n  <tr>\n    <td>api_enabled (bool)</td>\n    <td>Boolean whether the user may use the API or not.</td>\n  </tr>\n  <tr>\n    <td>password_protect_fast_session (bool)</td>\n    <td>Password protect MeetNow meetings (available with v 5.1.5).</td>\n  </tr>  \n  <tr>\n    <td>sim_bcaster (int)</td>\n    <td>Limit simultaneous broadcasters in sessions belonging to this user. (available with v 4.2.8).</td>\n  </tr>\n  <tr>\n    <td>session_user_limit (int)</td>\n    <td>The user connection limit per session. (available with v 4.2.8).</td>\n  </tr>\n  <tr>\n    <td>account_user_limit (int)</td>\n    <td>The simultaneous user connection limit across all sessions in this account. (available with v 4.2.8).</td>\n  </tr>\n  <tr>        \n    <td>simultaneous_speakers_limit (int)</td>\n    <td>Number of speakers in any session of this account who may join at the same time (available with v 5.11.0).</td>\n  </tr>\n  <tr>\n    <td>company_sim_bcaster (int)</td>\n    <td>Number of broadcasters that can broadcast at the same time across all account holders in this company. (available with v 4.2.8). Please check GET company_user_limits method.</td>\n  </tr>\n  <tr>\n    <td>company_session_user_limit (int)</td>\n    <td>Number of sessions that can run at the same time in this company. (available with v 4.2.8). Please check GET company_user_limits method.</td>\n  </tr>\n  <tr>\n    <td>company_account_user_limit (int)</td>\n    <td>Number of attendees that can be in sessions at the same time across all account holders in this company. (available with v 4.2.8). Please check GET company_user_limits method.</td>\n  </tr>\n  <tr>\n    <td>rec_limit (int)</td>\n    <td>Recording limit to this user. \nSet to -1 for unlimited, set to empty string to use the parent product value.\n(available with v 4.2.6).</td>\n  </tr>\n  <tr>\n    <td>ml_limit (int)</td>\n    <td>Total media library size limit (KB). \nSet to -1 for unlimited, set to empty string to use the parent product value. (available with v 4.2.6).</td>\n  </tr>\n  <tr>\n    <td>ml_used (int)</td>\n    <td>Media library size used (KB). \n(available with v 4.3.5).</td>\n  </tr>\n  <tr>\n    <td>user_service_plan_id (int)</td>\n    <td>ID# of the current user service plan (available with v 4.3.1).</td>\n  </tr>\n  <tr>\n    <td>parent_service_plan_id (int)</td>\n    <td>ID# of the current user service plan template (available with v 4.3.1).</td>\n  </tr>\n  <tr>\n    <td>serviceplan_name (str)</td>\n    <td>Custom name for user service plan. (available with v 4.3.1).</td>\n  </tr>\n  <tr>\n    <td>serviceplan_description (str)</td>\n    <td>The service plan description. (available with v 4.3.1).</td>\n  </tr>\n  <tr>\n    <td>modify_branding_enabled (bool)</td>\n    <td>Allow account holders to modify branding. (available with v 4.3.1).</td>\n  </tr>\n  <tr>\n    <td>modify_colors_enabled (bool)</td>\n    <td>Allow account holders to modify theme colors. Available when new flat-ui theme is enabled (available with v 4.4.5).</td>\n  </tr>\n  <tr>\n    <td>advanced_sessions_enabled (bool)</td>\n    <td>Enable advanced scheduling features. (available with v 4.3.1).</td>\n  </tr>\n  <tr>\n    <td>mobile_access_enabled (bool)</td>\n    <td>Enable access from mobile applications. (available with v 4.3.1).</td>\n  </tr>\n  <tr>\n    <td>modify_permissions_enabled (bool)</td>\n    <td>Allow account holders to modify session permissions (available with v 4.4.4).</td>\n  </tr>\n  <tr>\n    <td>session_registration_enabled (bool)</td>\n    <td>Allow account holders to enable registration and create an event page (Applies to HTML5 only, available with v 5.9.0).</td>\n  </tr>  \n  <tr>\n    <td>webrtc_debug_enabled (bool)</td>\n    <td>Enable frontend console logs in this account for debugging (available with v 5.7.0).</td>\n  </tr>  \n    <tr>\n       <td>video_fit_to_screen (int)</td>\n       <td>Default video display settings (available with v 5.6).\n       Values:\n       - 0 - Display video in original aspect ratio\n       - 1 - Fit video to fill screen\n       </td>\n    </tr>\n  <tr>\n    <td>voip_available_session_audio (str)</td>\n    <td>Available session audio options (available with v 5.0.5). Values: \n- phone (Using external phone audio, users will be required to dial-in via the telephone)\n- hybrid (Users will see a pop-up screen where they are given the choice to listen via their speakers or to dial-in via the telephone)\n- voip (Using flash-based internal audio).</td>\n  </tr>\n    <tr>\n       <td>meeting_duration_limit (int)</td>\n       <td>Meeting duration limit in minutes. Users will be shown a warning 2 minutes before the meeting duration is reached and the session is ended (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td>meeting_duration_limit_enabled (bool)</td>\n       <td>Enabled/disabled meeting duration limit (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td>meeting_duration_limit_redirect (string)</td>\n       <td>When the duration is reached, redirect users to this URL (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td>unlimited_1_to_1_meetings (bool)</td>\n       <td>Enabled/disabled unlimited 1 to 1 meetings (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td>allow_max_one_content_opened (bool)</td>\n       <td>Allow maximum one content opened. Thumbnail and Tiled modes will allow opening maximum one piece of content in the Stage. Fullscreen mode will not display content thumbnails to quickly access the previously open content. (available with v 5.30.0).</td>\n    </tr>\n    <tr>\n       <td>e2ee_support_enabled (bool)</td>\n       <td>Enable/disable E2EE support (available with v 5.38.0).</td>\n    </tr>\n    <tr>\n       <td>enable_bitrate_limit (bool)</td>\n       <td>Enable Total Room Publisher Bitrate Limit (TRPBL) (available with v 5.7).</td>\n    </tr>    \n    <tr>\n       <td>min_bitrate_cap (int)</td>\n       <td>HD OFF max bitrate. The max bitrate of the broadcaster's video (in kbit, eg 128), when the HD toggle is in the left OFF position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td>min_bitrate_cap (int)</td>\n       <td>HD ON max bitrate. The max bitrate of the broadcaster's video (in kbit, eg 512), when the HD toggle is in the right ON position. (available with v 5.7).</td>\n    </tr>   \n    <tr>\n       <td>max_resolution (int)</td>\n       <td>Max resolution. The max resolution a broadcaster's video may reach (vertical pixel count, eg 720). Actual resolution will depend on available bandwidth, CPU, number of broadcasters and TRPBL. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td>min_bitrate_cap_screen_share (int)</td>\n       <td>Screen share HD OFF max bitrate. The max bitrate of the broadcaster's screen share (in kbit, eg 256), when the HD toggle is in the left OFF position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td>max_bitrate_cap_screen_share (int)</td>\n       <td>Screen share HD ON max bitrate. The max bitrate of the broadcaster's screen share (in kbit, eg 1024), when the HD toggle is in the right ON position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td>max_resolution_screen_share (int)</td>\n       <td>Screen share Max resolution. The max resolution a broadcaster's screen share may reach (vertical pixel count, eg 1080). Actual resolution will depend on available bandwidth, CPU, number of broadcasters and TRPBL. (available with v 5.7).</td>\n    </tr> \n  <tr>\n    <td>available_roles (array)</td>\n    <td>Available roles. Possible values:\n- <b>1</b> - Speakers\n- <b>2</b> - Audience\n- <b>3</b> - Custom role\n (available with v 5.25.0).</td>\n  </tr>\n  <tr>\n    <td>custom_role_name (string)</td>\n    <td>Name of the custom role\n (available with v 5.25.0).</td>\n  </tr>   \n  <tr>\n    <td>components (array)</td>\n    <td>Components Available in Session (available with v 4.4.4).</td>\n  </tr>\n  <tr>\n    <td>permissions (array)</td>\n    <td>Permissions Available in Session (available with v 4.4.4).</td>\n  </tr>\n  <tr>\n    <td>menu_buttons (array)</td>\n    <td>Menu Buttons Available in Session.</td>\n  </tr>\n  <tr>\n    <td>custom_data (array)</td>\n    <td>An array of objects containing custom fields in the form of custom1, custom2 etc.</td>\n  </tr>\n  <tr>\n    <td>profile_pic_url (str)</td>\n    <td>URL to user profile image (available with v 4.3.4).</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","user","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"d6c68882-b51f-3657-97b7-24af6bdc9641","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy","warning":""},{"key":"Response","value":"","warning":""}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Mon, 05 Jun 2017 15:09:36 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"625","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <login>login</login>\n    <email>email@mail.com</email>\n    <first_name>First Name</first_name>\n    <last_name>Last Name</last_name>\n    <role>50</role>\n    <company/>\n    <country>US</country>\n    <language>en-US</language>\n    <timezone>UTC</timezone>\n    <last_login>2017-06-05 14:11:08</last_login>\n    <activated>1</activated>\n    <is_guest>0</is_guest>\n    <parent_id/>\n    <afid_key/>\n    <expiry_date/>\n    <custom_data/>\n    <paid_signup_date/>\n    <profile_pic_url>http://domain.com/storage/users/1/myprofile/1.jpg</profile_pic_url>\n    <ml_used>10480</ml_used>\n    <ml_limit/>\n    <rec_limit/>\n    <sim_bcaster/>\n    <session_user_limit/>\n    <account_user_limit>1000</account_user_limit>\n    <user_service_plan_id>2</user_service_plan_id>\n    <parent_service_plan_id>1</parent_service_plan_id>\n    <serviceplan_name>Service Plan Template</serviceplan_name>\n    <serviceplan_description>Service Plan Description</serviceplan_description>\n    <modify_branding_enabled>1</modify_branding_enabled>\n    <modify_colors_enabled>1</modify_colors_enabled>\n    <advanced_sessions_enabled>1</advanced_sessions_enabled>\n    <mobile_access_enabled>1</mobile_access_enabled>\n    <api_enabled>1</api_enabled>\n    <modify_permissions_enabled>0</modify_permissions_enabled>\n    <voip_session_audio>voip</voip_session_audio>\n    <voip_available_session_audio>\n        <item>hybrid</item>\n        <item>voip</item>\n        <item>phone</item>\n    </voip_available_session_audio>\n    <menu_buttons>\n        <options>1</options>\n        <camera>1</camera>\n        <microphone>1</microphone>\n        <medialibrary>1</medialibrary>\n        <inviteparticipants>1</inviteparticipants>\n        <screensharing>1</screensharing>\n        <recording>1</recording>\n        <notifications>1</notifications>\n        <lobby>1</lobby>\n        <breakoutrooms>1</breakoutrooms>\n    </menu_buttons>\n    <components>\n        <chat>1</chat>\n        <notes>1</notes>\n        <poll>1</poll>\n        <qa>1</qa>\n        <caption_stream>0</caption_stream>\n    </components>\n    <permissions>\n        <allow_change_layout>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_change_layout>\n        <allow_invite_users>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_invite_users>\n        <allow_end_session>\n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_end_session>\n        <allow_edit_notes>        \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_notes>\n        <allow_manage_roles>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_manage_roles>\n        <allow_recording>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_recording>\n        <allow_copy_embed_code>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_copy_embed_code>\n        <allow_edit_poll>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_poll>\n        <allow_all_chat>\n            <moderator>1</moderator>\n            <participant>1</participant>\n        </allow_all_chat>\n        <allow_private_chat>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_private_chat>\n        <allow_public_moderators_chat>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_public_moderators_chat>\n        <allow_clear_chat>\n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_clear_chat>\n        <allow_free_publish>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_free_publish>\n        <allow_stop_broadcasts>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_stop_broadcasts>\n        <allow_content_sharing>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_content_sharing>\n        <allow_content_control>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_content_control>\n        <allow_local_screen_share>\n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_local_screen_share>\n        <allow_activate_whiteboard>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_activate_whiteboard>\n        <allow_edit_whiteboard>            \n            <moderator>1</moderator>\n            <participant>0</participant>            \n        </allow_edit_whiteboard>\n        <allow_close_tab>            \n            <moderator>1</moderator>\n            <participant>0</participant>\n        </allow_close_tab>\n        <enable_media_library>\n            <moderator>1</moderator>\n            <participant>1</participant>\n        </enable_media_library>\n    </permissions>\n</xml>"}],"_postman_id":"49d1e599-7c77-3f1b-a028-1c9d1831b26a"},{"name":"/user_downgrade/id/[int]","id":"074881e4-2bf9-4946-80e1-33d39331449b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_downgrade/id/1","description":"<p>\nDowngrade company user account to default service plan, including company child accounts.\nAvailable for admins only. (available with v 5.7.0)\n</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The user account ID number.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>service_plan_id (int)</td>\n        <td>Downgrade to service plan ID number. User should be downgraded to default service plan when this argument is empty </td>\n    </tr>    \n</table>","urlObject":{"path":["api","2","{{user_name}}","user_downgrade","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"074881e4-2bf9-4946-80e1-33d39331449b"},{"name":"/users","id":"35b83f22-93af-795f-682a-35ddb93087f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/users","description":"<p>Get list of user accounts.</p>\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>count (int)</td>\n        <td>Specify number of returned results. Default is 100.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>offset (int)</td>\n        <td>Specify to move the cursor through the recordset. Default is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>order (str)</td>\n        <td>Return results in ascending or descending order of recording ID. Default is asc.<br /> Accepted values: asc, desc\n        </td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\nSee <i>GET /user/id/[int]</i>","urlObject":{"path":["api","2","{{user_name}}","users"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"fa794f4d-98ad-7067-8d37-e09ced44167b","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Mon, 05 Jun 2017 15:28:19 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"1042","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>1</id>\n        <login>login</login>\n        <email>email@mail.com</email>\n        <first_name>First Name</first_name>\n        <last_name>Last Name</last_name>\n        <role>50</role>\n        <company/>\n        <country>US</country>\n        <language>en-US</language>\n        <timezone>UTC</timezone>\n        <last_login>2017-06-05 14:11:08</last_login>\n        <activated>1</activated>\n        <is_guest>0</is_guest>\n        <parent_id/>\n        <afid_key/>\n        <expiry_date/>\n        <custom_data/>\n        <paid_signup_date/>\n        <profile_pic_url>http://domain.com/storage/users/1/myprofile/1.jpg</profile_pic_url>\n        <ml_used>2778</ml_used>\n        <ml_limit/>\n        <rec_limit/>\n        <sim_bcaster/>\n        <session_user_limit/>\n        <account_user_limit>1000</account_user_limit>\n        <user_service_plan_id>2</user_service_plan_id>\n        <parent_service_plan_id>1</parent_service_plan_id>\n        <serviceplan_name>Service Plan Template</serviceplan_name>\n        <serviceplan_description/>\n        <modify_branding_enabled>1</modify_branding_enabled>\n        <modify_colors_enabled>1</modify_colors_enabled>\n        <advanced_sessions_enabled>1</advanced_sessions_enabled>\n        <mobile_access_enabled>1</mobile_access_enabled>\n        <api_enabled>1</api_enabled>\n        <modify_permissions_enabled>0</modify_permissions_enabled>\n        <voip_session_audio>voip</voip_session_audio>\n        <voip_available_session_audio>\n            <item>hybrid</item>\n            <item>voip</item>\n            <item>phone</item>\n        </voip_available_session_audio>\n        <menu_buttons>\n            <options>1</options>\n            <camera>1</camera>\n            <microphone>1</microphone>\n            <medialibrary>1</medialibrary>\n            <inviteparticipants>1</inviteparticipants>\n            <screensharing>1</screensharing>\n            <recording>1</recording>\n            <notifications>1</notifications>\n            <lobby>1</lobby>\n            <breakoutrooms>1</breakoutrooms>\n        </menu_buttons>\n        <components>\n            <chat>1</chat>\n            <notes>1</notes>\n            <poll>1</poll>\n            <qa>1</qa>\n            <caption_stream>0</caption_stream>\n        </components>\n        <permissions>\n            <allow_change_layout>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_change_layout>\n            <allow_invite_users>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_invite_users>\n            <allow_end_session>\n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_end_session>\n            <allow_edit_notes>        \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_notes>\n            <allow_manage_roles>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_manage_roles>\n            <allow_recording>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_recording>\n            <allow_copy_embed_code>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_copy_embed_code>\n            <allow_edit_poll>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_poll>\n            <allow_all_chat>\n                <moderator>1</moderator>\n                <participant>1</participant>\n            </allow_all_chat>\n            <allow_private_chat>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_private_chat>\n            <allow_public_moderators_chat>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_public_moderators_chat>\n            <allow_clear_chat>\n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_clear_chat>\n            <allow_free_publish>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_free_publish>\n            <allow_stop_broadcasts>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_stop_broadcasts>\n            <allow_content_sharing>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_content_sharing>\n            <allow_content_control>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_content_control>\n            <allow_local_screen_share>\n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_local_screen_share>\n            <allow_activate_whiteboard>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_activate_whiteboard>\n            <allow_edit_whiteboard>            \n                <moderator>1</moderator>\n                <participant>0</participant>            \n            </allow_edit_whiteboard>\n            <allow_close_tab>            \n                <moderator>1</moderator>\n                <participant>0</participant>\n            </allow_close_tab>\n            <enable_media_library>\n                <moderator>1</moderator>\n                <participant>1</participant>\n            </enable_media_library>\n        </permissions>\n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"35b83f22-93af-795f-682a-35ddb93087f9"},{"name":"/user_id","id":"51dae80a-82fb-7f21-0746-6614e4155a3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_id/login/admin","description":"<p>Get one or many user id(s) by given email address or account username</p>\n\n<h3>Arguments</h3>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>email (str) or login (str)</td>\n        <td>Email address or username (login) of specific user.</td>\n    </tr>\n</table>\n<h3>Return Arguments</h3>\n\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>The id of this resource (session id).</td>\n    </tr>\n    <tr>\n        <td>activated (bool)</td>\n        <td>Boolean whether the user account is enabled or not.</td>\n    </tr>\n    <tr>\n        <td>is_guest(bool)</td>\n        <td>Boolean whether the user account is guest or not.</td>\n    </tr>\n    <tr>\n        <td>deleted (bool)</td>\n        <td>Boolean whether the user account is deleted or not.</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","user_id","login","admin"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"8f3692d7-3f2f-4840-5625-a1f22596b0cc","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_id/login/[string]"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Mon, 05 Jun 2017 15:50:08 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"599","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><item><id>1</id><deleted>0</deleted><activated>1</activated><is_guest>0</is_guest></item></xml>\n"}],"_postman_id":"51dae80a-82fb-7f21-0746-6614e4155a3c"},{"name":"/user","id":"74548185-98e3-38be-fce5-4f8331ffb8e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"login\":\"some-username\",\n  \"password\":\"some-password\",\n  \"email\":\"email@domain.com\",\n  \"first_name\":\"First Name\",\n  \"last_name\":\"Last Name\",\n  \"company\":\"Company Inc.\",\n  \"city\":\"Some City\",\n  \"phone\":\"123 456 789\",\n  \"industry\":\"IT Services\",\n  \"birthday\":\"1976-09-10 12:00:00\",\n  \"api_enabled\":\"1\",\n  \"service_plan_id\":\"4\",\n  \"custom_data\": [{\n    \"custom1\":\"first custom value\", \n    \"custom2\":\"second custom value\", \n    \"custom3\":\"third custom value\",\n    \"custom4\":\"fourth custom value\"\n  }]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user","description":"<p>Create a new user. Requires admin access rights.</p>\n<h3>Arguments</h3>\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>login (int)</td>\n        <td>The username of the user, used to login.</td>\n    </tr>\n    <tr>\n        <td><b> </b></td>\n        <td>password (str)</td>\n        <td>The password for this user’s account.</td>\n    </tr>\n    <tr>\n        <td><b> </b></td>\n        <td>email (str)</td>\n        <td>The email address of the user.</td>\n    </tr>\n    <tr>\n        <td><b> </b></td>\n        <td>first_name (str)</td>\n        <td>The first name of the user.</td>\n    </tr>\n    <tr>\n        <td><b> </b></td>\n        <td>last_name (str)</td>\n        <td>The last name of the user.</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td>company (str)</td>\n        <td>The company of the user.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>country (str)</td>\n        <td>The country of the user.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>tax_number (str)</td>\n        <td>The user company’s tax number.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>afid_key (str)</td>\n        <td>The user’s affiliate key, pass this to signup pages to associate any new user signups with the user owning the afid_key. (Available in v4.2.3).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>role (int)</td>\n        <td>User role. (Available in v4.2.6)\n10 = Moderator\n20 = Affiliate\n30 = Distributor\n40 = Admin\nFrom v4.2.8: \n10 = Moderator\n20 = Company\n30 = Affiliate\n40 = Distributor\n50 = Admin.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>language (str)</td>\n        <td>The language chosen by the user.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>address (str)</td>\n        <td>The address of the user.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>city (str)</td>\n        <td>The city the user resides in.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>state (str)</td>\n        <td>The state the user resides in.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>postcode (str)</td>\n        <td>The post or zipcode of the user.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>phone (str)</td>\n        <td>The phone number of the user.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>industry (str)</td>\n        <td>The industry of the user.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>birthday (datetime)</td>\n        <td>The birthday of the user in datetime format eg 1976-10-09 09:00:00.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>activated (bool)</td>\n        <td>Whether the user account is activated. \nBy default this is 1.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>parent_id (int)</td>\n        <td>The ID of the user to which the current user belongs. (Available in v4.2.3).</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>service_plan_id (int)</td>\n        <td>This controls various limits and parameters applied to the user. If empty, the default service plan is used.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>expiry_date (datetime)</td>\n        <td>Set the day and time you want access to this account to expire. All data will be retained after that time, but access will be prevented. Typically used in conjunction with a payment app. Sample value: 2011-12-24 09:00:00.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>paid_signup_date (datetime)</td>\n        <td>Set the day and time this user converted from a free trial to a paying customer.</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>api_enabled (bool)</td>\n        <td>Whether the user may access the API or not. By default this is 0.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>password_protect_fast_session (bool)</td>\n        <td>Password protect MeetNow meetings (available with v 5.1.5).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>sim_bcaster (int)</td>\n        <td>Limit simultaneous broadcasters in sessions belonging to this user. \nSet to -1 for unlimited, set to 0 to disable audio &amp; video broadcasting, set to empty string to use the parent product value.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_user_limit (int)</td>\n        <td>The user connection limit per session. \nSet to -1 for unlimited, set to empty string to use the parent product value.\n(available with v 4.2.6)\n</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>account_user_limit (int)</td>\n        <td>The simultaneous user connection limit across all sessions in this account.\nSet to -1 for unlimited, set to empty string to use the parent product value.\n(available with v 4.2.8)\n</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>simultaneous_speakers_limit (int)</td>\n        <td>Number of speakers in any session of this account who may join at the same time (available with v 5.11.0).</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>company_sim_bcaster (int)</td>\n        <td>Number of broadcasters that can broadcast at the same time across all account holders in this company.\nSet to -1 for unlimited, set to empty string to use the parent product value.\n(available with v 4.2.8). Please check POST/PUT company_user_limits method.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>company_session_user_limit (int)</td>\n        <td>Number of sessions that can run at the same time in this company.\nSet to -1 for unlimited, set to empty string to use the parent product value.\n(available with v 4.2.8). Please check POST/PUT company_user_limits method.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>company_account_user_limit (int)</td>\n        <td>Number of attendees that can be in sessions at the same time across all account holders in this company.\nSet to -1 for unlimited, set to empty string to use the parent product value.\n(available with v 4.2.8). Please check POST/PUT company_user_limits method.</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>rec_limit (int)</td>\n        <td>Recording limit to this user. \nSet to -1 for unlimited, set to empty string to use the parent product value.\n(available with v 4.2.6)\n</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>ml_limit (int)</td>\n        <td>Total media library size limit (KB). \nSet to -1 for unlimited, set to empty string to use the parent product value. (available with v 4.2.6)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>serviceplan_name (str)</td>\n        <td>Custom name for user service plan. (available with v 4.3.1)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>serviceplan_description (str)</td>\n        <td>Define a brief description for user service plan. (available with v 4.3.1)</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>modify_branding_enabled (bool)</td>\n        <td>Allow account holders to modify branding. (available with v 4.3.1)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>modify_colors_enabled (bool)</td>\n        <td>Allow account holders to modify theme colors. Available when new flat-ui theme is enabled (available with v 4.4.5)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>advanced_sessions_enabled (bool)</td>\n        <td>Enable advanced scheduling features. (available with v 4.3.1)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>mobile_access_enabled (bool)</td>\n        <td>Enable access from mobile applications. (available with v 4.3.1)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>modify_permissions_enabled (bool)</td>\n        <td>Allow account holders to modify session permissions (available with v 4.4.4)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_registration_enabled (bool)</td>\n        <td>Allow account holders to enable registration and create an event page (Applies to HTML5 only, available with v 5.9.0).</td>\n    </tr>    \n    <tr>\n        <td> </td>    \n        <td>webrtc_debug_enabled (bool)</td>\n        <td>Enable frontend console logs in this account for debugging (available with v 5.7.0).</td>\n    </tr>      \n    <tr>\n       <td> </td>\n       <td>video_fit_to_screen (int)</td>\n       <td>Default video display settings (available with v 5.6).\n       Values:\n       - <b>0</b> - Display video in original aspect ratio\n       - <b>1</b> - Fit video to fill screen\n       </td>\n    </tr>    \n    <tr>\n       <td> </td>\n       <td>meeting_duration_limit (int)</td>\n       <td>Set meeting duration limit in minutes. Users will be shown a warning 2 minutes before the meeting duration is reached and the session is ended  (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>meeting_duration_limit_enabled (bool)</td>\n       <td>Enable/disable meeting duration limit (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>meeting_duration_limit_redirect (string)</td>\n       <td>Choose whether to redirect users to a custom url or to the URLs they have defined on their branding screens. Set <b>branding_url</b> to use URLs from branding settings (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>unlimited_1_to_1_meetings (bool)</td>\n       <td>Enable/disable unlimited 1 to 1 meetings. Don't apply a meeting duration when 2 people are in a session. The time limitation will start when a third person enters or a recording is started. (available with v 5.6).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>allow_max_one_content_opened (bool)</td>\n       <td>Allow maximum one content opened. Thumbnail and Tiled modes will allow opening maximum one piece of content in the Stage. Fullscreen mode will not display content thumbnails to quickly access the previously open content. (available with v 5.30.0).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>e2ee_support_enabled (bool)</td>\n       <td>Enable/disable E2EE support (available with v 5.38.0).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>enable_bitrate_limit (bool)</td>\n       <td>Enable Total Room Publisher Bitrate Limit (TRPBL) (available with v 5.7).</td>\n    </tr>     \n    <tr>\n       <td> </td>\n       <td>min_bitrate_cap (int)</td>\n       <td>HD OFF max bitrate. The max bitrate of the broadcaster's video (in kbit, eg 128), when the HD toggle is in the left OFF position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>min_bitrate_cap (int)</td>\n       <td>HD ON max bitrate. The max bitrate of the broadcaster's video (in kbit, eg 512), when the HD toggle is in the right ON position. (available with v 5.7).</td>\n    </tr>   \n    <tr>\n       <td> </td>\n       <td>max_resolution (int)</td>\n       <td>Max resolution. The max resolution a broadcaster's video may reach (vertical pixel count, eg 720). Actual resolution will depend on available bandwidth, CPU, number of broadcasters and TRPBL. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>min_bitrate_cap_screen_share (int)</td>\n       <td>Screen share HD OFF max bitrate. The max bitrate of the broadcaster's screen share (in kbit, eg 256), when the HD toggle is in the left OFF position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>max_bitrate_cap_screen_share (int)</td>\n       <td>Screen share HD ON max bitrate. The max bitrate of the broadcaster's screen share (in kbit, eg 1024), when the HD toggle is in the right ON position. (available with v 5.7).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>max_resolution_screen_share (int)</td>\n       <td>Screen share Max resolution. The max resolution a broadcaster's screen share may reach (vertical pixel count, eg 1080). Actual resolution will depend on available bandwidth, CPU, number of broadcasters and TRPBL. (available with v 5.7).</td>\n    </tr>\n  <tr>\n    <td> </td>\n    <td>available_roles (array)</td>\n    <td>Available roles. Possible values:\n- <b>1</b> - Speakers\n- <b>2</b> - Audience\n- <b>3</b> - Custom role\n (available with v 5.25.0).</td>\n  </tr>\n  <tr>\n    <td> </td>\n    <td>custom_role_name (string)</td>\n    <td>Name of the custom role\n (available with v 5.25.0).</td>\n  </tr>    \n    <tr>\n        <td> </td>\n        <td>menu_buttons (array)</td>\n        <td>Menu Buttons Available in Session. Set one of allowed values to TRUE to show menu button, or to FALSE to hide that one.\nAllowed values:\n - screensharing (bool) - Show/Hide “Screen Sharing” item\n - inviteparticipants (bool) - Show/Hide “Invite Participants” item\n - medialibrary (bool) - Show/Hide “Media Library” item\n - camera (bool) - Show/Hide “Camera” item\n - options (bool) - Show/Hide “Options” item\n - recording (bool) - Show/Hide “Recording” item\n - notifications (bool) - Show/Hide “Notifications” item\n - microphone (bool) - Show/Hide  “Microphone” item\n(available with v 4.3.1)\n- endsession- Show/Hide \"End Session\" item (available with v 5.33.0)\n</td>\n    </tr>    \n    <tr>\n        <td> </td>\n        <td>components (array)</td>\n        <td>Components Available in Session (available with v 4.4.4). Set one of allowed values to TRUE to show menu button, or to FALSE to hide that one.\nAllowed values:\n - chat (bool) - Show/Hide “Chat” component\n - notes (bool) - Show/Hide “Notes” component\n - poll (bool) - Show/Hide  “Poll” component\n - qa (bool) - Show/Hide  “Q &amp; A” component\n - caption_stream - Show/Hide “Caption Stream” component (available with v 5.0.4 when caption stream feature is enabled on the server level)\n - live_streaming - Show/Hide \"Live Streaming\" component\n - forced_layouts - Show/Hide \"Forced layouts\" component\n- whiteboard - Show/Hide \"Whiteboard\" component (available with v 5.33.0)\n</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>permissions (array)</td>\n        <td>Permissions Available in Session (available with v 4.4.4). Use following format to set permissions:\n<pre>\n{\"allow_change_layout\": {\n    \"moderator\": \"1\",\n    \"participant\": \"0\"\n},\n\"allow_invite_users\": {\n    \"moderator\": \"1\",\n    \"participant\": \"1\"\n}}\n</pre>\nCheck “Session in-room permissions” table to see all possible permissions and default settings.\n</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>voip_session_audio (str)</td>\n        <td>Default Session Audio. Allowed values: phone, voip, hybrid. (available with v 4.3.2)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>voip_available_session_audio (str)</td>\n        <td>Available session audio options (available with v 5.0.5). Values: \n-phone (Using external phone audio, users will be required to dial-in via the telephone)\n-hybrid (Users will see a pop-up screen where they are given the choice to listen via their speakers or to dial-in via the telephone)\n-voip (Using flash-based internal audio)\n</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>custom_data (array)</td>\n        <td>JSON array of custom data, in the following formats:\n<pre>\n[\n   {\n   \"custom1\": \"custom value 1\",\n   \"custom2\": \"custom value 2\",\n   \"custom3\": \"custom value 3\"\n   }\n]\n</pre>\nYou may add additional custom fields (custom4 and beyond), provided the field name is in the format “customX” where X is an integer incremented by 1.\nCustom value is varchar(200).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>profile_pic_url (str)</td>\n        <td>Set URL to upload user profile image.\nFile conditions:\nType: jpg, png, gif. Size: 2.5MB maximum allowed. \nDimensions: 320px x 240px recommended , 3400px x 2400px maximum allowed. (available with v 4.3.4)  </td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the added entity.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","user"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"981e834b-d07a-d4ff-90d3-534294fd1cd9","name":"Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"login\":\"some-username\",\n\t\"password\":\"some-password\",\n\t\"email\":\"email@domain.com\",\n\t\"first_name\":\"First Name\",\n\t\"last_name\":\"Last Name\",\n\t\"company\":\"Company Inc.\",\n\t\"city\":\"Some City\",\n\t\"phone\":\"123 456 789\",\n\t\"industry\":\"IT Services\",\n\t\"birthday\":\"1976-09-10 12:00:00\",\n\t\"api_enabled\":\"1\",\n\t\"service_plan_id\":\"4\",\n\t\"custom_data\": [{\n\t\t\"custom1\":\"first custom value\", \n\t\t\"custom2\":\"second custom value\", \n\t\t\"custom3\":\"third custom value\",\n\t\t\"custom4\":\"fourth custom value\"\n\t}]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Mon, 05 Jun 2017 16:44:27 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"9885","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>822</id><message>User added</message></xml>\n"}],"_postman_id":"74548185-98e3-38be-fce5-4f8331ffb8e4"},{"name":"/user","id":"acfb8a45-cc16-01e7-3be2-2b6bf9d8aa83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\"1\",\n\t\"login\":\"some-username\",\n\t\"password\":\"some-password\",\n\t\"email\":\"email@domain.com\",\n\t\"first_name\":\"First Name\",\n\t\"last_name\":\"Last Name\",\n\t\"company\":\"Company Inc.\",\n\t\"city\":\"Some City\",\n\t\"phone\":\"123 456 789\",\n\t\"industry\":\"IT Services\",\n\t\"birthday\":\"1976-09-10\",\n\t\"api_enabled\":\"1\",\n\t\"service_plan_id\":\"4\",\n\t\"custom_data\": [\n\t\t{\n\t\t\t\"custom1\":\"first custom value\", \n\t\t\t\"custom2\":\"second custom value\", \n\t\t\t\"custom3\":\"third custom value\",\n\t\t\t\"custom4\":\"fourth custom value\"\n\t\t}\n\t]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user","description":"<p>Edit an existing user. Requires admin access rights.</p>\n\n<table>\n    <tr>\n        <td><b>Required</b></td>\n        <td>id (int)</td>\n        <td>The id of the user to be edited..</td>\n    </tr>\n    <tr>\n        <td><b>Optional</b></td>\n        <td></td>\n        <td>See params of PUT /user method.</td>\n    </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n  <tr>\n    <td>id (int)</td>\n    <td>The id of the updated entity.</td>\n  </tr>\n  <tr>\n    <td>message (str)</td>\n    <td>Text messsage.</td>\n  </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","user"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"f6e41ed7-d0af-7778-109d-3e3d5fe71f70","name":"Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\"1\",\n\t\"login\":\"some-username\",\n\t\"password\":\"some-password\",\n\t\"email\":\"email@domain.com\",\n\t\"first_name\":\"First Name\",\n\t\"last_name\":\"Last Name\",\n\t\"company\":\"Company Inc.\",\n\t\"city\":\"Some City\",\n\t\"phone\":\"123 456 789\",\n\t\"industry\":\"IT Services\",\n\t\"birthday\":\"1976-09-10\",\n\t\"api_enabled\":\"1\",\n\t\"service_plan_id\":\"4\",\n\t\"custom_data\": [\n\t\t{\n\t\t\t\"custom1\":\"first custom value\", \n\t\t\t\"custom2\":\"second custom value\", \n\t\t\t\"custom3\":\"third custom value\",\n\t\t\t\"custom4\":\"fourth custom value\"\n\t\t}\n\t]\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Tue, 06 Jun 2017 16:59:11 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"335","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>503</id><message>User was modified</message></xml>\n"}],"_postman_id":"acfb8a45-cc16-01e7-3be2-2b6bf9d8aa83"},{"name":"/user","id":"15e99cd1-5a62-fd3b-c1bd-0951b4106de7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\"1\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user","description":"<p>Delete user account.</p>\n<h3>Arguments</h3>\n<table>\n  <tr>\n    <td><b>Required</b></td>\n    <td>user_id (int)</td>\n    <td>The id of the user account to be deleted. Note: the id may also be appended to the URL (.../id/xxx) instead of in the request body.</td>\n  </tr>\n</table>\n\n<h3>Return Arguments</h3>\n<table>\n    <tr>\n        <td>id (int)</td>\n        <td>ID# of user account.</td>\n    </tr>\n    <tr>\n        <td>message (str)</td>\n        <td>Text message.</td>\n    </tr>    \n</table>","urlObject":{"path":["api","2","{{user_name}}","user"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"35571dbf-9f4b-baf7-48b4-835fed4b5ed1","name":"Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n\t\"id\":\"111\"\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/user"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml","description":""},{"name":"Date","key":"Date","value":"Mon, 05 Jun 2017 16:01:44 GMT","description":""},{"name":"Expires","key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.10.3","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"PHP/5.4.30","description":""}],"cookie":[],"responseTime":"326","body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>485</id><message>User was deleted</message></xml>\n"}],"_postman_id":"15e99cd1-5a62-fd3b-c1bd-0951b4106de7"}],"id":"52feacaf-fd5c-daac-7ca4-bfa6a5432d48","_postman_id":"52feacaf-fd5c-daac-7ca4-bfa6a5432d48","description":""}],"event":[{"listen":"prerequest","script":{"id":"7c193cfe-4320-4024-b1f4-a303cf3e6189","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4d072bf8-9b10-4a19-884f-8e8551b6ca81","type":"text/javascript","exec":[""]}}]}