Sign in

Create contact

documented

Create a new contact (email/SMS or both) with attributes.

POST /v3/contactsContact Managementno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.brevo.com/v3/contacts" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "api-key: {{SENDINBLUE_API_KEY}}" \
  -d '{"email": "{{$email}}", "attributes": {"FNAME": "{{$firstName}}", "LNAME": "{{$lastName}}", "SMS": "{{$sms}}"}, "listIds": [{{$listId}}], "ext_id": "{{$ext_id}}", "updateEnabled": {{$updateEnabled}}}'
Create contact · Brevo · OpenIntegrations