Skip to main content
POST
/
advertisers
/
{advertiserId}
/
measurement-records
Upload measurement records
curl --request POST \
  --url https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/measurement-records \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "records": [
    {
      "outcomeType": "<string>",
      "geo": "<string>",
      "timeWindowStart": "2023-12-25",
      "timeWindowEnd": "2023-12-25",
      "value": 123,
      "source": "<string>",
      "baselineValue": 123,
      "confidenceInterval": 123,
      "lagDays": 0
    }
  ]
}
'
{
  "data": null,
  "error": {
    "code": "<string>",
    "message": "<string>",
    "field": "<string>",
    "details": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.interchange.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key or access token

Path Parameters

advertiserId
string
required

Unique identifier for the advertiser

Minimum string length: 1
Example:

"12345"

Body

application/json
records
object[]
required
Required array length: 1 - 5000 elements

Response

Upload measurement records