Added
v0.0.31
5 months ago by Mikolaj Domanski
v0.0.31
New features
- Filter merchants by
Offerdelivery format- The
Offertype in thegetMerchantsresponse now includes adeliveryFormatfield, which specifies how the offer is fulfilled. - The
getMerchantsquery has been enhanced with a newfilterByargument, allowing you to filter results to only include merchants with offers matching a specificdeliveryFormat.
- The
The new deliveryFormat field can have one of the following enum values:
enum DeliveryFormatType {
URL
CODES
PIN_AS_CODE
PIN_WITH_URL
}For example, to fetch only merchants that have gift card offers delivered via URL, send the following in your query variables:
"filterBy": {
"deliveryFormat": URL
}