List Orders
GET
/orders
Use this method to get all the orders of your account.
Path Parameters
Name
Type
Description
Required / Optional
id
Number
ID of the account
Optional
Headers
Name
Value
Authorization
Basic <token>
Response
[
{
"id": number,
"name": "string",
"is_archived": boolean,
"account": {
"id": number,
"name": string
},
"advertiser": {
"id": number,
"name": string,
},
}
]
Last updated
Was this helpful?