DELETE
/api/public/v1/customer-custom-fields/{customFieldId}

Delete a customer custom field

Delete a custom field definition. All stored values for that field are also removed.

Path Parameters

NameTypeRequiredDescription
customFieldIdstring
Required
Custom field ID.
DELETEExample request
curl
curl -X DELETE "https://www.pxb.app/api/public/v1/customer-custom-fields/{customFieldId}" \
  -H "X-Organization-Id: your_org_id" \
  -H "X-API-Key: your_api_key"
200Example response
json
{
  "message": "Customer custom field deleted successfully.",
  "content": {}
}