Skip to main content

Networks

List networks

List networks return the list of networks for the current user's organization.

curl --location -X POST 'https://api.justtrack.io/management/v0/networks' \
-H 'X-API-KEY: <API KEY>'

Request

The message body for 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

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

`{}`

Response

{
"result": [
{
"id": int,
"name": "string",
"vendor": "string",
"spendCurrency": "string",
"createdAt": "string",
"updatedAt": "string"
}
]
}
NameTypeDescription
idintID of the network
namestringName of the network
vendorstringName of the vendor
spendCurrencystringSpend currency
createdAtstringThe date of network creation.
updatedAtstringThe date of last network update.