curl --request PATCH \
--url https://app.journeybee.io/api/v1/custom-fields \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"customFields": [
{
"id": 123,
"label": "<string>",
"required": true,
"shared": true,
"options": [
{}
]
}
]
}
'