{"info":{"_postman_id":"5a628ba8-8a4f-4cb5-8da6-97004e0084e7","name":"KeyMeeting REST API v1","description":"<html><head></head><body><h2>API Documentation For KeyMeeting</h2>\n\n<h3>Quickstart</h3>\n\n<p>The KeyMeeting 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><div>According to the HTTP specification, when making GET requests, all parameters must be passed as URL/querystring parameters.</div></li><li><div>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.</div></li><li><div>The data format of the request body must either:<br>a. contain name/value pairs such as <code>id=1&amp;var2=val2</code> or,<br><br>b. 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></div><div>Most developers will find the JSON approach more 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.</div><div>We are working to allow for additional input_type (such as XML), but for the time being you must always set this to “json”.</div><div>There is more choice available for return formats - take a look at the section called “Return Formatting” below.</div></li><li><div>All special characters (+, $, &lt;, &gt;, ect) in rest_data array should be urlencoded. You can use urlencode PHP function, or similar.</div></li></ol>\n\n<h3>How to use HTTP Basic Auth while developing and debugging</h3>\n\n<p><br>To access the KeyMeeting 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  \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  \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  \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 KeyMeeting 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>\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":"8252734","collectionId":"5a628ba8-8a4f-4cb5-8da6-97004e0084e7","publishedId":"SVfUrmif","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2019-09-04T13:46:50.000Z"},"item":[{"name":"Authentication","item":[{"name":"/authverify","id":"4e8f6644-4d16-4716-85ef-b43a850058a6","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":"687a33d4-dd67-4008-b9cd-b6e5eeab42f8","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy","warning":""}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/authverify"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Jun 2017 17:08:50 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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":"4e8f6644-4d16-4716-85ef-b43a850058a6"}],"id":"b266dbfa-6464-45c8-a7ae-18af12ebea8b","_postman_id":"b266dbfa-6464-45c8-a7ae-18af12ebea8b","description":""},{"name":"Branding","item":[{"name":"branding/id/[int]","id":"48c52222-1ae5-4c98-be7d-51cddc1cdd1e","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 (ttr)</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 (str)</td>\n        <td>\n            URL to In Room Logo image.\n            Dimensions: 200px wide, 28px high. Format: png (transparent background recommended). Filesize: Max 256KB.\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>splash_screen (str)</td>\n        <td>URL to Splash Screen image.\n            Dimensions: 728px wide, 216px high. Format: png (transparent background recommended). Filesize: Max 512KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>background (str)</td>\n        <td>URL to Background image.\n            No restrictions. Format: gif, jpg, png. Filesize: Max 1024KB\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_image  (str)</td>\n        <td>URL to inroom lobby image (Available in v4.3.9).\n            Maximum dimensions:  800px wide, 430px high. Format: png (transparent background recommended). Filesize: Max 1024KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>lobby_music  (str)</td>\n        <td>URL to inroom lobby music (Available in v4.3.9)\n            Format: MP3.\n            Filesize: Max 3MB.\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":"9fbb77da-a6a6-4dea-8b28-f4e6d81cb0ef","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 09 May 2017 08:45:03 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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>http://domain.com/storage/users/1/flat_ui_branding_in_room_logo.png</in_room_logo>\n    <in_room_logo_retina>http://domain.com/themes/flat_ui/images/custom_branding/in_room_logo_retina.png</in_room_logo_retina>\n    <mobile_landing_logo>http://domain.com/themes/flat_ui/images/no_branding/mobile_landing_logo.png</mobile_landing_logo>\n    <splash_screen>http://domain.com/themes/flat_ui/images/custom_branding/splash_screen.png</splash_screen>\n    <background>http://domain.com/themes/flat_ui/images/no_branding/background.png</background>\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    <lobby_image>http://domain.com/themes/flat_ui/images/no_branding/lobby_image.png</lobby_image>\n    <lobby_music/>\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    <align_dropdown>tl</align_dropdown>\n    <lobby_text/>\n</xml>"}],"_postman_id":"48c52222-1ae5-4c98-be7d-51cddc1cdd1e"},{"name":"/branding","id":"da7395d1-f734-403a-bab0-def20b3328e3","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.keymeeting.it/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":"da7395d1-f734-403a-bab0-def20b3328e3"},{"name":"/branding","id":"d02ff8b7-8ec3-492a-a220-cfbc65e0a133","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.keymeeting.it/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 (ttr)</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 (str)</td>\n        <td>\n            URL to In Room Logo image.\n            Dimensions: 200px wide, 28px high. Format: png (transparent background recommended). Filesize: Max 256KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>in_room_logo_retina (str)</td>\n        <td>URL to In Room Logo image (retina).\n            Dimensions: 400px wide, 56px high. Format: png (transparent background recommended). Filesize: Max 512KB. (Deprecated in v5.1.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>splash_screen (str)</td>\n        <td>URL to Splash Screen image.\n            Dimensions: 728px wide, 216px high. Format: png (transparent background recommended). Filesize: Max 512KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>background (str)</td>\n        <td>URL to Background image.\n            No restrictions. Format: gif, jpg, png. Filesize: Max 1024KB\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_image  (str)</td>\n        <td>URL to inroom lobby image (Available in v4.3.9).\n            Maximum dimensions:  800px wide, 430px high. Format: png (transparent background recommended). Filesize: Max 1024KB.\n        </td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>lobby_music  (str)</td>\n        <td>URL to inroom lobby music (Available in v4.3.9)\n            Format: MP3.\n            Filesize: Max 3MB.\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":"0e6a7ce6-1350-4323-8c4f-27e905908f90","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 29 May 2017 13:18:23 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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":"d02ff8b7-8ec3-492a-a220-cfbc65e0a133"},{"name":"/branding","id":"6f233f10-17b9-424f-946b-2157ddaabb2d","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":"560dd7a9-4843-43b2-bbae-dce54c056e86","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 29 May 2017 13:18:31 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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":"6f233f10-17b9-424f-946b-2157ddaabb2d"}],"id":"8b22eb01-dff3-4bdd-befe-1b1bd1c80fba","description":"<p>User branding settings (available with v 4.3.4)</p>\n","_postman_id":"8b22eb01-dff3-4bdd-befe-1b1bd1c80fba"},{"name":"Company user limits","item":[{"name":"/company_user_limits/id/[int]","id":"28b8ffdb-8b4a-4e78-9cfb-60bbae8e6584","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":"c2cd5edf-80ee-467e-91fa-92d5ecd4019d","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/company_user_limits/id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 31 May 2017 07:39:09 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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":"28b8ffdb-8b4a-4e78-9cfb-60bbae8e6584"},{"name":"/company_user_limits","id":"3fc5ab68-22bd-410b-9f19-adf2fae6e147","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":"fb19d8b0-ca9f-43dc-84a6-a22c74c4cbb6","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 31 May 2017 07:51:52 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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":"3fc5ab68-22bd-410b-9f19-adf2fae6e147"},{"name":"/company_user_limits","id":"c9db62a1-d880-4d8d-abb9-3a8b16596342","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":"c9db62a1-d880-4d8d-abb9-3a8b16596342"},{"name":"/company_user_limits","id":"29fd9362-ce92-4f90-a566-76c036accf40","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":"f88c5380-a88d-41b7-a10b-442e38072012","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 31 May 2017 08:10:50 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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":"29fd9362-ce92-4f90-a566-76c036accf40"}],"id":"30fd798c-5b2c-4e74-9d60-3d96f6b0a825","description":" <p> Manage Company user limits (available with v 5.0.2)</p>\n <p><b>Admin permissions required.</b></p>","_postman_id":"30fd798c-5b2c-4e74-9d60-3d96f6b0a825"},{"name":"Recordings","item":[{"name":"/recording/id/[int]","id":"6f5c46eb-f8a5-445c-a28d-059aa78a1570","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>password (str)</td>\n    <td>Password required to view the recording. Inherited from it’s session, if set there, none, if empty (not allowed for mp4 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>allow_anonymous_playback (bool)</td>\n    <td>If true, users will not be prompted to provide a screenname when viewing a recording. If a password is set, they will be prompted regardless of this value (not allowed for mp4 recording).</td>\n  </tr>\n  <tr>\n    <td>show_copy_link (bool)</td>\n    <td>Show/hide the copy link menu item when viewing a recording (available with version 4.4.2, not allowed for mp4 recording).</td>\n  </tr>\n  <tr>\n    <td>recording_link (str)</td>\n    <td>Full link to the recording (only available with Flash)..</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>make_offline_recording (bool)</td>\n    <td>Set this param to TRUE to make request for recording download (available with v 4.3.6).</td>\n  </tr>\n  <tr>\n    <td>download_link_status (int)</td>\n    <td>Status on the download recording request.\nPossible values:\n0 = not requested,\n1 = in progress,\n2 = ready,\n3 = failed (available with v 4.3.6, not allowed for mp4 recordings)</td>\n  </tr>\n  <tr>\n    <td>mp4_recording (bool)</td>\n    <td>If true then recording allowed in MP4 format only. (available with v 4.4.5).</td>\n  </tr>\n  <tr>\n    <td>viewers (array)</td>\n    <td>Recording viewers (not allowed for mp4 recordings).</td>\n  </tr>\n  <tr>\n    <td>invitations_content (text)</td>\n    <td>Custom content to the initial invitation email (available with v 5.1.5).</td>\n  </tr>  \n  <tr>\n    <td>csv_report_link (string)</td>\n    <td>Link to recording summary CSV report (available with v 4.4.4, deprecated in 5.0.8, user “report” param) . not allowed for mp4 recordings.</td>\n  </tr>\n  <tr>\n    <td>report (array)</td>\n    <td>Links to the recording summary reports. \n    Array values:\ncsv_link - Link to report in CSV format\nexcel_link - Link to report in Excel format.\n(available with v 5.0.8)</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":"6ba7f375-dbdd-4a9d-8b9b-bfb59f3a4455","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 30 May 2017 10:22:24 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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    <password>some-password</password>\n    <duration>180004</duration>\n    <recording_link>http://domain.com/play/admin/1-recording-title</recording_link>\n    <download_link>http://domain.com/storage/recordings/download/1-80fab40837f57e1269554927ac3ac92d.zip</download_link>\n    <download_link_status>2</download_link_status>\n    <allow_anonymous_playback>0</allow_anonymous_playback>\n    <show_copy_link>0</show_copy_link>\n    <viewers/>\n    <report>\n        <csv_link>http://domain.com/recordings/report/csv/1/6ab2349a0622f25c409f524f128ade37</csv_link>\n        <excel_link>http://domain.com/recordings/report/xls/1/6ab2349a0622f25c409f524f128ade37</excel_link>\n    </report>\n    <mp4_recording>0</mp4_recording>\n    <creation_date>2017-03-24 08:06:58</creation_date>\n</xml>"},{"id":"724ef67e-4352-412e-82f5-51a92556259c","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 31 May 2017 07:42:29 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><error>Not found</error></xml>\n"}],"_postman_id":"6f5c46eb-f8a5-445c-a28d-059aa78a1570"},{"name":"/recordings","id":"5d865de6-e043-4b83-a3a5-5f745e1cae13","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. Default is asc.<br /> Accepted values: asc, desc\n        </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":"40d166f1-1784-4032-80ba-501d24fa82d3","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 30 May 2017 10:23:51 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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        <password>some-password</password>\n        <duration>180004</duration>\n        <recording_link>http://domain.com/play/login/1-recording-title</recording_link>\n        <download_link>http://domain.com/storage/recordings/download/1-80fab40837f57e1269554927ac3ac92d.zip</download_link>\n        <download_link_status>2</download_link_status>\n        <allow_anonymous_playback>0</allow_anonymous_playback>\n        <show_copy_link>0</show_copy_link>\n        <viewers/>\n        <report>\n            <csv_link>http://domain.com/recordings/report/csv/1/6ab2349a0622f25c409f524f128ade37</csv_link>\n            <excel_link>http://domain.com/recordings/report/xls/1/6ab2349a0622f25c409f524f128ade37</excel_link>\n        </report>\n        <mp4_recording>0</mp4_recording>\n        <creation_date>2017-03-24 08:06:58</creation_date>\n    </item>\n</xml>"}],"_postman_id":"5d865de6-e043-4b83-a3a5-5f745e1cae13"},{"name":"/recording","id":"989363b8-edb2-438c-bb04-2f20b2c041c4","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\t\"password\":\t\t\"some-password\"\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>Set a password to view this recording. Leave empty, for open access (not allowed for mp4 recording).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>viewers (array)</td>\n        <td>\n            JSON array of users who should receive an email invitation to view recording, in the following format:\n            <pre>\n[\n    {\n    \"id\": \"1\",\n    \"email\": \"email@domain.com\",\n    \"first_name\": \"First Name\",\n    \"last_name\": \"Last Name\",\n    \"send_email_invitation\": false\n    }\n]\n</pre>\nsend_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 recording_invitees to obtain the personal_link for each user (not allowed for mp4 recording).\n        </td>\n    </tr>\n  <tr>\n    <td> </td>\n    <td>invitations_content (text)</td>\n    <td>Add your own content to the initial invitation email. Leave empty to send a pre-defined email (available with v 5.1.5).</td>\n  </tr>    \n    <tr>\n        <td> </td>\n        <td>allow_anonymous_playback (bool)</td>\n        <td>Set to true (or 1) to supress login screen to the recording. Ignored if password is set (not allowed for mp4 recording).</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>show_copy_link (bool)</td>\n        <td>Set to true (or 1) to show the copy link menu item when viewing a recording  (available with version 4.4.2, not allowed for mp4 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}}","recording"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"2ba75285-df22-4aac-abb0-2e03f14acac1","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"},{"key":"Content-Type","value":"application/json","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 30 May 2017 10:12:37 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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":"989363b8-edb2-438c-bb04-2f20b2c041c4"},{"name":"/recording/id/[int]","id":"3a3c672f-a4f9-4dff-9a93-f735887a2465","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":"513ad9e0-bb26-45e8-95db-49ae57442a4d","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 30 May 2017 10:16:22 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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":"3a3c672f-a4f9-4dff-9a93-f735887a2465"}],"id":"3f817ad6-bbb8-4e66-9de1-147b90e62e84","_postman_id":"3f817ad6-bbb8-4e66-9de1-147b90e62e84","description":""},{"name":"Server Settings","item":[{"name":"/settings","id":"1c31632d-f6ff-4d16-a422-ba56e380819a","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":"e8bd6551-f59c-423e-8bab-8f4801fa5d96","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/settings"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 08 Jul 2017 07:01:30 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\"","name":"p3p","description":""}],"cookie":[],"responseTime":null,"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":"1c31632d-f6ff-4d16-a422-ba56e380819a"},{"name":"/settings","id":"2025ea5d-7dad-4bb3-9955-7baa5e244cf8","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":"b1b96c3f-cc46-4ec1-98bb-ded95d95a951","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 08 Jul 2017 07:01:53 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\"","name":"p3p","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <message>Settings updated</message>\n</xml>"}],"_postman_id":"2025ea5d-7dad-4bb3-9955-7baa5e244cf8"}],"id":"c45c5a9d-6ac6-4752-b7a7-bd4b97bfc50e","description":"<p>Server Settings (available with v 4.4.3).</p>\n<p><b>Admin prmissions required.</b></p>","_postman_id":"c45c5a9d-6ac6-4752-b7a7-bd4b97bfc50e"},{"name":"Service Plans","item":[{"name":"/service_plan/id/[int]","id":"58efcc6a-942f-4bed-927f-28d1989f3f38","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>fms_ip (str)</td>\n    <td>The IP or FQDN of the Flash Media Server running the FMS application to which sessions of this account should connect.</td>\n  </tr>\n  <tr>\n    <td>app_name (str)</td>\n    <td>The name of the FMS application to which sessions of this account should connect.</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>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>pro_video_enabled (bool)</td>\n    <td>The ID# of service planEnable pro &amp; custom video options.</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>mp4_recording_enabled (bool)</td>\n    <td>Enable MP4 recordings (available with v 4.4.3).</td>\n  </tr>\n  <tr>\n    <td>session_auto_recording_enabled (bool)</td>\n    <td>Enable auto-record sessions, note this will impact disk space usage (available with v 5.1.5).</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>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>available_room_type (str)</td>\n    <td>The Room type(s) which are made available to this account at session level. Possible values: flex, webrtc or both (available with v 5.1.3).</td>\n  </tr>\n  <tr>\n    <td>appshare_fit_to_screen (int)</td>\n    <td>Default screenshare view mode (available with v 5.1.5).\nValues: \n- 0: Set default view for application sharing to \"100%\"\n- 1: Set default view for application sharing to \"Fit To Screen\"\n    </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</table>","urlObject":{"path":["api","2","{{user_name}}","service_plan","id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"2f67e4bc-59b9-4d9a-ba5b-950818619def","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 30 May 2017 11:20:57 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>1</id><name>Parent Service Plan Template</name><description/><user_limit>1000</user_limit><session_user_limit/><recording_limit/><filesize_limit/><broadcasters_limit/><modify_branding_enabled>1</modify_branding_enabled><advanced_sessions_enabled>1</advanced_sessions_enabled><modify_permissions_enabled>0</modify_permissions_enabled><modify_colors_enabled>1</modify_colors_enabled><pro_video_enabled>1</pro_video_enabled><mobile_access_enabled>1</mobile_access_enabled><mp4_recording_enabled>1</mp4_recording_enabled><api_enabled/><fms_ip/><app_name/><voip_session_audio>voip</voip_session_audio><voip_available_session_audio><item>hybrid</item><item>voip</item><item>phone</item></voip_available_session_audio><menu_buttons><options>1</options><camera>1</camera><microphone>1</microphone><medialibrary>1</medialibrary><inviteparticipants>1</inviteparticipants><screensharing>1</screensharing><recording>1</recording><notifications>1</notifications><requesttospeak>1</requesttospeak><help>1</help><pushtotalk>1</pushtotalk><lobby>1</lobby><breakoutrooms>1</breakoutrooms></menu_buttons><components><chat>1</chat><participants>1</participants><conference>1</conference><content_share_1>1</content_share_1><content_share_2>1</content_share_2><content_share_3>1</content_share_3><notes>1</notes><poll>1</poll><qa>1</qa><caption_stream>0</caption_stream></components><permissions><allow_change_layout><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_change_layout><allow_invite_users><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_invite_users><allow_change_permissions><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_change_permissions><allow_end_session><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_end_session><allow_edit_notes><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_edit_notes><allow_manage_roles><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_manage_roles><allow_recording><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_recording><allow_copy_embed_code><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_copy_embed_code><allow_edit_poll><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_edit_poll><allow_answer_questions><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_answer_questions><allow_all_chat><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_all_chat><allow_private_chat_with_participants><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_private_chat_with_participants><allow_private_chat_with_moderators><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_private_chat_with_moderators><allow_public_moderators_chat><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_public_moderators_chat><allow_clear_chat><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_clear_chat><allow_video_conference><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_video_conference><allow_audio_conference><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_audio_conference><allow_free_publish><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_free_publish><allow_answer_speak_request><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_answer_speak_request><allow_stop_broadcasts><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_stop_broadcasts><allow_change_dial_in_mode><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_change_dial_in_mode><allow_content_sharing><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_content_sharing><allow_content_control><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_content_control><allow_local_screen_share><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_local_screen_share><allow_control_remote_screen><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_control_remote_screen><allow_activate_whiteboard><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_activate_whiteboard><allow_edit_whiteboard><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_edit_whiteboard><allow_tab_selection><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_tab_selection><allow_propagate_tab_selection><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_propagate_tab_selection><allow_rip_out_tab><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_rip_out_tab><allow_close_tab><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_close_tab><allow_file_sharing><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_file_sharing><allow_file_downloading><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_file_downloading><enable_media_library><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>1</observer></enable_media_library><allow_video_inviting><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_video_inviting><allow_audio_inviting><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_audio_inviting><allow_screen_inviting><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_screen_inviting><allow_change_status><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_change_status><allow_user_to_promote><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_user_to_promote><allow_eject_user><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_eject_user><allow_clear_statuses><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_clear_statuses><allow_change_name><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_change_name></permissions></xml>\n"},{"id":"f7cf53c7-7bec-41e1-a961-f894d4e33a60","name":"404 Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/service_plan/id/1111"},"status":"Not Found","code":404,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 30 May 2017 11:20:39 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><error>Not found</error></xml>\n"}],"_postman_id":"58efcc6a-942f-4bed-927f-28d1989f3f38"},{"name":"/service_plans","id":"3be10b0a-f433-49b6-816d-1209ef881931","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. Default is asc.<br /> Accepted values: asc, desc\n        </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":"f16789db-a96d-4386-93b4-c6e516a75e36","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 30 May 2017 11:41:19 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><item><id>589</id><name>test2</name><description/><user_limit>2</user_limit><session_user_limit>2</session_user_limit><recording_limit>2</recording_limit><filesize_limit>10000</filesize_limit><broadcasters_limit>1</broadcasters_limit><modify_branding_enabled/><advanced_sessions_enabled/><modify_permissions_enabled/><modify_colors_enabled/><pro_video_enabled/><mobile_access_enabled/><mp4_recording_enabled/><api_enabled/><fms_ip>qwe</fms_ip><app_name>qwe</app_name><voip_session_audio/><voip_available_session_audio><item>0</item></voip_available_session_audio><menu_buttons><options>0</options><camera>0</camera><microphone>0</microphone><medialibrary>0</medialibrary><inviteparticipants>0</inviteparticipants><screensharing>0</screensharing><recording>0</recording><notifications>0</notifications><requesttospeak>0</requesttospeak><help>0</help><pushtotalk>0</pushtotalk><lobby>0</lobby><breakoutrooms>0</breakoutrooms></menu_buttons><components><chat>0</chat><participants>0</participants><conference>0</conference><content_share_1>0</content_share_1><content_share_2>0</content_share_2><content_share_3>0</content_share_3><notes>0</notes><poll>0</poll><qa>0</qa><caption_stream>0</caption_stream></components><permissions><allow_change_layout><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_change_layout><allow_invite_users><accountholder>0</accountholder><moderator>0</moderator><participant>1</participant><observer>1</observer></allow_invite_users><allow_change_permissions><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_change_permissions><allow_end_session><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_end_session><allow_edit_notes><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_edit_notes><allow_manage_roles><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_manage_roles><allow_recording><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_recording><allow_copy_embed_code><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_copy_embed_code><allow_edit_poll><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_edit_poll><allow_answer_questions><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_answer_questions><allow_all_chat><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_all_chat><allow_private_chat_with_participants><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_private_chat_with_participants><allow_private_chat_with_moderators><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_private_chat_with_moderators><allow_public_moderators_chat><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_public_moderators_chat><allow_clear_chat><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_clear_chat><allow_video_conference><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_video_conference><allow_audio_conference><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_audio_conference><allow_free_publish><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_free_publish><allow_answer_speak_request><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_answer_speak_request><allow_stop_broadcasts><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_stop_broadcasts><allow_change_dial_in_mode><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_change_dial_in_mode><allow_content_sharing><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_content_sharing><allow_content_control><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_content_control><allow_local_screen_share><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_local_screen_share><allow_control_remote_screen><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_control_remote_screen><allow_activate_whiteboard><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_activate_whiteboard><allow_edit_whiteboard><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_edit_whiteboard><allow_tab_selection><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_tab_selection><allow_propagate_tab_selection><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_propagate_tab_selection><allow_rip_out_tab><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_rip_out_tab><allow_close_tab><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_close_tab><allow_file_sharing><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_file_sharing><allow_file_downloading><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_file_downloading><enable_media_library><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>1</observer></enable_media_library><allow_video_inviting><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_video_inviting><allow_audio_inviting><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_audio_inviting><allow_screen_inviting><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_screen_inviting><allow_change_status><accountholder>1</accountholder><moderator>1</moderator><participant>1</participant><observer>0</observer></allow_change_status><allow_user_to_promote><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_user_to_promote><allow_eject_user><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_eject_user><allow_clear_statuses><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_clear_statuses><allow_change_name><accountholder>1</accountholder><moderator>1</moderator><participant>0</participant><observer>0</observer></allow_change_name></permissions></item></xml>\n"}],"_postman_id":"3be10b0a-f433-49b6-816d-1209ef881931"},{"name":"/service_plan","id":"93202823-7c30-4758-b7d0-dbd7af0b36aa","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  \"app_name\":\"Some APP Name\",\n  \"fms_ip\":\"255.255.255.255\",\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  \"pro_video_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><b>Optional</b></td>\n        <td>fms_ip (str)</td>\n        <td>The IP or FQDN of the Flash Media Server running the FMS application to which sessions of this account should connect.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>app_name (str)</td>\n        <td>The name of the FMS application to which sessions of this account should connect.</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>pro_video_enabled (bool)</td>\n        <td>Enable pro &amp; custom video options.</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>mp4_recording_enabled (bool)</td>\n        <td>Enable MP4 recordings (available with v 4.4.3)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_auto_recording_enabled (bool)</td>\n        <td>Enable auto-record sessions, note this will impact disk space usage (available with v 5.1.5).</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>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>available_room_type (str)</td>\n      <td>The Room type(s) which are made available to this account at session level (available with v 5.1.3).\n      Values:\n      - <b>flex</b> - classic flash room\n      - <b>webrtc</b> - new HTML5 room (beta)\n      - <b>both</b> - flash and HTML5 are allowed\n      </td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>appshare_fit_to_screen (int)</td>\n       <td>Set default screenshare view mode (available with v 5.1.5).\n       Values:\n       - <b>0</b> - Set default view for application sharing to \"100%\"\n       - <b>1</b> - Set default view for application sharing to \"Fit To Screen\"\n       </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>pushtotalk</b> (bool) - Show/Hide  “Push to Talk ” ite. This item can be showed when Microphone is showed. (available with v 4.4.4)\n      - <b>requesttospeak</b> (bool) - Show/Hide  “Request To Speak” item\n      - <b>help</b> (bool) -  Show/Hide  “About” item</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>participants</b> (bool) - Show/Hide “Participants” component\n - <b>conference</b> (bool) - Show/Hide “Conference” component\n - <b>content_share_1</b> (bool) - Show/Hide “Content Share #1” component\n - <b>content_share_2</b> (bool) - Show/Hide “Content Share #2” component\n - <b>content_share_3</b> (bool) - Show/Hide “Content Share #3” 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> - Show/Hide “Caption Stream” component (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>permissions (array)</td>\n        <td>\nPermissions Available in Session (available with v 4.4.4). Use following format to set permissions:<pre>\n{\"allow_local_screen_share\": {\n    \"accountholder\": \"1\",\n    \"moderator\": \"1\",\n    \"participant\": \"0\",\n    \"observer\": \"1\"\n},\n\"allow_screen_inviting\": {\n    \"accountholder\": \"1\",\n    \"moderator\": \"1\",\n    \"participant\": \"1\",\n    \"observer\": \"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 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":"03a47915-6697-4a43-8367-70ff099bdee1","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 30 May 2017 11:48:24 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>830</id><message>Service plan added</message></xml>\n"}],"_postman_id":"93202823-7c30-4758-b7d0-dbd7af0b36aa"},{"name":"/service_plan","id":"0c339328-27ea-47f7-b5b9-13c0f3eb3c95","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  \"app_name\":\"Some APP Name\",\n  \"fms_ip\":\"255.255.255.255\",\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  \"pro_video_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>fms_ip (str)</td>\n        <td>The IP or FQDN of the Flash Media Server running the FMS application to which sessions of this account should connect.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>app_name (str)</td>\n        <td>The name of the FMS application to which sessions of this account should connect.</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>pro_video_enabled (bool)</td>\n        <td>Enable pro &amp; custom video options.</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>mp4_recording_enabled (bool)</td>\n        <td>Enable MP4 recordings (available with v 4.4.3)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>session_auto_recording_enabled (bool)</td>\n        <td>Enable auto-record sessions, note this will impact disk space usage (available with v 5.1.5).</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>available_room_type (str)</td>\n      <td>The Room type(s) which are made available to this account at session level (available with v 5.1.3).\n      Values:\n      - <b>flex</b> - classic flash room\n      - <b>webrtc</b> - new HTML5 room (beta)\n      - <b>both</b> - flash and HTML5 are allowed\n      </td>\n  </tr>\n    <tr>\n       <td> </td>\n       <td>appshare_fit_to_screen (int)</td>\n       <td>Set default screenshare view mode (available with v 5.1.5).\n       Values:\n       - <b>0</b> - Set default view for application sharing to \"100%\"\n       - <b>1</b> - Set default view for application sharing to \"Fit To Screen\"\n       </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>pushtotalk</b> (bool) - Show/Hide  “Push to Talk ” ite. This item can be showed when Microphone is showed. (available with v 4.4.4)\n      - <b>requesttospeak</b> (bool) - Show/Hide  “Request To Speak” item\n      - <b>help</b> (bool) -  Show/Hide  “About” item</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>participants</b> (bool) - Show/Hide “Participants” component\n - <b>conference</b> (bool) - Show/Hide “Conference” component\n - <b>content_share_1</b> (bool) - Show/Hide “Content Share #1” component\n - <b>content_share_2</b> (bool) - Show/Hide “Content Share #2” component\n - <b>content_share_3</b> (bool) - Show/Hide “Content Share #3” 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> - Show/Hide “Caption Stream” component (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>permissions (array)</td>\n        <td>\nPermissions Available in Session (available with v 4.4.4). Use following format to set permissions:<pre>\n{\"allow_local_screen_share\": {\n    \"accountholder\": \"1\",\n    \"moderator\": \"1\",\n    \"participant\": \"0\",\n    \"observer\": \"1\"\n},\n\"allow_screen_inviting\": {\n    \"accountholder\": \"1\",\n    \"moderator\": \"1\",\n    \"participant\": \"1\",\n    \"observer\": \"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":"8787f7af-5dcd-4ca7-97c2-b8f7965a8c7a","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 30 May 2017 12:01:37 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>830</id><message>Service plan updated</message></xml>\n"}],"_postman_id":"0c339328-27ea-47f7-b5b9-13c0f3eb3c95"},{"name":"/service_plan/id/[int]","id":"8e6d8010-d10e-4078-804b-878b8f7fd3b0","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":"2aaf0459-62ee-4929-bdcb-f3a02ba2ceed","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 30 May 2017 11:13:39 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>583</id><message>Service plan was deleted</message></xml>\n"}],"_postman_id":"8e6d8010-d10e-4078-804b-878b8f7fd3b0"}],"id":"9f347b63-8280-48ce-bfcc-d3a67cc39b1d","description":"<p>Service Plans (available with v 4.3.1).</p>\n<p><b>Admin permissions required.</b></p>","_postman_id":"9f347b63-8280-48ce-bfcc-d3a67cc39b1d"},{"name":"Session invitees","item":[{"name":"/invitees/id/[int]","id":"9d8a3275-40fa-41cc-b552-d565c184a04c","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 moderators, participants or observers, 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, moderators, participants, observers.</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":"db49de31-718e-43e3-9e73-12544aa35372","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 10:11:02 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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":"9d8a3275-40fa-41cc-b552-d565c184a04c"},{"name":"/invitee/id/[int]/session_id/[int]","id":"8f74f8cf-75a0-4d4b-af2a-885e6972ec66","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; 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}}","invitee","id","1","session_id","1"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"8a3355ff-ae78-4a6c-82f0-9a88062cba05","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee/id/[int]/session_id/[int]"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 10:26:41 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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":"8f74f8cf-75a0-4d4b-af2a-885e6972ec66"},{"name":"/invitee","id":"ea834696-a487-45cd-adfa-23d7c630c5fe","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 = Moderator, \n2 = Participants, \n3 = Observer.</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":"fbf10fa0-c434-4ff1-ba66-171740f793f1","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 10:49:41 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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":"ea834696-a487-45cd-adfa-23d7c630c5fe"},{"name":"/invitee","id":"3f6efb1e-8b16-477d-8ec9-719481e4d7f0","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>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 = Moderator, \n2 = Participants, \n3 = Observer.</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":"eaed52da-4c83-4fef-9fa5-0fc876b4d964","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 10:56:16 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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":"3f6efb1e-8b16-477d-8ec9-719481e4d7f0"},{"name":"/invitee","id":"399998e7-77cb-4ec3-a9b8-afc507944cda","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":"b6453f21-0e03-4026-95eb-792b7d1d0916","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":"Text","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":"399998e7-77cb-4ec3-a9b8-afc507944cda"}],"id":"4cf24e6e-dba5-46a9-9b32-c783dfc20cb8","_postman_id":"4cf24e6e-dba5-46a9-9b32-c783dfc20cb8","description":""},{"name":"Session recurring","item":[{"name":"/session_recurring/session_id/[int]","id":"8000570a-bbcc-4ce1-b22c-b8c42656d369","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":"bd3c313c-5403-404f-b32f-92740009d59e","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 10:49:41 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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":"8000570a-bbcc-4ce1-b22c-b8c42656d369"},{"name":"/session_recurring","id":"3fad5070-7521-46da-9bb5-5394b8fbe90f","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":"ce744cd4-d88e-4550-b4ca-8d56d4ba9ab5","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 10:49:41 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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":"3fad5070-7521-46da-9bb5-5394b8fbe90f"},{"name":"/session_recurring","id":"963019e3-87ba-4f03-875e-eae9a676789e","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":"0165b0dc-04a9-4b44-84d2-04e38787a48a","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 10:56:16 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","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":"963019e3-87ba-4f03-875e-eae9a676789e"},{"name":"/session_recurring","id":"d1110152-b918-4a6a-a3ab-81d4546a1be5","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":"23170697-3708-49fc-9ecd-d8e232fe99ef","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":"Text","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":"d1110152-b918-4a6a-a3ab-81d4546a1be5"}],"id":"3490881c-bc92-447a-872e-61b6fcc88d6b","_postman_id":"3490881c-bc92-447a-872e-61b6fcc88d6b","description":""},{"name":"Sessions","item":[{"name":"/session/id/[int]","id":"e2ae0b71-7c0f-4795-a493-1bc44adb5429","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<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 be returned.</td>\n  </tr>\n</table>\n<h3>Return Arguments (Regular Session)</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>topic (str)</td>\n    <td>The name or title of this session.</td>\n  </tr>\n  <tr>\n    <td>start_time (datetime)</td>\n    <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>\n  </tr>\n  <tr>\n    <td>duration (int)</td>\n    <td>Duration of the meeting, in minutes.</td>\n  </tr>\n  <tr>\n    <td>password (str)</td>\n    <td>The session’s access password, required to join. None, if empty.</td>\n  </tr>\n  <tr>\n    <td>session_access_code (int)</td>\n    <td>Code to join the session via telephone. Only available if VOIP bridge module is purchased.</td>\n  </tr>\n  <tr>\n    <td>session_link (str)</td>\n    <td>Full link to the session. If friendly_url is NULL, session_key is used.</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</table>","urlObject":{"path":["api","2","{{user_name}}","session","id","[int]"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"34cdae8a-0894-4ae5-acce-e72feeacec91","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 11:54:26 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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        <enable_join_sound>0</enable_join_sound>\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            <observers/>\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_embed_widget_for_rec>0</access_embed_widget_for_rec>\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_use_teleconference>0</av_use_teleconference>\n        <av_encrypt_streams>0</av_encrypt_streams>\n        <av_voip_conf_mode>0</av_voip_conf_mode>\n        <av_autobroadcast>1</av_autobroadcast>\n        <av_voip_audio>voip</av_voip_audio>\n        <av_fit_to_screen>0</av_fit_to_screen>\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        <requesttospeak>1</requesttospeak>\n        <help>1</help>\n        <pushtotalk>1</pushtotalk>\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":"8019bde3-8478-4a90-b25d-84cc61117f78","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 11:59:27 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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>"}],"_postman_id":"e2ae0b71-7c0f-4795-a493-1bc44adb5429"},{"name":"/user_session/id/[int]","id":"7731eedc-c5af-43c7-b8f1-05684bba8b87","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<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 be returned.</td>\n  </tr>\n</table>\n<h3>Return Arguments (Regular Session)</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>topic (str)</td>\n    <td>The name or title of this session.</td>\n  </tr>\n  <tr>\n    <td>start_time (datetime)</td>\n    <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>\n  </tr>\n  <tr>\n    <td>duration (int)</td>\n    <td>Duration of the meeting, in minutes.</td>\n  </tr>\n  <tr>\n    <td>password (str)</td>\n    <td>The session’s access password, required to join. None, if empty.</td>\n  </tr>\n  <tr>\n    <td>session_access_code (int)</td>\n    <td>Code to join the session via telephone. Only available if VOIP bridge module is purchased.</td>\n  </tr>\n  <tr>\n    <td>session_link (str)</td>\n    <td>Full link to the session. If friendly_url is NULL, session_key is used.</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</table>","urlObject":{"path":["api","2","{{user_name}}","user_session","id","[int]"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"1633bf71-24d7-4898-994d-b3628d362873","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 11:54:26 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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        <enable_join_sound>0</enable_join_sound>\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            <observers/>\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_embed_widget_for_rec>0</access_embed_widget_for_rec>\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_use_teleconference>0</av_use_teleconference>\n        <av_encrypt_streams>0</av_encrypt_streams>\n        <av_voip_conf_mode>0</av_voip_conf_mode>\n        <av_autobroadcast>1</av_autobroadcast>\n        <av_voip_audio>voip</av_voip_audio>\n        <av_fit_to_screen>0</av_fit_to_screen>\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        <requesttospeak>1</requesttospeak>\n        <help>1</help>\n        <pushtotalk>1</pushtotalk>\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":"a75402bd-93ba-4a63-8c85-670a03bac5eb","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 11:59:27 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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>"}],"_postman_id":"7731eedc-c5af-43c7-b8f1-05684bba8b87"},{"name":"/sessions","id":"1884d74b-a681-4430-81fc-d0433fc2d63f","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. 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}}","sessions"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"a2836700-a31d-45c6-a2a3-ea45cfacb265","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 06:46:18 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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_access_code/>\n        <session_link>http://os4-dev.keymeeting.it/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":"1884d74b-a681-4430-81fc-d0433fc2d63f"},{"name":"/user_sessions/user_id/[int]","id":"85df8bf0-3ba1-4fe6-b0d9-b30f83142f37","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</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":"3518f220-abe6-4803-8552-3741ceb0bdcc","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 06:46:18 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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_access_code/>\n        <session_link>http://os4-dev.keymeeting.it/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":"85df8bf0-3ba1-4fe6-b0d9-b30f83142f37"},{"name":"/invited_sessions","id":"e88e8f66-cb18-4775-9549-bafe6e75ad63","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","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"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"7e0940d1-62f1-4e57-9211-402c7d654cc5","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invited_sessions"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 07:30:30 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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":"e88e8f66-cb18-4775-9549-bafe6e75ad63"},{"name":"/session","id":"41d9ba55-84db-4270-a986-b4c769211bea","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}}/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>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.</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: Moderator (1), Participant (2) or Observer (3)\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 participants and observers. Moderators 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).\n \n<p>Allowed values:</p>\n<ul>\n<li><b>0</b> - Do not attach or link a calendar file to the invitation email</li>\n<li><b>1</b> - Attach a calendar file to the invitation email</li>\n<li><b>2</b> - Add a link to the calendar file to the invitation email \n  </li></ul></td>  </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>type (str)</td>\n      <td>The Session Room type (available with v 5.1.3).\n      Possible values:\n      - <b>flash</b> - classic flash room\n      - <b>html5</b> - new HTML5 room (beta)\n      NOTE: Session type can only be defined when creating the session.\n      </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>enable_join_sound (bool)</td>\n      <td>Play a sound every time a user joins this session.</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      Moderator (1), \n      Participant (2) \n      Observer (3). \n      Default is Participant.</td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>access_embed_widget_for_rec (bool)</td>\n      <td>Set to true to allow recording viewers to see the embed code to integrate the recording elsewhere. Defaults is false.</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.\n\n<p>Format: </p><pre>[\"email\",\"company\"]</pre>(available with v 5.0.2)<p></p>\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).\n \n<p>Allowed values:</p>\n<ul>\n<li><b>0</b> - Session isn't visible on public pages</li>\n<li><b>1</b> - Session is visible on your public page</li>\n<li><b>2</b> - Session is visible on company public page (for company accounts only)</li>\n<li><b>3</b> - Session is visible on both public pages (for company accounts only)\n  </li></ul></td>  </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_use_teleconference (bool)</td>\n      <td>Set to true to allow users to dial-in to the session using conventional telephones. Default is false. Note: the dial-in module requires a seperate license and is not available by default.</td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>av_encrypt_streams (bool)</td>\n      <td>Set to true to use RTMPE encryption for all streams, instead of the default RTMP.</td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>av_voip_conf_mode (int)</td>\n      <td>Audio for participants and observers dialing in should be (0) not muted, (1) muted, may unmute or (2) muted, may not unmute. Default is 0 (not muted).</td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>av_autobroadcast (bool)</td>\n      <td>Automatically start audio &amp; video broadcast when entering the session (you and moderators only)</td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>av_fit_to_screen (bool)</td>\n      <td>Default view for application sharing.\n\n<p>Set to true to use \"Fit To Screen\", set to false to use \"100%\".\n(available with v 4.4.3)</p>\n</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>\n<li><b>pushtotalk</b> (bool) - Show/Hide  “Push to Talk ” ite. This item can be showed when Microphone is showed. (available with v 4.4.4)</li>\n<li><b>requesttospeak</b> (bool) - Show/Hide  “Request To Speak” item</li>\n<li><b>help</b> (bool) -  Show/Hide  “About” 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>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":"5c5ae318-3fa8-4606-b4c7-9b1ae10fdebc","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 06:38:13 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>307</id><message>Session added</message></xml>\n"}],"_postman_id":"41d9ba55-84db-4270-a986-b4c769211bea"},{"name":"/user_session","id":"0fb16a09-8092-49ab-bff0-6ac886be814f","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.</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: Moderator (1), Participant (2) or Observer (3)\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 participants and observers. Moderators 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).\n \n<p>Allowed values:</p>\n<ul>\n<li><b>0</b> - Do not attach or link a calendar file to the invitation email</li>\n<li><b>1</b> - Attach a calendar file to the invitation email</li>\n<li><b>2</b> - Add a link to the calendar file to the invitation email \n  </li></ul></td>  </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>type (str)</td>\n    <td>The Session Room type (available with v 5.1.3).\n    Possible values:\n    - <b>flash</b> - classic flash room\n    - <b>html5</b> - new HTML5 room (beta)\n    NOTE: Session type can only be defined when creating the session.\n    </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>enable_join_sound (bool)</td>\n      <td>Play a sound every time a user joins this session.</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      Moderator (1), \n      Participant (2) \n      Observer (3). \n      Default is Participant.</td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>access_embed_widget_for_rec (bool)</td>\n      <td>Set to true to allow recording viewers to see the embed code to integrate the recording elsewhere. Defaults is false.</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.\n\n<p>Format: </p><pre>[\"email\",\"company\"]</pre>(available with v 5.0.2)<p></p>\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).\n \n<p>Allowed values:</p>\n<ul>\n<li><b>0</b> - Session isn't visible on public pages</li>\n<li><b>1</b> - Session is visible on your public page</li>\n<li><b>2</b> - Session is visible on company public page (for company accounts only)</li>\n<li><b>3</b> - Session is visible on both public pages (for company accounts only)\n  </li></ul></td>  </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_use_teleconference (bool)</td>\n      <td>Set to true to allow users to dial-in to the session using conventional telephones. Default is false. Note: the dial-in module requires a seperate license and is not available by default.</td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>av_encrypt_streams (bool)</td>\n      <td>Set to true to use RTMPE encryption for all streams, instead of the default RTMP.</td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>av_voip_conf_mode (int)</td>\n      <td>Audio for participants and observers dialing in should be (0) not muted, (1) muted, may unmute or (2) muted, may not unmute. Default is 0 (not muted).</td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>av_autobroadcast (bool)</td>\n      <td>Automatically start audio &amp; video broadcast when entering the session (you and moderators only)</td>\n  </tr>\n  <tr>\n      <td> </td>\n      <td>av_fit_to_screen (bool)</td>\n      <td>Default view for application sharing.\n\n<p>Set to true to use \"Fit To Screen\", set to false to use \"100%\".\n(available with v 4.4.3)</p>\n</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>\n<li><b>pushtotalk</b> (bool) - Show/Hide  “Push to Talk ” ite. This item can be showed when Microphone is showed. (available with v 4.4.4)</li>\n<li><b>requesttospeak</b> (bool) - Show/Hide  “Request To Speak” item</li>\n<li><b>help</b> (bool) -  Show/Hide  “About” 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":"0d3b6d5d-75e3-4486-ab68-9954772e7161","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 06:38:13 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>307</id><message>Session added</message></xml>\n"}],"_postman_id":"0fb16a09-8092-49ab-bff0-6ac886be814f"},{"name":"/session","id":"ec682be8-e497-47fe-8e1f-fa9efa4a806f","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":"ec682be8-e497-47fe-8e1f-fa9efa4a806f"},{"name":"/user_session","id":"7a11d450-7306-4919-b894-13f82be50d54","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":"7a11d450-7306-4919-b894-13f82be50d54"},{"name":"/session","id":"1f9930fe-6bef-4816-89e1-e763b7a0545f","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":"e277a5b2-b301-4009-bc65-d53c2bce6a67","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 07:37:08 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>1</id>\n    <message>Session was deleted</message>\n</xml>"}],"_postman_id":"1f9930fe-6bef-4816-89e1-e763b7a0545f"}],"id":"0bab5ae8-c617-4008-bc29-7d12c891e0c0","_postman_id":"0bab5ae8-c617-4008-bc29-7d12c891e0c0","description":""},{"name":"Statistics","item":[{"name":"/statistics","id":"6b2a2638-0421-41da-89fc-9cd110db6a45","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>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;login;email;last_name</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>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>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    <tr>\n        <td>sac (int)</td>\n        <td>Session Access Code (for phone dial-in).</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","statistics"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"066e27ab-72b3-4e88-9b0f-8b0052d901f1","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 12:20:12 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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        <sac/>\n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>"}],"_postman_id":"6b2a2638-0421-41da-89fc-9cd110db6a45"},{"name":"/admin_statistics","id":"fe37955e-38a6-4fbc-a7ab-37da3d77e8e4","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>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;login;email;last_name</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>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>pr (int)</td>\n        <td>Participant Role (available with version 4.3.6)\nPossible values:\n0 - Session owner\n1 - Moderator\n2 - Participant\n3 - Observer\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    <tr>\n        <td>sac (int)</td>\n        <td>Session Access Code (for phone dial-in).</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","admin_statistics"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"27647ff9-8f89-45fd-9271-34a19b217cc0","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 12:38:07 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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        <sac>131233</sac>\n    </item>\n    <item>...</item>\n    <item>...</item>\n</xml>...\n</item>\n</xml>"}],"_postman_id":"fe37955e-38a6-4fbc-a7ab-37da3d77e8e4"},{"name":"/statistics_live","id":"4c06b4ed-1a15-435d-8727-89675dcfdea2","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>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;login;email;last_name</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>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>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    <tr>\n        <td>sac (int)</td>\n        <td>Session Access Code (for phone dial-in).</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","statistics_live"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"484a3e18-c615-4eba-b496-b1c591fbbb67","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 12:51:21 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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        <sac/>\n    </item>\n    </xml>"}],"_postman_id":"4c06b4ed-1a15-435d-8727-89675dcfdea2"},{"name":"/admin_statistics_live","id":"9138d405-f52e-4ab0-9a5e-9e1057f40715","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>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;login;email;last_name</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>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>pr (int)</td>\n        <td>Participant Role (available with version 4.3.6)\nPossible values:\n0 - Session owner\n1 - Moderator\n2 - Participant\n3 - Observer.</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    <tr>\n        <td>sac (int)</td>\n        <td>Session Access Code (for phone dial-in).</td>\n    </tr>\n</table>","urlObject":{"path":["api","2","{{user_name}}","admin_statistics_live"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"d9c3f2e4-08ef-423b-9d6f-4dec76bf3d97","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Jun 2017 12:57:54 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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        <sac/>\n    </item>\n</xml>"}],"_postman_id":"9138d405-f52e-4ab0-9a5e-9e1057f40715"}],"id":"d9061f57-de8e-4e8c-ada8-f571ea4feead","description":"<p>Get usage statistics</p>\n","_postman_id":"d9061f57-de8e-4e8c-ada8-f571ea4feead"},{"name":"Users","item":[{"name":"/user/id/[int]","id":"eee5cb60-96fb-4b7a-84d0-5099ad714df3","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>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>fms_server_ip (str)</td>\n    <td>The IP or FQDN of the Flash Media Server running the FMS application to which sessions of this account should connect. (available with v 4.3.1).</td>\n  </tr>\n  <tr>\n    <td>fms_application_name (str)</td>\n    <td>The name of the FMS application to which sessions of this account should connect. (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>pro_video_enabled (bool)</td>\n    <td>Enable pro &amp; custom video options. (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>mp4_recording_enabled (bool)</td>\n    <td>Enable MP4 recordings (available with v 4.4.3).</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_auto_recording_enabled (bool)</td>\n    <td>Enable auto-record sessions, note this will impact disk space usage (available with v 5.1.5).</td>\n  </tr>  \n  <tr>\n    <td>available_room_type (str)</td>\n    <td>The Room type(s) which are made available to this account at session level. Possible values: flex, webrtc or both (available with v 5.1.3).</td>\n  </tr>\n  <tr>\n    <td>appshare_fit_to_screen (int)</td>\n    <td>Default screenshare view mode (available with v 5.1.5).\nValues: \n- 0: Set default view for application sharing to \"100%\"\n- 1: Set default view for application sharing to \"Fit To 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>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":"7371eca9-c430-4d14-9a14-774a4a7153bf","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 05 Jun 2017 15:09:36 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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    <fms_server_ip>255.255.255.255</fms_server_ip>\n    <fms_application_name/>\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    <pro_video_enabled>1</pro_video_enabled>\n    <mobile_access_enabled>1</mobile_access_enabled>\n    <api_enabled>1</api_enabled>\n    <mp4_recording_enabled>1</mp4_recording_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        <requesttospeak>1</requesttospeak>\n        <help>1</help>\n        <pushtotalk>1</pushtotalk>\n        <lobby>1</lobby>\n        <breakoutrooms>1</breakoutrooms>\n    </menu_buttons>\n    <components>\n        <chat>1</chat>\n        <participants>1</participants>\n        <conference>1</conference>\n        <content_share_1>1</content_share_1>\n        <content_share_2>1</content_share_2>\n        <content_share_3>1</content_share_3>\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            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_change_layout>\n        <allow_invite_users>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_invite_users>\n        <allow_change_permissions>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_change_permissions>\n        <allow_end_session>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_end_session>\n        <allow_edit_notes>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_edit_notes>\n        <allow_manage_roles>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_manage_roles>\n        <allow_recording>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_recording>\n        <allow_copy_embed_code>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_copy_embed_code>\n        <allow_edit_poll>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_edit_poll>\n        <allow_answer_questions>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_answer_questions>\n        <allow_all_chat>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>1</participant>\n            <observer>0</observer>\n        </allow_all_chat>\n        <allow_private_chat_with_participants>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_private_chat_with_participants>\n        <allow_private_chat_with_moderators>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>1</participant>\n            <observer>0</observer>\n        </allow_private_chat_with_moderators>\n        <allow_public_moderators_chat>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_public_moderators_chat>\n        <allow_clear_chat>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_clear_chat>\n        <allow_video_conference>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>1</participant>\n            <observer>0</observer>\n        </allow_video_conference>\n        <allow_audio_conference>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>1</participant>\n            <observer>0</observer>\n        </allow_audio_conference>\n        <allow_free_publish>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_free_publish>\n        <allow_answer_speak_request>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_answer_speak_request>\n        <allow_stop_broadcasts>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_stop_broadcasts>\n        <allow_change_dial_in_mode>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_change_dial_in_mode>\n        <allow_content_sharing>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_content_sharing>\n        <allow_content_control>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_content_control>\n        <allow_local_screen_share>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_local_screen_share>\n        <allow_control_remote_screen>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_control_remote_screen>\n        <allow_activate_whiteboard>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_activate_whiteboard>\n        <allow_edit_whiteboard>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_edit_whiteboard>\n        <allow_tab_selection>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_tab_selection>\n        <allow_propagate_tab_selection>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_propagate_tab_selection>\n        <allow_rip_out_tab>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_rip_out_tab>\n        <allow_close_tab>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_close_tab>\n        <allow_file_sharing>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_file_sharing>\n        <allow_file_downloading>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>1</participant>\n            <observer>0</observer>\n        </allow_file_downloading>\n        <enable_media_library>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>1</participant>\n            <observer>1</observer>\n        </enable_media_library>\n        <allow_video_inviting>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_video_inviting>\n        <allow_audio_inviting>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_audio_inviting>\n        <allow_screen_inviting>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_screen_inviting>\n        <allow_change_status>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>1</participant>\n            <observer>0</observer>\n        </allow_change_status>\n        <allow_user_to_promote>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_user_to_promote>\n        <allow_eject_user>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_eject_user>\n        <allow_clear_statuses>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_clear_statuses>\n        <allow_change_name>\n            <accountholder>1</accountholder>\n            <moderator>1</moderator>\n            <participant>0</participant>\n            <observer>0</observer>\n        </allow_change_name>\n    </permissions>\n</xml>"}],"_postman_id":"eee5cb60-96fb-4b7a-84d0-5099ad714df3"},{"name":"/users","id":"edbd96f8-7620-4244-88a9-6d4c679697a2","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":"f6ac076e-679d-4460-b734-0d9dc6c0b63f","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 05 Jun 2017 15:28:19 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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        <fms_server_ip/>\n        <fms_application_name/>\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        <pro_video_enabled>1</pro_video_enabled>\n        <mobile_access_enabled>1</mobile_access_enabled>\n        <api_enabled>1</api_enabled>\n        <mp4_recording_enabled>1</mp4_recording_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            <requesttospeak>1</requesttospeak>\n            <help>1</help>\n            <pushtotalk>1</pushtotalk>\n            <lobby>1</lobby>\n            <breakoutrooms>1</breakoutrooms>\n        </menu_buttons>\n        <components>\n            <chat>1</chat>\n            <participants>1</participants>\n            <conference>1</conference>\n            <content_share_1>1</content_share_1>\n            <content_share_2>1</content_share_2>\n            <content_share_3>1</content_share_3>\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                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_change_layout>\n            <allow_invite_users>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_invite_users>\n            <allow_change_permissions>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_change_permissions>\n            <allow_end_session>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_end_session>\n            <allow_edit_notes>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_edit_notes>\n            <allow_manage_roles>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_manage_roles>\n            <allow_recording>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_recording>\n            <allow_copy_embed_code>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_copy_embed_code>\n            <allow_edit_poll>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_edit_poll>\n            <allow_answer_questions>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_answer_questions>\n            <allow_all_chat>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_all_chat>\n            <allow_private_chat_with_participants>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_private_chat_with_participants>\n            <allow_private_chat_with_moderators>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_private_chat_with_moderators>\n            <allow_public_moderators_chat>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_public_moderators_chat>\n            <allow_clear_chat>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_clear_chat>\n            <allow_video_conference>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_video_conference>\n            <allow_audio_conference>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_audio_conference>\n            <allow_free_publish>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_free_publish>\n            <allow_answer_speak_request>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_answer_speak_request>\n            <allow_stop_broadcasts>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_stop_broadcasts>\n            <allow_change_dial_in_mode>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_change_dial_in_mode>\n            <allow_content_sharing>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_content_sharing>\n            <allow_content_control>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_content_control>\n            <allow_local_screen_share>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_local_screen_share>\n            <allow_control_remote_screen>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_control_remote_screen>\n            <allow_activate_whiteboard>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_activate_whiteboard>\n            <allow_edit_whiteboard>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_edit_whiteboard>\n            <allow_tab_selection>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_tab_selection>\n            <allow_propagate_tab_selection>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_propagate_tab_selection>\n            <allow_rip_out_tab>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_rip_out_tab>\n            <allow_close_tab>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_close_tab>\n            <allow_file_sharing>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_file_sharing>\n            <allow_file_downloading>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_file_downloading>\n            <enable_media_library>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>1</observer>\n            </enable_media_library>\n            <allow_video_inviting>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_video_inviting>\n            <allow_audio_inviting>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_audio_inviting>\n            <allow_screen_inviting>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_screen_inviting>\n            <allow_change_status>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_change_status>\n            <allow_user_to_promote>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_user_to_promote>\n            <allow_eject_user>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_eject_user>\n            <allow_clear_statuses>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_clear_statuses>\n            <allow_change_name>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_change_name>\n        </permissions>\n    </item>\n    <item>\n        <id>2</id>\n        <login>rkudinov</login>\n        <email>roman.kudinov@novelapp.com</email>\n        <first_name>Free</first_name>\n        <last_name>Account</last_name>\n        <role>10</role>\n        <company/>\n        <country>US</country>\n        <language>en-US</language>\n        <timezone>UTC</timezone>\n        <last_login>2017-05-30 11:29:09</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://os4-dev.skymeeting.net/storage/users/2/myprofile/2.jpg</profile_pic_url>\n        <ml_used>45968</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>3</user_service_plan_id>\n        <parent_service_plan_id>1</parent_service_plan_id>\n        <fms_server_ip/>\n        <fms_application_name/>\n        <serviceplan_name>Parent 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        <pro_video_enabled>1</pro_video_enabled>\n        <mobile_access_enabled>1</mobile_access_enabled>\n        <api_enabled/>\n        <mp4_recording_enabled>1</mp4_recording_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            <requesttospeak>1</requesttospeak>\n            <help>1</help>\n            <pushtotalk>1</pushtotalk>\n            <lobby>1</lobby>\n            <breakoutrooms>1</breakoutrooms>\n        </menu_buttons>\n        <components>\n            <chat>1</chat>\n            <participants>1</participants>\n            <conference>1</conference>\n            <content_share_1>1</content_share_1>\n            <content_share_2>1</content_share_2>\n            <content_share_3>1</content_share_3>\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                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_change_layout>\n            <allow_invite_users>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_invite_users>\n            <allow_change_permissions>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_change_permissions>\n            <allow_end_session>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_end_session>\n            <allow_edit_notes>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_edit_notes>\n            <allow_manage_roles>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_manage_roles>\n            <allow_recording>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_recording>\n            <allow_copy_embed_code>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_copy_embed_code>\n            <allow_edit_poll>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_edit_poll>\n            <allow_answer_questions>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_answer_questions>\n            <allow_all_chat>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_all_chat>\n            <allow_private_chat_with_participants>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_private_chat_with_participants>\n            <allow_private_chat_with_moderators>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_private_chat_with_moderators>\n            <allow_public_moderators_chat>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_public_moderators_chat>\n            <allow_clear_chat>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_clear_chat>\n            <allow_video_conference>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_video_conference>\n            <allow_audio_conference>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_audio_conference>\n            <allow_free_publish>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_free_publish>\n            <allow_answer_speak_request>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_answer_speak_request>\n            <allow_stop_broadcasts>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_stop_broadcasts>\n            <allow_change_dial_in_mode>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_change_dial_in_mode>\n            <allow_content_sharing>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_content_sharing>\n            <allow_content_control>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_content_control>\n            <allow_local_screen_share>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_local_screen_share>\n            <allow_control_remote_screen>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_control_remote_screen>\n            <allow_activate_whiteboard>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_activate_whiteboard>\n            <allow_edit_whiteboard>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_edit_whiteboard>\n            <allow_tab_selection>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_tab_selection>\n            <allow_propagate_tab_selection>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_propagate_tab_selection>\n            <allow_rip_out_tab>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_rip_out_tab>\n            <allow_close_tab>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_close_tab>\n            <allow_file_sharing>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_file_sharing>\n            <allow_file_downloading>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_file_downloading>\n            <enable_media_library>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>1</observer>\n            </enable_media_library>\n            <allow_video_inviting>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_video_inviting>\n            <allow_audio_inviting>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_audio_inviting>\n            <allow_screen_inviting>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_screen_inviting>\n            <allow_change_status>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>1</participant>\n                <observer>0</observer>\n            </allow_change_status>\n            <allow_user_to_promote>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_user_to_promote>\n            <allow_eject_user>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_eject_user>\n            <allow_clear_statuses>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_clear_statuses>\n            <allow_change_name>\n                <accountholder>1</accountholder>\n                <moderator>1</moderator>\n                <participant>0</participant>\n                <observer>0</observer>\n            </allow_change_name>\n        </permissions>\n    </item>\n    <item>...</item><item>...</item>\n</xml>"}],"_postman_id":"edbd96f8-7620-4244-88a9-6d4c679697a2"},{"name":"/user_id","id":"c4384bc2-809b-4680-bcea-f344208bd801","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":"0ce27e5f-6ad8-44ed-b38d-e77b479c676f","name":"Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Basic YWRtaW46c2FtYmEyMDAy"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/user_id/login/[string]"},"status":"Created","code":201,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 05 Jun 2017 15:50:08 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"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":"c4384bc2-809b-4680-bcea-f344208bd801"},{"name":"/user","id":"d510d8dc-620a-434b-9902-2f605a1535f6","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>title (str)</td>\n        <td>Possible values: mr, mrs, ms.</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>gender (str)</td>\n        <td>Possible values: male, female.</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>mp4_recording_enabled (bool)</td>\n        <td>Enable MP4 recordings (available with v 4.4.3).</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>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>fms_server_ip (str)</td>\n        <td>The IP or FQDN of the Flash Media Server running the FMS application to which sessions of this account should connect. (available with v 4.3.1)</td>\n    </tr>\n    <tr>\n        <td> </td>\n        <td>fms_application_name (str)</td>\n        <td>The name of the FMS application to which sessions of this account should connect. (available with v 4.3.1)</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>pro_video_enabled (bool)</td>\n        <td>Enable pro &amp; custom video options. (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_auto_recording_enabled (bool)</td>\n        <td>Enable auto-record sessions, note this will impact disk space usage (available with v 5.1.5).</td>\n    </tr>\n    <tr>\n       <td> </td>\n       <td>appshare_fit_to_screen (int)</td>\n       <td>Set default screenshare view mode (available with v 5.1.5).\n       Values:\n       - <b>0</b> - Set default view for application sharing to \"100%\"\n       - <b>1</b> - Set default view for application sharing to \"Fit To Screen\"\n       </td>\n    </tr>    \n  <tr>\n    <td> </td>\n      <td>available_room_type (str)</td>\n      <td>The Room type(s) which are made available to this account at session level (available with v 5.1.3).\n      Possible values:\n      - <b>flex</b> - classic flash room\n      - <b>webrtc</b> - new HTML5 room (beta)\n      - <b>both</b> - flash and HTML5 are allowed\n      </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- pushtotalk (bool) - Show/Hide  “Push to Talk ” ite. This item can be showed when Microphone is showed. (available with v 4.4.4)\n - requesttospeak (bool) - Show/Hide  “Request To Speak” item\nhelp (bool) -  Show/Hide  “About” item\n(available with v 4.3.1)\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 - participants (bool) - Show/Hide “Participants” component\n - conference (bool) - Show/Hide “Conference” component\n - content_share_1 (bool) - Show/Hide “Content Share #1” component\n - content_share_2 (bool) - Show/Hide “Content Share #2” component\n - content_share_3 (bool) - Show/Hide “Content Share #3” 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)</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_local_screen_share\": {\n    \"accountholder\": \"1\",\n    \"moderator\": \"1\",\n    \"participant\": \"0\",\n    \"observer\": \"1\"\n},\n\"allow_screen_inviting\": {\n    \"accountholder\": \"1\",\n    \"moderator\": \"1\",\n    \"participant\": \"1\",\n    \"observer\": \"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":"0af44db4-9267-49f2-8154-ad4372efa1ae","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 05 Jun 2017 16:44:27 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>822</id><message>User added</message></xml>\n"}],"_postman_id":"d510d8dc-620a-434b-9902-2f605a1535f6"},{"name":"/user","id":"2a2bb5dc-8765-4564-9f14-deb62ee471e3","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":"b42d12e9-454b-4dc7-9d31-08bf203bd0ad","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Jun 2017 16:59:11 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>503</id><message>User was modified</message></xml>\n"}],"_postman_id":"2a2bb5dc-8765-4564-9f14-deb62ee471e3"},{"name":"/user","id":"9f090762-26a6-42e8-8ee8-971c73a29e19","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":"cbadd862-febf-4c25-bd36-ce424776b647","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":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 05 Jun 2017 16:01:44 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.10.3","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Powered-By","value":"PHP/5.4.30","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml><id>485</id><message>User was deleted</message></xml>\n"}],"_postman_id":"9f090762-26a6-42e8-8ee8-971c73a29e19"}],"id":"e8a59b68-1695-48f2-a22e-66d920272f7f","_postman_id":"e8a59b68-1695-48f2-a22e-66d920272f7f","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":[""]}}]}