offer_extra_id¶
Only return results that include the specified offer extras. If you prefix this with exclude, than only results are returned that don’t include these offer extras.
| accepts | one or more integers |
| default | none |
Examples¶
Only get results for offer extra with id 5:
GET /portal/api/propositions?offer_extra_id=5
Only get results for offer extra with ids 2, 3 and 5:
GET /portal/api/propositions?offer_extra_id[]=2&offer_extra_id[]=3&offer_extra_id[]=5
Only get results for offer extra without ids 2, 3 and 5:
GET /portal/api/propositions?exclude_offer_extra_id[]=2&exclude_offer_extra_id[]=3&exclude_offer_extra_id[]=5