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.
This endpoint allows you to update a defined Custom Field.
Only your Custom fields can be modified; Reserved Fields cannot be updated.
Bearer <<YOUR_API_KEY_HERE>>
application/json
1
Max length: 100
1
Max length: 100
Text
Number
Date
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const custom_field_id = "ZGkrHSypTsudrGkmdpJJ";5const data = {6"name": "new_custom_field_name"7};89const request = {10url: `/v3/marketing/field_definitions/${custom_field_id}`,11method: 'PATCH',12body: data13}1415client.request(request)16.then(([response, body]) => {17console.log(response.statusCode);18console.log(response.body);19})20.catch(error => {21console.error(error);22});