Get account info

URL

GET https://api.complycube.com/v1/accountInfo

Retrieves account info.

Headers

NameTypeDescription

Content-Type*

string

The content-type must always be set to application/json.

Authorization*

string

The API live or test key.

Example request

curl -X GET https://api.complycube.com/v1/accountInfo \
     -H 'Authorization: <YOUR_API_KEY>' \
     -H 'Content-Type: application/json'

Example response

{
    "username": "account@example.com",
    "plan": "Essentials Plan",
    "remainingCredit": 8000
}

Last updated