To create segment groups, use the POST method

https://dmpapi.admixer.net/AudienceAPI/SegmentGroup

In the GET request, use the following parameters:

Parameter Description Comment
name Segment group name Maximum number of characters – 256
cpmPrice Price for using segment group data (CPM) Account currency is applied. Integer
dmpProvoder DMP Provider ID To get to know the ID of DMP Provider/Providers use this doc. 

For example,

https://dmpapi.admixer.net/AudienceAPI/SegmentGroup?name=MySegmentGroup&cpmPrice=5&dmpProvider=1111

where MySegmentGroup is the name of the new segment group, 5 its price, 1111- is the ID of DMP Provider where a new segment group is created.

In response, you get JSON with the newly created segment group’s ID and a message about successful completion.

Expand an example of the JSON response with newly created segment group’s ID
{
    "data": 3546,
    "message": "Segment group was created successfully"
}

If you want a list of current segment groups, use the POST method

https://dmpapi.admixer.net/AudienceAPI/SegmentGroups

Expand an example of the JSON response with a list of current segment groups
{ 
"id": 35,
"name": "Own",
"cpmPrice": 0.00
}

where

id segment group ID
name segment group name
cpmPrice its price in account currency
dmpProvider dmpProvider ID
Updated on April 28, 2023