PATCH
/
v1
/
users
/
{user_id}
curl --request PATCH \
  --url https://api.gofermata.com/v1/users/{user_id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "email": "<string>"
}'
{
  "data": "<any>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

user_id
string
required

Body

application/json
name
string
email
string

Response

200 - application/json
OK
data
any