For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Order

GET /order/:orderId

Use this method to get a specific order.

Path Parameters

Name
Type
Description

orderId

Number

ID of the order

Headers

Name
Value

Authorization

Basic <token>

Response

 {
    "id": number,
    "name": "string",
    "is_archived": boolean,
    "account": {
        "id": number,
        "name": string
    },
    "advertiser": {
        "id": number,
        "name": string,
    },
    "comment": string
}

Last updated

Was this helpful?