İçeriğe geç
API belgeleri

Kullanıcı

Kimliği doğrulanmış kullanıcının API profilini alın.

Kimlik doğrulama
Her istek, admin API anahtarıyla eşleşen Bearer token içeren Authorization başlığını göndermelidir. API anahtarı al.
API belgeleri

Uç nokta
GET https://rqrcode.com/api/user
Örnek
curl --request GET \
--url 'https://rqrcode.com/api/user' \
--header 'Authorization: Bearer {api_key}'
Parametreler
Ek parametre yok.
Yanıt örneği
{
    "data": {
        "id": "1",
        "type": "users",
        "email": "[email protected]",
        "billing": {
            "type": "personal",
            "name": "John Doe",
            "address": "21 Örnek Sokak",
            "city": "Londra",
            "county": "Büyük Londra",
            "zip": "5000",
            "country": "",
            "phone": "",
            "tax_id": "",
            "is_enabled": true,
            "plan_id": "custom",
            "plan_expiration_date": "2027-04-20 07:51:39",
            "plan_settings": {
                "...": "..."
            },
            "plan_trial_done": false,
            "language": "İngilizce",
            "timezone": "Avrupa/Londra",
            "country_name": null,
            "datetime": "2026-04-20 07:51:39",
            "last_activity": "2020-01-01 00:00:00",
            "total_logins": 10
        }
    }
}