Skip to main content
PUT
/
users
/
:id
Upsert an individual User (create if not exists)
curl --request PUT \
  --url https://app.ledger.ai/api/users/:id \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{}

Authorizations

Authorization
string
header
required

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

Query Parameters

filters
string

Upsert item with the given ids: [ id ]

JSON PUT body:

{
"about"?: string
"auth0_user_id"?: string
"contact_preference"?: integer[]
"contact_times"?: integer-range[]
"data"?: object
"email": string
"family_name": string
"given_name": string
"invite_code_expires_at"?: timestamp
"invite_code"?: string
"nickname": string
"picture"?: string
"social_auth_provider"?: integer
"timezone"?: string
}

Body

application/json

Request payload

The body is of type object.

Response

Successful response

The response is of type object.