PUT
/
users
/
information
curl --request PUT \
  --url https://api.reqlick.com/users/information \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "firstName": "<string>",
  "lastName": "<string>"
}'
{
  "error": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
firstName
string

User first name

lastName
string

User first name

Response

200
application/json
User information updated successfully
error
boolean