POST
/
v1
/
users
/
{id}
curl --request POST \
  --url https://api.edgee.app/v1/users/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "avatar_url": "<string>",
  "terms_version": "<string>",
  "privacy_version": "<string>"
}'
{
  "object": "user",
  "id": "<string>",
  "email": "<string>",
  "name": "<string>",
  "avatar_url": "<string>",
  "created_at": "2022-03-01T00:00:00Z",
  "updated_at": "2022-03-01T00:00:00Z",
  "roles": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json

Response

200
application/json

The updated User

A User is a unique identifier that you can use to manage and organize your work.