DCS Region API Methods
Methods that let you programmatically list Audience Manager DCS regions.
For a list of regions and their corresponding integers, see DCS Region IDs, Locations, and Host Names.
List a Specific DCS Region
A GET
method to list a specific DCS region.
Request
GET /v1/dcs-regions/
<id>
Sample Response
{
"regionId" : <id>,
"location" : "<location>",
"host" : "<host>",
"code" : "<code>",
"status" : "ACTIVE" | "INACTIVE",
"createTime" : long of milliseconds since epoch,
"updateTime" : long of milliseconds since epoch,
"crUID" : <userId who created>,
"upUID" : <userId who updated>
}
Returns 200 OK
if successful.
For a list of regions and their corresponding integers, see DCS Region IDs, Locations, and Host Names.
List DCS Regions
A GET
method to list DCS regions.
Request
GET /v1/dcs-regions/
Sample Response
[
{
"regionId" : <id>,
"location" : "<location>",
"host" : "<host>",
"code" : "<code> # APSE, USE, etc,
"status" : "ACTIVE" | "INACTIVE",
"createTime" : long of milliseconds since epoch,
"updateTime" : long of milliseconds since epoch,
"crUID" : <userId who created>,
"upUID" : <userId who updated>
},
...
]
Returns 200 OK
if successful.
For a list of regions and their corresponding integers, see DCS Region IDs, Locations, and Host Names.
de293fbf-b489-49b0-8daa-51ed303af695