Should you notice any errors in our documentation, please don’t hesitate to contact us. Thank you!
| name | type | default | info |
|---|---|---|---|
| emboss_line_1 | string | NONE | OPTIONAL |
| emboss_line_2 | string | NONE | OPTIONAL |
| image_id | string | NONE | OPTIONAL |
| replacement | boolean | NONE | OPTIONAL |
| voucher_owner | voucher owner object | NONE | OPTIONAL |
| voucher_configuration | voucher configuration object | NONE | OPTIONAL |
| name | type | default | info |
|---|---|---|---|
| title | string | NONE | OPTIONAL |
| first_name | string | NONE | OPTIONAL |
| last_name | string | NONE | OPTIONAL |
| identifier | string | NONE | OPTIONAL |
| string | NONE | OPTIONAL | |
| address_line_1 | string | NONE | OPTIONAL |
| address_line_2 | string | NONE | OPTIONAL |
| zip_code | string | NONE | OPTIONAL |
| city | string | NONE | OPTIONAL |
| country_code | string | NONE | OPTIONAL |
| name | type | default | info |
|---|---|---|---|
| type | string | NONE | REQUIRED, can be classic, regional, national or lunch |
| postal_data_id | string | NONE | REQUIRED if regional |
| merchant_id | string | NONE | REQUIRED if national |
curl --location --request PUT 'https://www-staging.givve.com/api/card_orders//entries/' \
--header 'Accept-Version: v2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"emboss_line_1": "string",
"emboss_line_2": "string",
"image_id": "string",
"replacement": false,
"voucher_owner_id": "string",
"voucher_owner": {
"title": "string",
"first_name": "string",
"last_name": "string",
"identifier": "string",
"email": "string",
"address_line_1": "string",
"address_line_2": "string",
"zip_code": "string",
"city": "string",
"country_code": "string"
},
"voucher_configuration": {
"type": "string",
"postal_data_id": "string",
"merchant_id": "string"
}
}'{}