APIドキュメント
ユーザー
認証されたユーザーのAPIプロファイルを取得します。
認証
すべてのリクエストは、管理APIキーに一致するBearerトークンをAuthorizationヘッダーで送信する必要があります。
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": "ジョン・ドウ",
"address": "東京都港区南青山1-2-3",
"city": "ロンドン",
"county": "グレーター・ロンドン",
"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": "英語",
"timezone": "ヨーロッパ/ロンドン",
"country_name": null,
"datetime": "2026-04-20 07:51:39",
"last_activity": "2020-01-01 00:00:00",
"total_logins": 10
}
}
}