Accounts
Retrieve a list of account available.
Endpoints
GET https://cubemmo.net/api/account_type?api_key={api_key}
Request Parameters
Header Key
Value
Required
Description
api_key
{api_key}
true
The API key provided to authenticate the user. Replace {apiKey} with your actual API key.
Response
The API returns a JSON object with the following structure:
{
"success": true,
"message": "Success.",
"data": [
{
"id": 1,
"name": "HotMail NEW",
"price": "40",
"quantity": 21434
},
{
"id": 2,
"name": "OutLook NEW",
"price": "40",
"quantity": 0
},
{
"id": 3,
"name": "Hotmail TRUSTED",
"price": "450",
"quantity": 17
},
{
"id": 4,
"name": "Outlook TRUSTED",
"price": "450",
"quantity": 0
},
{
"id": 5,
"name": "Mail iCloud",
"price": "500",
"quantity": 4498
}
]
}
{
"success" : false,
"message":"Error."
}
{
"success": false,
"message":"Invalid API Key"
}
Last updated