curl --request PUT \
--url https://api.splose.com/v1/patients/{id}/custom-field \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"customFieldData": [
{
"customFieldId": 123,
"value": "<string>"
}
]
}
'