Create a promotion
fileFormat, promotionName, channelIds (at least one), productIds (at least one), and jurisdictionId.
publicId is the short, human-readable identifier shown to reviewers (for example 42). Use it when referencing a promotion in support requests or your own UI.
Metadata
Themetadata field accepts an arbitrary string-to-string map (up to 20 keys). Use it to pass through your own reference IDs, such as Workfront project and task IDs. Adclear stores it with the promotion and echoes it back in every webhook payload, so you can correlate Adclear events to your system without maintaining a separate mapping. Do not store PII, credentials, or sensitive data.
Text promotions
WhenfileFormat is "text", provide the content field instead of uploadIds. The content field accepts plain text or HTML.
Handling upload conflicts
If a referenced file hasn’t finished uploading, the request returns409 Conflict with a details entry of type upload_not_ready. Poll GET /v1/uploads/{uploadId} until each upload’s status is completed, then retry. Use exponential back-off (1s, 2s, 4s, up to ~30s). Small files complete within seconds; files over 100 MB may take longer.
Create a variation set
Variations are linked promotions that share a core message but differ by format, channel, or jurisdiction (for example the same ad localised for several markets). Each variation is reviewed independently, and they are grouped so a reviewer sees them together. Create a whole set in one call by sending avariations array instead of a single content set.
publicId base with letter suffixes (45-A, 45-B) marks them as one group.
Shared vs per-variation fields
- Send 2 to 20 variations per request.
variationscannot be combined with top-leveluploadIds,content,fileFormat,channelIds, orjurisdictionId.- One file per variation. For multiple files in a single promotion, use a carousel instead.
- All or nothing: if any variation fails validation, the whole request is rejected and nothing is created.
versionId, the same as a single promotion. To revise one variation after review, create a new version on that variation’s promotionId (see below). The other variations are untouched.
Submit a revision
If a promotion needs changes after review, upload the new file(s) (see File upload), then create a new version on the same promotion. The new version inherits the promotion’s name, channels, products, and jurisdiction. Supply only the new files and any fields you want to override.version. Then trigger evaluation on the new version. Each version is evaluated independently, and previous results are retained for audit.
Create-version fields
Inherited vs. overridable.
promotionName, channelIds, productIds, and jurisdictionId are set once at promotion creation and can’t change per version. Everything else above can be overridden; omitted fields carry forward from the previous version.
Frequently asked questions
Which fileFormat value should I use?
Which fileFormat value should I use?
The
fileFormat must match the file you uploaded. A .pdf upload uses fileFormat: "pdf", not "document".Can I delete or archive a promotion via the API?
Can I delete or archive a promotion via the API?
No. The API doesn’t support deleting or archiving promotions. They’re retained for compliance audit purposes.