update_custom_field
Modify an existing custom field definition in SendGrid by updating its name using the field ID, allowing you to maintain organized contact data structures.
Instructions
Update an existing custom field definition
Input Schema
Name | Required | Description | Default |
---|---|---|---|
field_id | Yes | ID of the custom field to update | |
name | Yes | New name for the custom field |
Input Schema (JSON Schema)
{
"properties": {
"field_id": {
"description": "ID of the custom field to update",
"type": "string"
},
"name": {
"description": "New name for the custom field",
"type": "string"
}
},
"required": [
"field_id",
"name"
],
"type": "object"
}