curl --location --request PUT 'https://numueg.app/api/v1/stores//settings/checkout-fields' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"standard_fields": {
"property1": {
"enabled": true,
"required": false
},
"property2": {
"enabled": true,
"required": false
}
},
"custom_fields": [
{
"id": "string",
"label": "string",
"label_ar": "string",
"type": "string",
"required": false,
"placeholder": "string",
"options": [
"string"
],
"position": 0
}
],
"identity": {
"require_verification": true,
"nudge_enabled": true,
"nudge_min_items": 1,
"nudge_min_value_cents": 0,
"nudge_delay_seconds": 45
}
}'