Skip to main content
GET
/
accounts
/
info
Get account information
curl --request GET \
  --url https://api.quiva.ai/accounts/info \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "name": "<string>",
    "id": "<string>",
    "display_name": "<string>",
    "root_email": "[email protected]",
    "subscription_status": "active",
    "subscription_plan": "<string>",
    "emergency_credit": 123,
    "country": "<string>",
    "company_name": "<string>",
    "address": "<string>",
    "website": "<string>",
    "phone_number": "<string>",
    "scheduled_for_deletion": true,
    "deletion_date": "2023-11-07T05:31:56Z",
    "region": "<string>",
    "provider": "<string>",
    "bstier": 123,
    "cloud": true,
    "hub": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Account information retrieved successfully

data
object
required