profiles

Create a profile

post/profiles

Headers

Idempotency-Keystring

Deduplicates retries for 24 hours: the same key returns the original response with Idempotency-Replayed: true; the same key with a different body returns 409 idempotency_key_reused.

Postscript-Versionstring date
Example:2026-07-23

Overrides the key's pinned API revision for this request.

Request body

attributesobject

Custom attributes.

Example request

{
  "identifiers": [
    {
      "type": "email"
    }
  ]
}

Response

The created profile.

Example response

{
  "data": {
    "created_at": "2026-07-23T17:32:01.123456Z",
    "identifiers": [
      {
        "created_at": "2026-07-23T17:32:01.123456Z",
        "type": "email",
        "updated_at": "2026-07-23T17:32:01.123456Z",
        "verified_at": "2026-07-23T17:32:01.123456Z"
      }
    ],
    "updated_at": "2026-07-23T17:32:01.123456Z"
  }
}

Changes