Skip to main content

Client Network Vendor Attributes

info

This API isn't supported anymore and will be removed soon

List networks

List the vendor attributes for client Networks.
curl --location -X POST 'management/v0/client-network-vendor-attributes' \
-H 'X-API-KEY: <API KEY>'

Request

The message body for /client-network-vendor-attribute is a filter object:

{
"filter": {
"matches": [
{
"dimension": "network.vendor",
"operator": "~",
"values": [
"unity"
]
}
]
}
}

You can filter on the following dimensions:

DimensionDescription
network.vendorThe name of the Network
clientNetworkVendorAttribute.nameThe name of the attribute

If you don't want to filter the list, you can use an empty object in the request body:

`{}`

Response

{
"total": 2,
"results": [
{
"id": 1,
"name": "campaignSetId",
"vendor": "unity",
"createdAt": "2021-07-15T12:33:58Z",
"updatedAt": "2021-07-15T12:33:58Z"
},
{
"id": 2,
"name": "clientCustomerId",
"vendor": "adwords",
"createdAt": "2021-07-29T10:14:24Z",
"updatedAt": "2021-07-29T10:14:24Z"
}
]
}
NameTypeDescription
totalintThe total number of attributes based on the filter.
resultsarray of objectsAn array containing attribute details, including the attribute's ID, name, and Network (vendor).