Overview
The Display Order field controls the order in which events are shown to users on the offer card (UI). This field does not affect conversion logic, which remains tied to the sequence field.
Sequence: Defines the logical flow/order in which conversions must occur.
Display Order: Defines how events are visually displayed on the offer card.
This separation allows you to strategically place independent events or reorder events for presentation purposes without impacting conversion rules.
You can set the display order for each individual event in Step 4, Events, of your multi event offer.
Offerwall & Custom Integrations API
Each event in the events array now includes a new display_order field.
Custom Integrations Sample:
"offerEvents": [
{
"eventId": "string",
"name": "string",
"showOnOfferWall": true,
"displayOrder": 0,
"sequenceNumber": 0,
"minTimeFromPreviousEvent": 0,
"deadlineDays": 0,
"pendingTime": 0,
"revenue": 0,
"reward": 0,
"useDefaultRatio": true,
"dailyCap": 0,
"weeklyCap": 0,
"monthlyCap": 0,
"allTimeCap": 0,
"allowRepetitions": true
Notes:
display_orderis always sequential (1...N).display_orderis a required fieldIndependent events can be placed anywhere in the display order.
Key Points
Display Order is purely for presentation. It does not replace or override the conversion sequence.
If events are reordered in the UI, the API automatically reflects the updated display_order.
