GET https://api.groovehq.com/v1/groups
Status: 200 OK
{
"groups": [{
"id": "1234442341",
"name": "Founders",
"links": {
"agents": {
"href": "http://api.groovehq.com/v1/agents?group=1234442341"
}
}
}]
}
GET https://api.groovehq.com/v1/groups/:id
Status: 200 OK
Location: https://api.groovehq.com/v1/groups/4517239960
{
"group": {
"id": "4517239960",
"name": "Support",
"description": "Support Team",
"links": {
"agents": {
"href": "https://api.groovehq.com/v1/agents?group=4517239960"
}
},
"agent_ids": [
"3328848992",
"5928492716",
]
}
}
POST https://api.groovehq.com/v1/groups
Name | Type | Required | Default | Notes |
---|---|---|---|---|
name | string | Yes | The name of the group | |
description | string | No | A short description of the group | |
agents | array | No | Array of agent emails or ids to assign to the group |
Status: 201 Created
Location: https://api.groovehq.com/v1/groups
{
"group": {
"id": "4517239960",
"name": "Support",
"description": "Support Team",
"links": {
"agents": {
"href": "https://api.groovehq.com/v1/agents?group=4517239960"
}
},
"agent_ids": [
"3328848992",
"5928492716",
]
}
}
PUT https://api.groovehq.com/v1/groups/:group_id
Name | Type | Required | Default | Notes |
---|---|---|---|---|
name | string | No | The name of the group | |
description | string | No | A short description of the group | |
agents | array | No | Array of agent emails or ids that are members of the group |
Status: 200 OK
Location: https://api.groovehq.com/v1/groups/4517239960
{
"group": {
"id": "4517239960",
"name": "Support",
"description": "Awesome Support Team",
"links": {
"agents": {
"href": "https://api.groovehq.com/v1/agents?group=4517239960"
}
},
"agent_ids": [
"3328848992",
"5928492716",
]
}
}
DELETE https://api.groovehq.com/v1/groups/:id
Status: 200 OK
Location: https://api.groovehq.com/v1/groups/4517239960
{
"group": {
"id": "4517239960",
"name": "Support",
"description": "Support Team",
"links": {
"agents": {
"href": "https://api.groovehq.com/v1/agents?group=4517239960"
}
},
"agent_ids": [
"3328848992",
"5928492716",
]
}
}