Skip to main content
GET
/
advertisers
/
{advertiserID}
/
transactions
List Payments
curl --request GET \
  --url https://api.embedads.com/advertisers/{advertiserID}/transactions \
  --header 'Authorization: Bearer <token>'
[
    {
        "advertiser_id": 123,
        "id": 456,
        "created_at": "2020-01-01T00:00:00Z",
        "type": "PAYMENT",
        "amount": 100,
        "amount_tax": 10,
        "receipt_url": "https://example.com/receipt"
    }
]

Path Parameters

advertiserID
string
required
The ID of the advertiser.

Query Parameters

limit
string
default:"10"
The maximum number of advertisers to return. Must be between 1 and 20.
page
string
default:"1"
The page number of the results.

Response

advertiser_id
number
The ID of the advertiser.
id
number
The ID of the transaction.
created_at
string
A timestamp of when the transaction was created.
type
string
The type of transaction.
amount
number
The amount of the transaction.
amount_tax
number
The amount of tax for the transaction.
receipt_url
string
The URL of the receipt for the transaction.
[
    {
        "advertiser_id": 123,
        "id": 456,
        "created_at": "2020-01-01T00:00:00Z",
        "type": "PAYMENT",
        "amount": 100,
        "amount_tax": 10,
        "receipt_url": "https://example.com/receipt"
    }
]