create_custom_field
Add custom fields to SendGrid contacts to store additional data like text, numbers, or dates for enhanced contact management and segmentation.
Instructions
Create a new custom field for contacts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
field_type | Yes | Type of the field | |
name | Yes | Name of the custom field |
Input Schema (JSON Schema)
{
"properties": {
"field_type": {
"description": "Type of the field",
"enum": [
"Text",
"Number",
"Date"
],
"type": "string"
},
"name": {
"description": "Name of the custom field",
"type": "string"
}
},
"required": [
"name",
"field_type"
],
"type": "object"
}