View Campaign group


                https://api.ocamba.com/v2/adex/groups/{id}
            

Retrieves the details of a Campaign group that has previously been created if a valid identifier was provided


Name
Description
idstringrequired
Unique campaign group id.


Example: 1411

Name
Description
fieldsstring
The client can request more efficient filtered representation of the resource showing only specific field(s), using the “fields” query parameter. Note that the “fields” parameter has precedence over the “view” parameter.

Example GET /VERSION/adex/RESOURCE_NAME?fields=id,name

See "Tips" for the list of filterable parameters.


Example: fields=field1,field2,field3


200 - OK
Arrow
Name
Description
An array of all created items.
Campaign Group
Name
Description
colorstring
Valid hex color code.


Example: #00efa7

create_timedateTime
Timezone: GMT.


Example: 2021-09-29 15:40:10

idstring
A unique identifier generated by the Ocamba platform.


Example: 103

itemsarray
List of campaigns to be included in group. This field is only used for POST request.


Example: \"1234\",\"5678\"

namestring
Max 30 chars. Name may only contain letters, numbers, dashes and underscores.


Example: My-group

sizenumber (integer)
Number of campaigns in group. This field is automatically set to number of campaigns in group.


Example: 3

update_timedateTime
Timezone: GMT.


Example: 2021-09-29 15:40:10

totalinteger
A total number of items.


Example: 1
tip
1 If you don't know the campaign group id, list the campaign groups to find it.
200 Arrow
{
  "total": 1,
  "items": [
    {
      "id": "103",
      "company_id": "6197120",
      "name": "My-group",
      "color": "#00efa7",
      "size": 3,
      "create_time": "2021-09-29 15:40:10",
      "update_time": "2021-09-29 15:40:10"
    }
  ]
}
{
  "total": 1,
  "items": [
    {
      "id": "103",
      "name": "My-group",
      "color": "#00efa7",
      "size": 3,
      "items": "\\\"1234\\\",\\\"5678\\\"",
      "create_time": "2021-09-29 15:40:10",
      "update_time": "2021-09-29 15:40:10"
    }
  ]
}