User

Read and update the authenticated account profile.

GET/api/v1/user
Read current user
curl -X GET 'https://forqrcode.com/api/v1/user' \
  -H 'Authorization: Bearer YOUR_API_KEY'

Response example

{
  "data": {
    "id": 1,
    "email": "you@example.com",
    "api_key": "…"
  }
}
PATCH/api/v1/user
Update current user
NameTypeRequiredDescription
namestringNo
languagestringNo
timezonestringNo
curl -X PATCH 'https://forqrcode.com/api/v1/user' \
  -H 'Authorization: Bearer YOUR_API_KEY'

Parameter names and JSON examples are shown in English. Replace YOUR_API_KEY with a key from your account.