Sign in

Add or update person

documented

Create or update a customer profile by identifier.

PUT /api/v1/customers/{identifier}Peopleno 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://track.customer.io/api/v1/customers/{{$identifier}}" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Basic {{TRACK_BASIC_AUTH}}" \
  -d '{"attributes": {"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "plan": "{{$plan}}"}}'