Should you notice any errors in our documentation, please don’t hesitate to contact us. Thank you!
name | type | default | info |
---|---|---|---|
save_mode | string | NONE | REQUIRED, can be 0 1 all_or_nothing best_effort |
entries | entry aray | NONE | REQUIRED |
name | type | default | info |
---|---|---|---|
voucher_token | string | NONE | OPTIONAL/REQUIRED |
voucher_id | string | NONE | OPTIONAL/REQUIRED |
amount[cents] | string | NONE | OPTIONAL |
curl --location --request POST 'https://www-staging.givve.com/api/unload_orders//entries/bulk' \
--header 'Authorization: Bearer ' \
--header 'Accept-Version: v2' \
--header 'Content-Type: application/json' \
--data-raw '{
"save_mode": "all_or_nothing",
"entries": [{
"voucher_token": "string",
"voucher_id": "string",
"amount": {
"cents": "10000"
}
}]
}'
{}