List projects
List all folders and projects, whether they are active or not.
Request | |
---|---|
Method | GET |
Resource | https://[customer].asp.virtual-call-center.eu/v2/projects |
Options | N/A |
Body | N/A |
Response | |
Body | Project array, encoded in JSON |
Request
Resource parameters
Name | Type | Mandatory | Comment |
---|---|---|---|
customer | string | yes | Your call centre’s unique identifier (subdomain). |
Response
Response object
Name | Type | Comment |
---|---|---|
container | boolean | Always false. Deprecated. |
folder | string | Folder name. |
folderid | integer | Unique folder identifier. |
name | string | Project name. |
projectid | integer | Unique project identifier. |
status | string | Project status. Possible values: – active – inactive |
Example
Request
URL: https://mycc.asp.virtual-call-center.eu/v2/projects
Response body
{
"response": [
{
"projectid": 1,
"name": "Sales - Budapest",
"status": "active",
"folderid": 1,
"container": false,
"folder": "Sales"
},
{
"projectid": 2,
"name": "Sales - Berlin",
"status": "active",
"folderid": 1,
"container": false,
"folder": "Sales"
},
{
"projectid": 3,
"name": "Script test",
"status": "active",
"folderid": 0,
"container": false,
"folder": "0"
},
{
"projectid": 4,
"name": "Inbound CC",
"status": "active",
"folderid": 2,
"container": false,
"folder": "Inbound"
}
],
"errors": []
}
Comments
Can’t find what you need? Use the comment section below to connect with others, get answers from our experts, or share your ideas with us.
There are no comments yet.