POST
/
accounts
Create a new Account
curl --request POST \
  --url https://commerce.driv.ly/api/accounts \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "acc_0jk3v58djsi1",
  "lead": "Lead ID",
  "consumer": "Consumer ID",
  "anonymousIds": [
    "anon_4598kdjv9390",
    "anon_4598kdjv9391"
  ]
}'
{
  "data": {
    "id": "acc_0jk3v58djsi1",
    "lead": "Lead ID",
    "consumer": "Consumer ID",
    "anonymousIds": [
      "anon_4598kdjv9390",
      "anon_4598kdjv9391"
    ]
  },
  "success": true
}

Query Parameters

depth
integer

The number of levels of related objects to include in the response

Body

application/json
id
string

Account is uniquely identified by id

consumer

Consumer logs into Account

lead

Lead logs into Account

anonymousIds
string[]

Account was logged in to by Anonymous ID

Response

Account Created

data
object
Examples:
{
"id": "acc_0jk3v58djsi1",
"lead": "Lead ID",
"consumer": "Consumer ID",
"anonymousIds": ["anon_4598kdjv9390", "anon_4598kdjv9391"]
}
success
boolean