create_contact
Add new contacts to your SendGrid account with email addresses, names, and custom fields for email marketing campaigns and contact management.
Instructions
Create new contacts in your SendGrid account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contacts | Yes | Array of contact objects |
Input Schema (JSON Schema)
{
"properties": {
"contacts": {
"description": "Array of contact objects",
"items": {
"additionalProperties": false,
"properties": {
"custom_fields": {
"additionalProperties": {},
"description": "Custom field values",
"type": "object"
},
"email": {
"description": "Contact email address",
"type": "string"
},
"first_name": {
"description": "First name",
"type": "string"
},
"last_name": {
"description": "Last name",
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"contacts"
],
"type": "object"
}