Custom Fields
Custom Fields allow you to add extra information about your contacts to your contact database. With custom fields, you can create custom segments from your individual contacts or from your contact database that will dynamically update your content with the values for the individual contact receiving the email. Your custom fields are completely customizable to the use cases and user information that you need.
You can also manage your Custom Fields using the Custom Fields UI in the Marketing Campaigns App. For more about creating Custom Fields, including a list of Reserved Fields, see our Custom Fields documentation.
Create Custom Field Definition
POST /v3/marketing/field_definitions
Base url: https://api.sendgrid.com
This endpoint creates a new custom field definition.
Custom field definitions are created with the given name
and field_type
. Although field names are stored in a case-sensitive manner, all field names must be case-insensitively unique. This means you may create a field named CamelCase
or camelcase
, but not both. Additionally, a Custom Field name cannot collide with any Reserved Field names. You should save the returned id
value in order to update or delete the field at a later date. You can have up to 120 custom fields.
The custom field name should be created using only alphanumeric characters (A-Z and 0-9) and underscores (_). Custom fields can only begin with letters A-Z or underscores (_). The field type can be date, text, or number fields. The field type is important for creating segments from your contact database.
Note: Creating a custom field that begins with a number will cause issues with sending in Marketing Campaigns.
Authentication
- API Key
Headers
Request Body
{
"name": "custom_field_name",
"field_type": "Text"
}
Responses
{
"id": "a1_D",
"name": "custom_field_name",
"field_type": "Date"
}
Need some help?
We all do sometimes. Get help now from the Twilio SendGrid Support Team.
Running into a coding hurdle? Lean on the wisdom of the crowd by browsing the SendGrid tag on Stack Overflow or visiting Twilio's Stack Overflow Collective.