PUT
/
users
curl --request PUT \
  --url https://kanbn.com/api/v1/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "image": "<string>"
}'
{
  "name": "<string>",
  "image": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
image
string

Response

200
application/json
Successful response
name
string | null
required
image
string | null
required