DCS Region API Methods 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 list-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 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.

recommendation-more-help
de293fbf-b489-49b0-8daa-51ed303af695