> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mailofly.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Contact Property

> Update display metadata or configuration for an existing contact property.

Update the label or description for a contact property schema.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the contact property.
</ParamField>

### Body Parameters

<ParamField body="label" type="string">
  The new display label.
</ParamField>

### Response

<ResponseField name="data" type="object">
  <ResponseField name="id" type="string">The property ID.</ResponseField>
  <ResponseField name="name" type="string">Field key name.</ResponseField>
  <ResponseField name="label" type="string">Updated display label.</ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X PATCH https://api.mailofly.com/api/v1/contact-properties/prop_123 \
    -H "Authorization: Bearer mf_live_your_api_key" \
    -H "Content-Type: application/json" \
    -d '{
      "label": "Customer Plan Tier"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "id": "prop_123",
      "name": "plan_tier",
      "label": "Customer Plan Tier"
    }
  }
  ```
</ResponseExample>


## Related topics

- [Update Contact](/api/contacts/update-contact.md)
- [Delete Contact Property](/api/contact-properties/delete-contact-property.md)
- [Create Contact Property](/api/contact-properties/create-contact-property.md)
- [Retrieve Contact Property](/api/contact-properties/retrieve-contact-property.md)
- [List Contact Properties](/api/contact-properties/list-contact-properties.md)
