TEASEDocs
API ReferenceSmart Links

Dress a pack of countries at once

Dress a whole pack of countries from the pool in one call, with no per-link confirmation. The engine assigns a distinct spare to each country. Ideal for filling a new domain's per-country inventory.

Authorization

bearerAuth
AuthorizationBearer <token>

Your al_live_<prefix>_<secret> API key. Mint and manage keys in the dashboard.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

POST
/api/admin/free-pool/dress-batch
curl -X POST "https://example.com/api/admin/free-pool/dress-batch" \  -H "Content-Type: application/json" \  -d '{    "domain": "string"  }'
{  "domain": "yourdomain.com",  "arm": "paid",  "requested": 4,  "dressed": 4,  "reused": 0,  "fallback": 0,  "results": [    {      "dressed": true,      "country": "US",      "arm": "paid",      "provider_id": "104887",      "link_id": 156    }  ]}