{"info":{"_postman_id":"59e707ab-29e4-4a54-a2e9-9680df021b93","name":"Webinar FM REST API","description":"<html><head></head><body><h2 id=\"api-documentation-for-webinar-fm\">API Documentation For Webinar FM</h2>\n<h3 id=\"quickstart\">Quickstart</h3>\n<p>The Webinar FM API is a RESTful Web Service.</p>\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<p>Examples given here are provided for the PHP programming language and uses cURL to make the HTTP requests.</p>\n<h3 id=\"important-points\">Important Points</h3>\n<ol>\n<li>According to the HTTP specification, when making GET requests, all parameters must be passed as URL/querystring parameters.</li>\n<li>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.</li>\n<li>The data format of the request body must contain an <code>input_type</code> and <code>rest_data</code> variable, the former must be set to “json” and the latter must be a valid JSON array, such as <code>input_type=json&amp;rest_data={\"id\":\"1\",\"var2\":\"val2\"}</code></li>\n</ol>\n<p>  The JSON approach is robust as it allows the passing of objects and arrays whilst also being simpler to implement (simply json_encode() your data array before sending it). We provide PHP code examples for how requests are made with each API method below.</p>\n<p>  In the future, we may allow for additional input_type (such as XML), but for the time being you must always set this to “json”.</p>\n<p>  There is more choice available for return formats — take a look at the section called “Return Formatting” below.</p>\n<ol>\n<li>All special characters (+, $, , ect) in rest_data array should be urlencoded. You can use urlencode PHP function, or similar.</li>\n</ol>\n<h3 id=\"how-to-use-http-basic-auth-while-developing-and-debugging\">How To Use HTTP Basic Auth While Developing And Debugging</h3>\n<p>To access the Webinar FM 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:</p>\n<p><code>Authorization: Basic am9obmRvZTpwYXNzd29yZA==</code></p>\n<p>The encrypted string must be a base64 encoded combination of username and password in the following format:</p>\n<p><code>myUsername:myPassword</code></p>\n<p>In Fiddler you can create this string by opening the Encoder tab, selecting base64 and entering your credentials.</p>\n<p>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.</p>\n<h3 id=\"essential-tools\">Essential Tools</h3>\n<p>Postman — 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<h3 id=\"essential-reading\">Essential Reading</h3>\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 id=\"general-definitions\">General Definitions</h3>\n<p>[ver] - The version of the API endpoint, must be defined in each request URL. The current version is 2.</p>\n<p>Example: GET <a href=\"http://domain.com/api/2/%5Busername%5D/authverify\">http://domain.com/api/2/[username]/authverify</a></p>\n<p>[username] - The username of the account which is making the API requests.</p>\n<p>Example: GET <a href=\"http://domain.com/api/%5Bver%5D/johndoe/authverify\">http://domain.com/api/[ver]/johndoe/authverify</a></p>\n<h3 id=\"http-error-codes\">HTTP Error Codes</h3>\n<h4 id=\"400-bad-request\">400 “Bad Request”</h4>\n<p>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.</p>\n<p>Example: Providing an alphabetic value of “abcd” for an integer parameter, such as “offset”.</p>\n<h4 id=\"401-unauthorized\">401 “Unauthorized”</h4>\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<h4 id=\"404-not-found\">404 “Not Found”</h4>\n<p>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<p>Example: Trying to retrieve a non-existing user.</p>\n<h4 id=\"405-method-not-allowed\">405 “Method Not Allowed”</h4>\n<p>Returned when the client tries to use an HTTP method which this particular resource doesn’t support.</p>\n<p>Example: Trying to PUT or DELETE a read-only resource.</p>\n<h4 id=\"409-conflict\">409 “Conflict”</h4>\n<p>Returned when providing input during a PUT operation which would cause the resource state to conflict with some other resource.</p>\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<h4 id=\"410-gone\">410 “Gone”</h4>\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<h4 id=\"500-internal-server-error\">500 “Internal Server Error”</h4>\n<p>There is a problem on the server side.</p>\n<h3 id=\"http-success-codes\">HTTP Success Codes</h3>\n<h4 id=\"200-ok\">200 “OK”</h4>\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<h4 id=\"201-created\">201 “Created”</h4>\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<h4 id=\"301-moved-permanently\">301 “Moved Permanently”</h4>\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<h3 id=\"return-formatting\">Return Formatting</h3>\n<p>The Webinar FM API supports a number of different return formats.</p>\n<p>By appending /format/[value]/ 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<table>\n<thead>\n<tr>\n    <th><b>Format</b></th>\n    <th><b>URL Parameter</b></th>\n    <th><b>Sample return</b></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n    <td>xml</td>\n    <td>none (default) or /format/xml</td>\n    <td><pre>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;xml&gt;\n  &lt;item&gt;\n    &lt;id&gt;1&lt;/id&gt;\n    &lt;login&gt;username&lt;/login&gt;\n    &lt;email&gt;email@domain.com&lt;/email&gt;\n    &lt;first_name&gt;First Name&lt;/first_name&gt;\n    &lt;last_name&gt;Last Name&lt;/last_name&gt;\n    [...]\n  &lt;/item&gt;\n&lt;/xml&gt;\n</pre></td>\n</tr>\n<tr>\n    <td>json</td>\n    <td>/format/json</td>\n    <td><pre>[\n  {\n    \"id\": \"1\",\n    \"login\": \"username\",\n    \"email\": \"email@domain.com\",\n    \"first_name\": \"First Name\",\n    \"last_name\": \"Last Name\",\n    [...]\n  }\n]\n</pre></td>\n</tr>\n<tr>\n    <td>serialize</td>\n    <td>/format/serialize</td>\n    <td><pre>a:1:\n{\n  i:0;a:5:\n  {\n    s:2:\"id\";\n    s:1:\"1\";\n    s:5:\"login\";\n    s:8:\"username\";\n    s:5:\"email\";\n    s:16:\"email@domain.com\";\n    s:10:\"first_name\";\n    s:10:\"First Name\";\n    s:9:\"last_name\";\n    s:9:\"Last Name\";\n    [...]\n  }\n}\n</pre></td>\n</tr>\n<tr>\n    <td>php \n<i>(can be used in eval)</i></td>\n    <td>/format/php</td>\n    <td><pre>array (\n  0 =&gt;\n  array (\n    'id' =&gt; '1',\n    'login' =&gt; 'username',\n    'email' =&gt; 'email@domain.com',\n    'first_name' =&gt; 'First Name',\n    'last_name' =&gt; 'Last Name',\n    [...]\n  )\n)\n</pre></td>\n</tr>\n<tr>\n    <td>html</td>\n    <td>/format/html</td>\n    <td><pre>&lt;table border=\"0\" cellpadding=\"4\" cellspacing=\"0\"&gt;\n  &lt;tr&gt;\n    &lt;th&gt;id&lt;/th&gt;\n    &lt;th&gt;login&lt;/th&gt;\n    &lt;th&gt;email&lt;/th&gt;\n    &lt;th&gt;first_name&lt;/th&gt;\n    &lt;th&gt;last_name&lt;/th&gt;\n    &lt;th&gt;[...]&lt;/th&gt;\n  &lt;/tr&gt;\n  &lt;tr&gt;\n    &lt;td&gt;1&lt;/td&gt;\n    &lt;td&gt;username&lt;/td&gt;\n    &lt;td&gt;email@domain.com&lt;/td&gt;\n    &lt;td&gt;First Name&lt;/td&gt;\n    &lt;td&gt;Last Name&lt;/td&gt;\n    &lt;td&gt;[...]&lt;/td&gt;\n  &lt;/tr&gt;\n&lt;/table&gt;\n</pre></td>\n</tr>\n<tr>\n    <td>csv</td>\n    <td>/format/csv</td>\n    <td><pre>id,login,email,first_name,last_name,[...]\n1,\"username\",\"email@domain.com\",\"First Name\",\"Last Name\",[...]\n</pre></td>\n</tr>\n</tbody>\n</table></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"11667342","collectionId":"59e707ab-29e4-4a54-a2e9-9680df021b93","publishedId":"Szzegze7","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"00A637"},"publishDate":"2020-06-11T21:22:55.000Z"},"item":[{"name":"Authentication","item":[{"name":"/authverify","id":"5fc8b53c-cd0b-4ea5-8315-4edac744fbda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{user_name}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"GET","header":[],"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<h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>authenticated <code>bool</code></td>\n<td>Returns 1 if credentials are valid.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","2","{{user_name}}","authverify"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"ec0bc5b6-2d9f-4195-9b7c-4588f2d6731a","name":"/authverify","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic am9obmRvZTpwYXNzd29yZA==","type":"text"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/authverify"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Wed, 10 Jun 2020 10:30:22 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Set-Cookie","value":"ci_session=ag7mkgrrakisjo1g0kb27mot54t3hakn; expires=Thu, 11-Jun-2020 10:30:22 GMT; Max-Age=86400; path=/; HttpOnly"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"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":"5fc8b53c-cd0b-4ea5-8315-4edac744fbda"}],"id":"45cf640c-e264-4e8e-87ab-e6af0c609f80","description":"<p>Webinar FM REST API Documentation</p>\n","event":[{"listen":"prerequest","script":{"id":"9cbf3334-effb-4629-ab2f-94457ff5d664","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f7ba3ec1-c1eb-4aa9-9a0e-2d0a108a8e6b","type":"text/javascript","exec":[""]}}],"_postman_id":"45cf640c-e264-4e8e-87ab-e6af0c609f80"},{"name":"Session invitees","item":[{"name":"/invitees/id/[int]","id":"6f9fd7f3-91a2-44df-8be2-4126456f8057","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{user_name}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitees/id/{{session_id}}","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<h2 id=\"arguments\">Arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>Required</td>\n<td>The id of the session for which invitees should be retrieved.</td>\n</tr>\n<tr>\n<td>role <code>string</code></td>\n<td>Optional</td>\n<td>Limit the returned invitees to users holding a particular role in the session.</td>\n</tr>\n<tr>\n<td>Possible values: all, moderators, participants, observers.</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>Account id of the invitee.</td>\n</tr>\n<tr>\n<td>first_name <code>string</code></td>\n<td>The first name of the invited user.</td>\n</tr>\n<tr>\n<td>last_name <code>string</code></td>\n<td>The last name of the invited user.</td>\n</tr>\n<tr>\n<td>email <code>string</code></td>\n<td>The email address of the invited user.</td>\n</tr>\n<tr>\n<td>personal_session_link <code>string</code></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</tbody>\n</table>\n</div>","urlObject":{"path":["api","2","{{user_name}}","invitees","id","{{session_id}}"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"e518f2fb-99ee-4883-b094-3f3c6cc20961","name":"/invitees/id/[int]","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic am9obmRvZTpwYXNzd29yZA==","type":"text"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitees/id/{{session_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Wed, 10 Jun 2020 11:47:01 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Set-Cookie","value":"ci_session=s6nu1n3lecu8vs8v54jkhff5m8ad7h2v; expires=Thu, 11-Jun-2020 11:47:01 GMT; Max-Age=86400; path=/; HttpOnly"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <moderators>\n        <item>\n            <id>671304</id>\n            <email>john.galt@example.com</email>\n            <first_name>John</first_name>\n            <last_name>Galt</last_name>\n            <personal_session_link>https://link.webinar.fm/invite/ZWI4MTU3Njg4NTAxYzA4OSwxNDM3NCw2NzEzMDQ=</personal_session_link>\n        </item>\n    </moderators>\n    <participants>\n        <item>\n            <id>301551</id>\n            <email>jane.doe@example.com</email>\n            <first_name>Jane</first_name>\n            <last_name>Doe</last_name>\n            <personal_session_link>https://link.webinar.fm/invite/NzBkZGMxOTY0MjU2MDg1ZiwxNDM3NCwzMDE1NTE=</personal_session_link>\n        </item>\n        <item>\n            <id>301486</id>\n            <email>john.doe@example.com</email>\n            <first_name>John</first_name>\n            <last_name>Doe</last_name>\n            <personal_session_link>https://link.webinar.fm/invite/Y2U5ZTM1MWZmODFmZDJmMiwxNDM3NCwzMDE0ODY=</personal_session_link>\n        </item>\n    </participants>\n    <observers/>\n</xml>"}],"_postman_id":"6f9fd7f3-91a2-44df-8be2-4126456f8057"},{"name":"/invitee/id/[int]/session_id/[int]","id":"282a1aa3-1fa3-4449-be24-32fe0ca5d857","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{user_name}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee/id/{{invitee_id}}/session_id/{{session_id}}","description":"<p>Get data of single person invited to a session.</p>\n<h2 id=\"arguments\">Arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>Required</td>\n<td>The id of the user for which data should be retrieved.</td>\n</tr>\n<tr>\n<td>session_id <code>integer</code></td>\n<td>Required</td>\n<td>The id of the session for which invitees should be retrieved.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>Account id of the invitee.</td>\n</tr>\n<tr>\n<td>first_name <code>string</code></td>\n<td>The first name of the invited user.</td>\n</tr>\n<tr>\n<td>last_name <code>string</code></td>\n<td>The last name of the invited user.</td>\n</tr>\n<tr>\n<td>role <code>integer</code></td>\n<td>Role of invited person (1 — Speaker, 2 — Invitee).</td>\n</tr>\n<tr>\n<td>email <code>string</code></td>\n<td>The email address of the invited user.</td>\n</tr>\n<tr>\n<td>personal_session_link <code>string</code></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</tbody>\n</table>\n</div>","urlObject":{"path":["api","2","{{user_name}}","invitee","id","{{invitee_id}}","session_id","{{session_id}}"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"85521e84-c41f-4b91-ae04-034345cb3ef4","name":"/invitee/id/[int]/session_id/[int]","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic am9obmRvZTpwYXNzd29yZA==","type":"text"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee/id/{{invitee_id}}/session_id/{{session_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Thu, 11 Jun 2020 19:51:57 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Set-Cookie","value":"ci_session=ujtj52slvfi4l60ns52ul73sfhco3o0r; expires=Fri, 12-Jun-2020 19:51:57 GMT; Max-Age=86400; path=/; HttpOnly"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>301486</id>\n    <email>john.doe@example.com</email>\n    <first_name>John</first_name>\n    <last_name>Doe</last_name>\n    <role>2</role>\n    <personal_session_link>https://link.webinar.fm/invite/Y2U5ZTM1MWZmODFmZDJmMiwxNDM3NCwzMDE0ODY=</personal_session_link>\n</xml>"}],"_postman_id":"282a1aa3-1fa3-4449-be24-32fe0ca5d857"},{"name":"/invitee","id":"2d7c3214-ddb0-4e0a-b190-90a9ababa206","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{user_name}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n    \"session_id\": {{session_id}},\n    \"email\": \"richard.tyler@example.com\",\n    \"first_name\": \"Richard\",\n    \"last_name\": \"Tyler\",\n    \"send_email_invitation\": false,\n    \"role\": 2\n}","options":{"raw":{"language":"text"}}},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee","description":"<p>Add an invitee to a session.</p>\n<h2 id=\"arguments\">Arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>session_id <code>integer</code></td>\n<td>Required</td>\n<td>The id of the session to which invitee is added.</td>\n</tr>\n<tr>\n<td>email <code>string</code></td>\n<td>Required</td>\n<td>Email address of the inviee.</td>\n</tr>\n<tr>\n<td>first_name <code>string</code></td>\n<td>Required</td>\n<td>First name of the invitee.</td>\n</tr>\n<tr>\n<td>last_name <code>string</code></td>\n<td>Required</td>\n<td>Last name of the invitee.</td>\n</tr>\n<tr>\n<td>send_email_invitation <code>bool</code></td>\n<td>Optional</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>role <code>integer</code></td>\n<td>Optional</td>\n<td>Define role of the invitee in the session (1 - speaker, 2 - invitee). Default is 2.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>Account id of the invitee.</td>\n</tr>\n<tr>\n<td>first_name <code>string</code></td>\n<td>The first name of the invited user.</td>\n</tr>\n<tr>\n<td>last_name <code>string</code></td>\n<td>The last name of the invited user.</td>\n</tr>\n<tr>\n<td>email <code>string</code></td>\n<td>The email address of the invited user.</td>\n</tr>\n<tr>\n<td>personal_session_link <code>string</code></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</tbody>\n</table>\n</div>","urlObject":{"path":["api","2","{{user_name}}","invitee"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"817567d8-592a-4c33-ae6e-baa839ca737c","name":"/invitee","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"am9obmRvZTpwYXNzd29yZA==","type":"text"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\":{{session_id}},\n  \"email\":\"richard.tyler@example.com\",\n  \"first_name\":\"Richard\", \n  \"last_name\":\"Tyler\",\n  \"send_email_invitation\":false,\n  \"role\":2\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Thu, 11 Jun 2020 20:06:58 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>679625</id>\n    <email>richard.tyler@example.com</email>\n    <first_name>Richard</first_name>\n    <last_name>Tyler</last_name>\n    <role>2</role>\n    <personal_session_link>https://link.webinar.fm/invite/OWY1NGI5ZmY5MTlkYmVjZiwxNDM3NCw2Nzk2MjU=</personal_session_link>\n    <message>Invitee added</message>\n</xml>"}],"_postman_id":"2d7c3214-ddb0-4e0a-b190-90a9ababa206"},{"name":" /invitee","id":"aa54f4f1-04cf-4618-9d22-7e46e3f4fe24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{user_name}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\": {{session_id}},\n  \"user_id\": {{invitee_id}},\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<h2 id=\"arguments\">Arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>session_id <code>integer</code></td>\n<td>Required</td>\n<td>The id of the session to which invitee is added.</td>\n</tr>\n<tr>\n<td>user_id <code>integer</code></td>\n<td>Required</td>\n<td>The user id of the invitee.</td>\n</tr>\n<tr>\n<td>send_email_invitation <code>bool</code></td>\n<td>Optional</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>role <code>integer</code></td>\n<td>Required</td>\n<td>Define role of the invitee in the session (1 - speaker, 2 - invitee).</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>Account id of the invitee.</td>\n</tr>\n<tr>\n<td>first_name <code>string</code></td>\n<td>The first name of the invited user.</td>\n</tr>\n<tr>\n<td>last_name <code>string</code></td>\n<td>The last name of the invited user.</td>\n</tr>\n<tr>\n<td>email <code>string</code></td>\n<td>The email address of the invited user.</td>\n</tr>\n<tr>\n<td>personal_session_link <code>string</code></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</tbody>\n</table>\n</div>","urlObject":{"path":["api","2","{{user_name}}","invitee"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"44775b93-4acf-4518-80b2-af39618e1916","name":" /invitee","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"am9obmRvZTpwYXNzd29yZA==","type":"text"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\": {{session_id}},\n  \"user_id\": {{invitee_id}},\n  \"send_email_invitation\": false,\n  \"role\": 1\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Thu, 11 Jun 2020 20:27:43 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Set-Cookie","value":"ci_session=jirhp3lbt4i4tivfp303hlrmmqoocted; expires=Fri, 12-Jun-2020 20:27:43 GMT; Max-Age=86400; path=/; HttpOnly"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>301486</id>\n    <email>john.doe@example.com</email>\n    <first_name>John</first_name>\n    <last_name>Doe</last_name>\n    <role>1</role>\n    <personal_session_link>https://link.webinar.fm/invite/Y2U5ZTM1MWZmODFmZDJmMiwxNDM3NCwzMDE0ODY=</personal_session_link>\n    <message>Invitation was updated</message>\n</xml>"}],"_postman_id":"aa54f4f1-04cf-4618-9d22-7e46e3f4fe24"},{"name":"/invitee","id":"5557b6a1-a7a3-4e7b-96fc-62afa27bfcc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{user_name}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\": {{session_id}},\n  \"user_id\": {{invitee_id}}\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee","description":"<p>Delete an invitee from a session.</p>\n<h2 id=\"arguments\">Arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>session_id <code>integer</code></td>\n<td>Required</td>\n<td>The id of the session to which invitee is added.</td>\n</tr>\n<tr>\n<td>user_id <code>integer</code></td>\n<td>Required</td>\n<td>The user id of the invitee.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>The id of deleted invitee.</td>\n</tr>\n<tr>\n<td>message <code>string</code></td>\n<td>Text messsage.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","2","{{user_name}}","invitee"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"70aa5401-01c9-4c56-b638-ef2e30c97e6e","name":"/invitee","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"am9obmRvZTpwYXNzd29yZA==","type":"text"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"session_id\": {{session_id}},\n  \"user_id\": {{invitee_id}}\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitee"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Thu, 11 Jun 2020 20:35:17 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Set-Cookie","value":"ci_session=8knl5tqt6o1r20b28bpuo7f0k1a34lce; expires=Fri, 12-Jun-2020 20:35:17 GMT; Max-Age=86400; path=/; HttpOnly"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>98781</id>\n    <message>Invitation was deleted</message>\n</xml>"}],"_postman_id":"5557b6a1-a7a3-4e7b-96fc-62afa27bfcc9"},{"name":"/invitees/id/[int]","id":"0ab64291-068d-44ea-b405-dfd0afc5d28b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{user_name}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"id\": {{session_id}}\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitees/id/{{session_id}}","description":"<p>Delete all invitees from a session. Available since 5.5.0.</p>\n<h2 id=\"arguments\">Arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>Required</td>\n<td>The id of the session from which invitee should be deleted.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>The id of the session.</td>\n</tr>\n<tr>\n<td>message <code>string</code></td>\n<td>Text messsage.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","2","{{user_name}}","invitees","id","{{session_id}}"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"a08300bb-afaa-4c18-83fa-306183d3a314","name":"/invitees/id/[int]","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"am9obmRvZTpwYXNzd29yZA==","type":"text"}],"body":{"mode":"raw","raw":"input_type=json&rest_data={\n  \"id\": {{session_id}}\n}"},"url":"{{API_EndPoint}}/api/2/{{user_name}}/invitees/id/{{session_id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Thu, 11 Jun 2020 20:44:41 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>{{session_id}}</id>\n    <message>Invitations were deleted</message>\n</xml>"}],"_postman_id":"0ab64291-068d-44ea-b405-dfd0afc5d28b"}],"id":"0b4ec56f-4fef-49e1-8d9d-082870dc6145","_postman_id":"0b4ec56f-4fef-49e1-8d9d-082870dc6145","description":""},{"name":"Statistics","item":[{"name":"/statistics","id":"6fd465bd-dcf8-4f1d-bf82-3f2b79cb6dae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{user_name}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{API_EndPoint}}/api/2/{{user_name}}/statistics","description":"<p>Statistics can potentially return a very large amount of date. In addition to limiting the /days parameter, we recommend that you:</p>\n<ol>\n<li><p>limit type of data by using the /return option to define a subset of data fields.</p>\n</li>\n<li><p>Use the /count and /offset options to page through the results.</p>\n</li>\n</ol>\n<h2 id=\"arguments\">Arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>days <code>integer</code></td>\n<td>Required</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>count <code>integer</code></td>\n<td>Optional</td>\n<td>Specify number of returned results. Default is 100.</td>\n</tr>\n<tr>\n<td>offset <code>integer</code></td>\n<td>Optional</td>\n<td>Specify to move the cursor through the recordset. Default is 0.</td>\n</tr>\n<tr>\n<td>return <code>string</code></td>\n<td>Optional</td>\n<td>Choose which fields should be returned by adding a list of semi-colon delimited field names, e. g. <code>.../statistics/days/5/return/id;login;email;last_name</code>. If not defined, a pre-defined subset of fields is returned.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aid <code>integer</code></td>\n<td>Account id.</td>\n</tr>\n<tr>\n<td>ahfn <code>string</code></td>\n<td>Account holder first name.</td>\n</tr>\n<tr>\n<td>ahln <code>string</code></td>\n<td>Account holder last name.</td>\n</tr>\n<tr>\n<td>ahl <code>string</code></td>\n<td>Account holder login.</td>\n</tr>\n<tr>\n<td>sid <code>integer</code></td>\n<td>Session id.</td>\n</tr>\n<tr>\n<td>sn <code>string</code></td>\n<td>Session name.</td>\n</tr>\n<tr>\n<td>pfn <code>string</code></td>\n<td>Participant first name.</td>\n</tr>\n<tr>\n<td>pln <code>string</code></td>\n<td>Participant last name.</td>\n</tr>\n<tr>\n<td>pe <code>integer</code></td>\n<td>Participant email.</td>\n</tr>\n<tr>\n<td>jt <code>datetime</code></td>\n<td>Join time.</td>\n</tr>\n<tr>\n<td>lt <code>datetime</code></td>\n<td>Leave time.</td>\n</tr>\n<tr>\n<td>d <code>time</code></td>\n<td>Duration.</td>\n</tr>\n<tr>\n<td>st <code>string</code></td>\n<td>Session timezone.</td>\n</tr>\n<tr>\n<td>sp <code>string</code></td>\n<td>Session password.</td>\n</tr>\n<tr>\n<td>sac <code>integer</code></td>\n<td>Session access code (for phone dial-in).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","2","{{user_name}}","statistics"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"11019122-3a49-4f62-b3a1-e3f753b8a997","name":"/statistics","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic am9obmRvZTpwYXNzd29yZA==","type":"text"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/statistics"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Fri, 12 Jun 2020 11:18:09 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>641685</id>\n        <aid>662049</aid>\n        <ahfn>Webinar</ahfn>\n        <ahln>FM</ahln>\n        <ahl>api_test_user</ahl>\n        <sid>14374</sid>\n        <sn>New Product Presentation</sn>\n        <st>Europe/Moscow</st>\n        <sp/>\n        <stp>HTML5</stp>\n        <pfn>Webinar</pfn>\n        <pln>FM</pln>\n        <pe>webinar.fm@gmail.com</pe>\n        <pr>1</pr>\n        <jt>2020-06-12 14:00:00</jt>\n        <lt>2020-06-12 15:00:00</lt>\n        <d>01:00:00</d>\n        <sac/>\n    </item>\n    <item>\n        <id>641683</id>\n        <aid>662049</aid>\n        <ahfn>Webinar</ahfn>\n        <ahln>FM</ahln>\n        <ahl>api_test_user</ahl>\n        <sid>14374</sid>\n        <sn>New Product Presentation</sn>\n        <st>Europe/Moscow</st>\n        <sp/>\n        <stp>HTML5</stp>\n        <pfn>Jane</pfn>\n        <pln>Doe</pln>\n        <pe>jane.doe@example.com</pe>\n        <pr>2</pr>\n        <jt>2020-06-12 14:04:30</jt>\n        <lt>2020-06-12 14:55:00</lt>\n        <d>00:50:30</d>\n        <sac/>\n    </item>\n</xml>"}],"_postman_id":"6fd465bd-dcf8-4f1d-bf82-3f2b79cb6dae"},{"name":"/statistics_live","id":"5ba1107c-1c05-47a9-be13-149c085672c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{user_name}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{API_EndPoint}}/api/2/{{user_name}}/statistics_live","description":"<p>Get live connection statistics for the user’s account.</p>\n<h2 id=\"arguments\">Arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>count <code>integer</code></td>\n<td>Optional</td>\n<td>Specify number of returned results. Default is 100.</td>\n</tr>\n<tr>\n<td>offset <code>integer</code></td>\n<td>Optional</td>\n<td>Specify to move the cursor through the recordset. Default is 0.</td>\n</tr>\n<tr>\n<td>return <code>string</code></td>\n<td>Optional</td>\n<td>Choose which fields should be returned by adding a list of semi-colon delimited field names, e. g. <code>.../statistics/days/5/return/id;login;email;last_name</code>. If not defined, a pre-defined subset of fields is returned.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>aid <code>integer</code></td>\n<td>Account id.</td>\n</tr>\n<tr>\n<td>ahfn <code>string</code></td>\n<td>Account holder first name.</td>\n</tr>\n<tr>\n<td>ahln <code>string</code></td>\n<td>Account holder last name.</td>\n</tr>\n<tr>\n<td>ahl <code>string</code></td>\n<td>Account holder login.</td>\n</tr>\n<tr>\n<td>sid <code>integer</code></td>\n<td>Session id.</td>\n</tr>\n<tr>\n<td>sn <code>string</code></td>\n<td>Session name.</td>\n</tr>\n<tr>\n<td>pfn <code>string</code></td>\n<td>Participant first name.</td>\n</tr>\n<tr>\n<td>pln <code>string</code></td>\n<td>Participant last name.</td>\n</tr>\n<tr>\n<td>pe <code>integer</code></td>\n<td>Participant email.</td>\n</tr>\n<tr>\n<td>jt <code>datetime</code></td>\n<td>Join time.</td>\n</tr>\n<tr>\n<td>lpt <code>datetime</code></td>\n<td>Last Ping Time.</td>\n</tr>\n<tr>\n<td>d <code>time</code></td>\n<td>Duration.</td>\n</tr>\n<tr>\n<td>st <code>string</code></td>\n<td>Session timezone.</td>\n</tr>\n<tr>\n<td>sp <code>string</code></td>\n<td>Session password.</td>\n</tr>\n<tr>\n<td>sac <code>integer</code></td>\n<td>Session access code (for phone dial-in).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","2","{{user_name}}","statistics_live"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"82ba4499-0118-487d-b802-5ca9f6537406","name":"/statistics_live","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic am9obmRvZTpwYXNzd29yZA==","type":"text"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/statistics_live"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Fri, 12 Jun 2020 11:32:32 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>640678</id>\n        <aid>662049</aid>\n        <ahfn>Webinar</ahfn>\n        <ahln>FM</ahln>\n        <ahl>api_test_user</ahl>\n        <sid>14374</sid>\n        <sn>New Product Presentation</sn>\n        <st>Europe/Moscow</st>\n        <sp/>\n        <stp>HTML5</stp>\n        <pfn>Webinar</pfn>\n        <pln>FM</pln>\n        <pe>webinar.fm@gmail.com</pe>\n        <pr>1</pr>\n        <jt>2020-06-12 14:31:51</jt>\n        <lpt>2020-06-12 14:32:28</lpt>\n        <d>00:00:37</d>\n        <sac/>\n    </item>\n    <item>\n        <id>640679</id>\n        <aid>662049</aid>\n        <ahfn>Webinar</ahfn>\n        <ahln>FM</ahln>\n        <ahl>api_test_user</ahl>\n        <sid>14374</sid>\n        <sn>New Product Presentation</sn>\n        <st>Europe/Moscow</st>\n        <sp/>\n        <stp>HTML5</stp>\n        <pfn>Jane</pfn>\n        <pln>Doe</pln>\n        <pe>jane.doe@example.com</pe>\n        <pr>2</pr>\n        <jt>2020-06-12 14:32:24</jt>\n        <lpt>2020-06-12 14:32:28</lpt>\n        <d>00:00:04</d>\n        <sac/>\n    </item>\n</xml>"}],"_postman_id":"5ba1107c-1c05-47a9-be13-149c085672c9"}],"id":"0199f806-33de-4458-82c7-ec39fe0b268c","description":"<p>Get usage statistics</p>\n","_postman_id":"0199f806-33de-4458-82c7-ec39fe0b268c"},{"name":"Sessions","item":[{"name":"/sessions","id":"7bd8b1ea-07f6-47d5-95d6-612960a53d21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>Return list of sessions.</p>\n<h2 id=\"arguments\">Arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>count <code>integer</code></td>\n<td>Optional</td>\n<td>Specify number of returned results. Default is 100.</td>\n</tr>\n<tr>\n<td>offset <code>integer</code></td>\n<td>Optional</td>\n<td>Specify to move the cursor through the recordset. Default is 0.</td>\n</tr>\n<tr>\n<td>order <code>string</code></td>\n<td>Optional</td>\n<td>Return results in ascending or descending order of session ID (Depricated in 5.5). Default is asc. Accepted values: asc, desc.</td>\n</tr>\n<tr>\n<td>order_field <code>string</code></td>\n<td>Optional</td>\n<td>Return results in order of this field (Available in 5.5). Default is id. Accepted values: id, topic, start_time, duration, friendly_url, type, advanced_mode.</td>\n</tr>\n<tr>\n<td>order_dir <code>string</code></td>\n<td>Optional</td>\n<td>Return results in ascending or descending order (Available in 5.5). Default is desc.Accepted values: asc, desc.</td>\n</tr>\n<tr>\n<td>return <code>string</code></td>\n<td>Optional</td>\n<td>Specify what fieldset should be in the results. Example: id;topic;start_time (field names separated by semicolons).</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>The id of the edited recording.</td>\n</tr>\n<tr>\n<td>topic <code>string</code></td>\n<td>The name or title of this session.</td>\n</tr>\n<tr>\n<td>start_time <code>datetime</code></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 <code>integer</code></td>\n<td>Duration of the meeting in minutes.</td>\n</tr>\n<tr>\n<td>password <code>string</code></td>\n<td>The session’s access password, required to join. None if empty.</td>\n</tr>\n<tr>\n<td>session_access_code <code>integer</code></td>\n<td>Code to join the session via telephone. Only available if VOIP bridge module is enabled.</td>\n</tr>\n<tr>\n<td>session_link <code>string</code></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 <code>array</code></td>\n<td>An array of objects containing custom fields in the form of custom1, custom2 etc.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[{"id":"32c71c7a-955d-46c5-a449-f11da109a928","name":"/sessions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic am9obmRvZTpwYXNzd29yZA==","type":"text"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Fri, 12 Jun 2020 12:23:42 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <item>\n        <id>14374</id>\n        <advanced_mode>0</advanced_mode>\n        <topic>New Product Presentation</topic>\n        <start_time>2020-06-20 15:00:00</start_time>\n        <duration>60</duration>\n        <password/>\n        <type>html5</type>\n        <session_access_code/>\n        <session_link>https://link.webinar.fm/live/api_test_user/presentation</session_link>\n    </item>\n    <item>\n        <id>14770</id>\n        <advanced_mode>0</advanced_mode>\n        <topic>Corporate Sales Training</topic>\n        <start_time>2020-07-01 14:00:00</start_time>\n        <duration>60</duration>\n        <password/>\n        <type>html5</type>\n        <session_access_code/>\n        <session_link>https://link.webinar.fm/live/api_test_user/corporate_sales</session_link>\n    </item>\n</xml>"}],"_postman_id":"7bd8b1ea-07f6-47d5-95d6-612960a53d21"},{"name":"/session/id/[int]","id":"a341368f-18da-4046-b5ef-73be6a6e5032","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{user_name}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{API_EndPoint}}/api/2/{{user_name}}/session/id/{{session_id}}","description":"<p>Return session data by given id.</p>\n<h2 id=\"arguments\">Arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>Required</td>\n<td>The id of the session to be returned.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"return-arguments\">Return arguments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <code>integer</code></td>\n<td>The id of the edited recording.</td>\n</tr>\n<tr>\n<td>topic <code>string</code></td>\n<td>The name or title of this session.</td>\n</tr>\n<tr>\n<td>start_time <code>datetime</code></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 <code>integer</code></td>\n<td>Duration of the meeting in minutes.</td>\n</tr>\n<tr>\n<td>password <code>string</code></td>\n<td>The session’s access password, required to join. None if empty.</td>\n</tr>\n<tr>\n<td>session_access_code <code>integer</code></td>\n<td>Code to join the session via telephone. Only available if VOIP bridge module is enabled.</td>\n</tr>\n<tr>\n<td>session_link <code>string</code></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 <code>array</code></td>\n<td>An array of objects containing custom fields in the form of custom1, custom2 etc.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","2","{{user_name}}","session","id","{{session_id}}"],"host":["{{API_EndPoint}}"],"query":[],"variable":[]}},"response":[{"id":"d288e721-7621-441e-b218-909dadce8b9d","name":"/session/id/[int]","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic am9obmRvZTpwYXNzd29yZA==","type":"text"}],"url":"{{API_EndPoint}}/api/2/{{user_name}}/session/id/{{session_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Server","value":"nginx/1.17.6"},{"key":"Date","value":"Fri, 12 Jun 2020 12:18:52 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"p3p","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM\""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Set-Cookie","value":"ci_session=s051isnrp5eovv0h2rj85pcqlrgq7kht; expires=Sat, 13-Jun-2020 12:18:52 GMT; Max-Age=86400; path=/; HttpOnly"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xml>\n    <id>14374</id>\n    <advanced_mode>0</advanced_mode>\n    <topic>New Product Presentation</topic>\n    <start_time>2020-06-20 15:00:00</start_time>\n    <duration>60</duration>\n    <password/>\n    <type>html5</type>\n    <session_access_code/>\n    <session_link>https://link.webinar.fm/live/api_test_user/presentation</session_link>\n    <owner_login>api_test_user</owner_login>\n</xml>"}],"_postman_id":"a341368f-18da-4046-b5ef-73be6a6e5032"},{"name":"/session","id":"56738ae2-e760-4232-aee1-d7ca38ffb987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"","description":"<p>Create a new session.</p>\n<p>Full description will be available soon.</p>\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"56738ae2-e760-4232-aee1-d7ca38ffb987"},{"name":"/session","id":"5543f5bf-c0a6-454e-a661-dd5274d595dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"","description":"<p>Edit an existing session.</p>\n<p>Full description will be available soon.</p>\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"5543f5bf-c0a6-454e-a661-dd5274d595dc"},{"name":"/session","id":"0f2b124a-4a6e-42df-b9e8-9c23487ec2be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"","description":"<p>Delete an existing session.</p>\n<p>Full description will be available soon.</p>\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"0f2b124a-4a6e-42df-b9e8-9c23487ec2be"}],"id":"280f9a8d-3f68-4310-9fbc-062da4e87b9e","_postman_id":"280f9a8d-3f68-4310-9fbc-062da4e87b9e","description":""}],"event":[{"listen":"prerequest","script":{"id":"6286d154-e38b-4b90-b207-d9cd19719150","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1f4a2556-23d5-4b8b-b2bd-58bd205b198d","type":"text/javascript","exec":[""]}}]}