Groups
API URL
URL used to send HTTP requests:
https://portal.bulkgate.com/api/1.0/subscribe/groups
POST /api/1.0/subscribe/groups HTTP/1.1
Host: portal.bulkgate.com
Content-Type: application/json
Cache-Control: no-cache
Parameters table
| PARAMETER NAME | VALUE | MANDATORY | DEFAULT VALUE |
|---|---|---|---|
| application_id | Application ID | Yes | - |
| application_token | Application token | Yes | - |
Example of full request
POST /api/1.0/subscribe/groups HTTP/1.1
Host: portal.bulkgate.com
Content-Type: application/json
Cache-Control: no-cache
{
"application_id": "####",
"application_token": "##################################################",
}
Response to this command may be:
In case of success:
{
"data": {
"groups": {
"1": "Drums",
"2": "Guitars",
"3": "Flutes",
"4": "Pianos",
"5": "Violins",
"6": "Basses",
"7": "Cymbals"
}
}
}