View Campaign group
View Campaign group
GET
https://api.ocamba.com/api/v1/adex/campaign-groups/{id}
Retrieves the details of a Campaign group that has previously been created if a valid identifier was provided
Path parameters
parametersQuery parameters
parametersResponse schemas
›
200
application/json
GET https://api.ocamba.com/api/v1/adex/campaign-groups/{id} HTTP/1.1
Host: api.ocamba.com
Authorization: Bearer YOUR_SECRET_TOKEN
curl -X GET "https://api.ocamba.com/api/v1/adex/campaign-groups/{id}" \
-H "Authorization: Bearer $TOKEN"
fetch("https://api.ocamba.com/api/v1/adex/campaign-groups/{id}", {
method: "GET",
headers: { Authorization: `Bearer ${TOKEN}` }
}).then(r => r.json());
$ch = curl_init("https://api.ocamba.com/api/v1/adex/campaign-groups/{id}");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer $token"
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
Responses
200 OK
HTTP/1.1 200 OK
Content-Type: application/json
{
"total": 1,
"items": [
{
"id": "103",
"name": "My-group",
"color": "#00efa7",
"campaign_count": "8",
"create_time": "2021-09-29 15:40:10"
}
]
}
Responses
Tip
1
If you don’t know the campaign group id, list the campaign groups to find it.