POST
/
accounts
/
identify
curl --request POST \
  --url https://insights.reforge.com/api/v1/accounts/identify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "account-789",
  "shouldUnflattenProperties": true,
  "properties": {
    "$name": "Acme, Inc.",
    "$domain": "acme.com",
    "$createdAt": "2023-11-07T05:31:56Z",
    "$updatedAt": "2023-11-07T05:31:56Z",
    "$contractValue": 100000
  }
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

201 - application/json
The account was identified successfully

The response is of type object.