User
Read and update the authenticated account profile.
GET/api/v1/userRead 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/userUpdate current user
| Name | Type | Required | Description |
|---|---|---|---|
| name | string | No | — |
| language | string | No | — |
| timezone | string | No | — |
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.