Skip to main content
POST
/
bulk_generate_attribution_links
Generate attribution links in bulk
curl --request POST \
  --url https://api.example.com/bulk_generate_attribution_links \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "links": [
    {
      "asin": "<string>",
      "link_name": "<string>",
      "marketplace": "amazon.com"
    }
  ],
  "email": "you@example.com"
}
'
{
  "job_id": "<string>",
  "queued_count": 123,
  "email": "<string>",
  "status": "queued"
}

Documentation Index

Fetch the complete documentation index at: https://docs.archeraffiliates.com/llms.txt

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

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Inputs for kicking off a bulk attribution-link generation job.

The ASINs to generate attribution links for. Up to 5,000 per request.

Required array length: 1 - 5000 elements
email
string | null

Where to send the finished CSV. Defaults to the email on your account when omitted.

Example:

"you@example.com"

Response

Successful Response

The receipt you get back after queueing a bulk link job.

job_id
string
required

Identifier you can reference in support — included in the CSV email.

queued_count
integer
required

How many ASINs were accepted for processing.

email
string
required

Where the CSV will be delivered when the job finishes.

status
string
default:queued

Always queued for a fresh request.