Credit types
Issuing a credit to a profile
Reading credits for a profile
is_active field: true when the credit is issued, not expired, and has value_remaining above zero. A credit with no expires_at never expires and can still be active.
Filtering by active status
Usefilter[active] to return only the credits a profile can spend right now, or only the ones it cannot:
filter[active]=1 returns active credits only. filter[active]=0 returns every other credit (not yet issued, expired, or with no value_remaining left). This filter combines with any other filter[...] parameter, and meta.total reflects the filtered count.
Reading a specific credit
Redeeming a credit
Credit redemption is typically handled at the point of sale or checkout and is recorded as a payment type on the transaction. Include credits as part of thepayments array when creating a transaction, or handle redemption via your POS/eCommerce platform’s Credit integration with Omneo.
Content needed: full credit redemption flow via API, gift card creation and transfer workflow, multi-credit redemption in a single transaction, and currency conversion behaviour.