Should you notice any errors in our documentation, please don’t hesitate to contact us. Thank you!
name | type | default | info |
---|---|---|---|
voucher_category | string | NONE | OPTIONAL, defaults to mixed, can be mixed, unlimited, benefit_in_kind, lunch, or public_sector |
description | string | NONE | OPTIONAL, can't be blank string |
schedule | string | NONE | OPTIONAL, defaults to monthly, can be monthly or yearly |
due_date | date | NONE | OPTIONAL |
is_top_up | boolean | NONE | OPTIONAL |
day_of_month | integer | NONE | REQUIRED |
month_of_year | integer | NONE | REQUIRED IF schedule type is yearly |
curl --location --request POST 'https://www-staging.givve.com/api/scheduled_load_orders' \
--header 'Authorization: Bearer ' \
--header 'Accept-Version: v2' \
--header 'Content-Type: application/json' \
--data-raw '{
"description": "some text",
"day_of_month": 5,
"month_of_year": 10,
"schedule": "yearly"
}'
{}