Get the account info provided by the provider
curl --request GET \
--url https://aquila.attaxr.com/api/auth/account-info \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://aquila.attaxr.com/api/auth/account-info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/auth/account-info"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"user": {
"id": "<string>",
"emailVerified": true,
"name": "<string>",
"email": "<string>",
"image": "<string>"
},
"data": {}
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Auth
Get the account info provided by the provider
Get the account info provided by the provider
GET
/
api
/
auth
/
account-info
Get the account info provided by the provider
curl --request GET \
--url https://aquila.attaxr.com/api/auth/account-info \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://aquila.attaxr.com/api/auth/account-info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/auth/account-info"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"user": {
"id": "<string>",
"emailVerified": true,
"name": "<string>",
"email": "<string>",
"image": "<string>"
},
"data": {}
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}
