Quick Support
On this page, you will find descriptions of the API methods intended for working with invitations from the Quick Support section.
Invitation List¶
To get a list of open invitations from the Quick Support section, use the support/list method.
No params.
Example Response
{
"remain":100,
"data":[ {
"id":328,
"status":0,
"create_time":1600262268,
"invite_code":"408080316",
"invite_url":"https://https://go.getscreen.me/invite/408080316",
"connect_url":"https://https://go.getscreen.me/turbo/nrhaStVwQSQ1J4DW0cL4wc1ADUeyug8BZjFaCgEqT4wuFXSPXQrGoRRBUxK1uFTU1Sr7bYlsviZ0djTophpmnIhpaZuMfGSKdSefcDzOWCgJuGeHGA5hFkcflhAXhBrx",
"client_name":"Jacob Williams",
"client_os":"",
"client_preview_url":""
} ]
}
Connection record data:
| Name | Type | Description |
|---|---|---|
id | number | Internal system connection ID |
status | number | Connection status. Possible values:
|
create_time | unixtime | Connection creation date and time |
invite_code | string | Invitation code |
invite_url | string | Invitation URL |
connect_url | string | Operator connection URL |
client_name | string | Client name |
client_os | string | Operating system. Possible values: win, mac, linux and android |
client_preview_url | string | Client desktop thumbnail |
Additional info:
| Name | Type | Description |
|---|---|---|
remain | number | Number of remaining connections within the rate plan |
Invitation Info¶
To get the info about a specific invitation, use the support/info method.
| Parameter | Type | Value |
|---|---|---|
connection_id | number | Internal system invitation ID |
Example Response
{
"data":{
"id":328,
"status":2,
"create_time":1600262268,
"invite_code":"408080316",
"invite_url":"https://https://go.getscreen.me/invite/408080316",
"connect_url":"https://https://go.getscreen.me/turbo/nrhaStVwQSQ1J4DW0cL4wc1ADUeyug8BZjFaCgEqT4wuFXSPXQrGoRRBUxK1uFTU1Sr7bYlsviZ0djTophpmnIhpaZuMfGSKdSefcDzOWCgJuGeHGA5hFkcflhAXhBrx",
"client_name":"Jacob Williams",
"client_os":"win",
"client_preview_url":"https://getscreen.me/preview/f90d07668bccd418a5a8922f2ee455f1eb004c2bbeb5f9fe05ed6970c3389114Zl5PgknTWlU0fWBe4b9YoHNvRlD5Iwl5.png"
}
}
| Name | Type | Description |
|---|---|---|
id | number | Internal system connection ID |
status | number | Connection status. Possible values:
|
create_time | unixtime | Connection creation date and time |
invite_code | string | Invitation code |
invite_url | string | Invitation URL |
connect_url | string | Operator connection URL |
client_name | string | Client name |
client_os | string | Operating system. Possible values: win, mac, linux and android |
client_preview_url | string | Client desktop thumbnail |
Create Invitation¶
To create an invitation and scheduled connection for Quick Support, use the support/create method.
| Parameter | Type | Value |
|---|---|---|
client_name | string | Client name (only visible to you). Optional parameter. |
Example Response
{
"data":{
"id":328,
"status":0,
"create_time":1600262268,
"invite_code":"408080316",
"invite_url":"https://https://go.getscreen.me/invite/408080316",
"connect_url":"https://https://go.getscreen.me/turbo/nrhaStVwQSQ1J4DW0cL4wc1ADUeyug8BZjFaCgEqT4wuFXSPXQrGoRRBUxK1uFTU1Sr7bYlsviZ0djTophpmnIhpaZuMfGSKdSefcDzOWCgJuGeHGA5hFkcflhAXhBrx",
"client_name":"Jacob Williams",
"client_os":"",
"client_preview_url":""
}
}
| Name | Type | Description |
|---|---|---|
id | number | Internal system connection ID |
status | number | Connection status. Possible values:
|
create_time | unixtime | Connection creation date and time |
invite_code | string | Invitation code |
invite_url | string | Invitation URL |
connect_url | string | Operator connection URL |
client_name | string | Client name |
client_os | string | Operating system. Possible values: win, mac, linux and android |
client_preview_url | string | Client desktop thumbnail |
Change Invitation Property¶
To change some property of a invitation, you can use the support/update method.
Optional Fields
You do not have to list all properties in the query. Only the ones you specify will be changed. See the parameters below for a list of fields available for updating.
| Parameter | Type | Value |
|---|---|---|
connection_id | number | Internal system invitation ID |
name | string | Customer Name |
| Name | Type | Description |
|---|---|---|
number | status | Result status. Possible values:
|
Get Connection Link¶
To connect to the invitation with API, you need to get a one-time link with the support/connect method.
Link Expiration Time
The link expires right after its first use. You need to get one each time you want to connect.
| Parameter | Type | Value |
|---|---|---|
connection_id | number | Internal system invitation ID |
video | bool | Manual control of video recording on/off (optional) |
Example Response
| Name | Type | Description |
|---|---|---|
url | string | Connection URL |
Add the Connection Button to Your Dashboard
Learn how to integrate a connection link into your system in the Integrating Remote Access into Your System guide.
Close Invitation¶
To close a invitation, use the support/close method.
| Parameter | Type | Value |
|---|---|---|
connection_id | number | Internal system invitation ID |
The response will be returned empty. To analyze the command execution, use only HTTP response code.