For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Help CenterAPI KeysStatusSign In
GuidesAPI ReferenceChangelog
GuidesAPI ReferenceChangelog
  • Getting started
    • Overview
    • Quickstart
    • Authentication
    • Rate limits
  • Messaging API
    • Send transactional email
    • Send transactional SMS
    • Send transactional WhatsApp
  • Marketing Platform
    • Manage your contacts
    • Track website activity
    • Send WhatsApp campaigns
    • Weekly event exports
  • Webhooks
    • Getting started
    • Conversations webhooks
    • Payment webhooks
    • Marketing webhooks
    • Transactional webhooks
    • Loyalty webhooks
    • Batched webhooks
    • Secure webhook calls
    • Meetings and phone webhooks
    • Push notification webhooks
    • Sales CRM webhooks
  • Conversations
    • Getting started
    • Customize the chat widget
    • JavaScript API reference
    • REST API reference
    • Conversations webhooks
  • eCommerce
    • Activate eCommerce app
    • Manage product categories
    • Manage products
    • Manage orders
    • Coupon collections
    • eCommerce tracker events
  • Loyalty
    • Overview
    • Set up a program
    • Enroll members
    • Credit & debit points
    • Read member data
    • Best practices
  • Custom Objects
    • Custom objects management
  • Brevo tracker and events
    • Getting started
    • JavaScript implementation
    • REST implementation
      • Identify users
      • Track link clicks
      • Track page views
      • Track custom events
    • Legacy tracker documentation
    • Events
  • Accounts and settings
    • Senders and domains
    • User activity logs
    • External feeds
    • Invited users
LogoLogo
Help CenterAPI KeysStatusSign In
Brevo tracker and eventsREST implementation

Identify users

Was this page helpful?
Previous

Track link clicks

Next
Built with
Legacy Tracker Documentation

For the legacy tracker doc, check our guide here.

This endpoint creates and updates users directly on the Brevo account. Use the cURL request below:

1curl --request POST \
2 --url https://in-automate.brevo.com/api/v2/identify \
3 --header 'accept: application/json' \
4 --header 'content-type: application/json' \
5 --header 'ma-key: YOUR_MA_KEY'
6 --data '
7{
8 "email": "abc@brevo.com",
9 "attributes": {
10 "FirstName": "abc",
11 "LastName": "def",
12 "Age": 24,
13 "SMS": 919989894562
14 }
15}
16'

Parameters:

AttributeDatatypeDescriptionValue
emailStringEmail address used to identify a userabc@email.com
attributesJSON ObjectCustom fields. These user properties populate your contact database.See example above

Response

Response codeMessageDescription
204User has been identified and successfully updatedReturned on creation and update.
400Bad requestReturned for invalid_parameter, missing_parameter, or out_of_RangeModel errors.