Skip to main content

Retailer flyer data specifications

Use the retailer_flyer_data object to associate flyer deals with an item. The object is keyed by flyer identifier (lowercase alphanumeric with hyphens).

Parameters

The retailer_flyer_data object accepts the following parameters.

FieldTypeRequiredDescription
starts_atstringyesThe date and time when the flyer deal begins, in ISO 8601 format. For example, 2025-01-15T14:30:00Z.
ends_atstringyesThe date and time when the flyer deal ends, in ISO 8601 format. For example, 2025-01-15T14:30:00Z.
activity_idstringnoThe activity identifier for this flyer deal.
pageintegernoThe page number in the flyer where this item appears.
top_dealbooleannoWhether this item is featured as a top deal in the flyer.

Example

{
"lookup_code": "1234567890",
"store_identifier": "1234",
"retailer_flyer_data": {
"weekly-flyer-2025-01": {
"starts_at": "2025-01-15T00:00:00Z",
"ends_at": "2025-01-21T23:59:59Z",
"activity_id": "act-456",
"page": 3,
"top_deal": true
}
}
}