Client Network Vendor Attributes

This API is not 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:

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"
        }
    ]
}

Last updated