Skip to content

Create a new email Identity

Request

Creates a new email Identity in AWS and sends a verification email

Bodyapplication/jsonrequired
emailAddressstring, (email), non-emptyrequired
curl -i -X POST \
  https://uberall.com/api/customer-engagement/identities \
  -H 'Content-Type: application/json' \
  -d '{
    "emailAddress": "user@example.com"
  }'

Responses

OK response

Bodyapplication/json
emailAddressstring or null
identityTypestring or null
verificationStatusstring or null
messagestring or null
Response
{ "emailAddress": "string", "identityType": "string", "verificationStatus": "string", "message": "string" }