Get Demands

GET /api/demand

Response
Attribute Name
Summary
Possible Values
vastIdDemand Idint
nameDemand Namestring
cpmDemand CPMfloat
urlDemand URLstring
is_mobile_webIs mobile web tag0/1
is_mobile_appIs mobile app tag0/1
is_desktopIs desktop tag0/1
is_ctv
Is CTV tag
0/1
activeIs Demand active0/1
user_mvrVAST Requests Limitfrom 1 to 5 (highest)
vast_typeDemand Type

0 - Vast

1 - CedatoX

parentNetworkIdDemand partner network Id (for CedatoX Demands only)int
domain_list_typeList restriction type

1 - white list

2- black list

Sample Request

curl -X GET \
-H 'accept: application/json' \
-H 'api-version: 1' \
-H 'authorization: Bearer '

Sample Response

{
    "status": "OK",
    "data": [
        {
            "vastId": "1",
            "name": "myVast1",
            "CPM": null,
            "url": "http://mydsp.com/getvast1",
            "is_mobile_web": "0",
            "is_mobile_app": "0",
            "is_desktop": "1",
            "active": "0",
            "user_mvr": 5,
            "vast_type": "0",
            "parentNetworkId": null,
            "domain_list_type": "0"
        },
        {
            "vastId": "2",
            "name": "myVast2",
            "CPM": "8",
            "url": "http://mydsp.com/getvast2",
            "is_mobile_web": "1",
            "is_mobile_app": "0",
            "is_desktop": "o",
            "active": "1",
            "user_mvr": 5,
            "vast_type": "0",
            "parentNetworkId": null,
            "domain_list_type": "1"
        }     
       
    ]
}