உள்ளடக்கத்திற்குச் செல்
API ஆவணங்கள்

பயனர்

அங்கீகரிக்கப்பட்ட பயனரின் API சுயவிவரத்தைப் பெறு.

அங்கீகாரம்
ஒவ்வொரு கோரிக்கையும் நிர்வாக API விசையுடன் பொருந்தும் Bearer token கொண்ட Authorization header-ஐ அனுப்ப வேண்டும். API விசையைப் பெறு.
API ஆவணங்கள்

இறுதிப் புள்ளி
GET https://rqrcode.com/api/user
எடுத்துக்காட்டு
curl --request GET \
--url 'https://rqrcode.com/api/user' \
--header 'Authorization: Bearer {api_key}'
அளவுருக்கள்
கூடுதல் அளவுரு இல்லை.
பதில் எடுத்துக்காட்டு
{
    "data": {
        "id": "1",
        "type": "users",
        "email": "[email protected]",
        "billing": {
            "type": "personal",
            "name": "John Doe",
            "address": "21 Example Street",
            "city": "London",
            "county": "Greater London",
            "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": "English",
            "timezone": "Europe/London",
            "country_name": null,
            "datetime": "2026-04-20 07:51:39",
            "last_activity": "2020-01-01 00:00:00",
            "total_logins": 10
        }
    }
}