GET
/
accounts
/
{id}
curl --request GET \
  --url https://api-network.joinmassive.com/resellers/accounts/{id} \
  --header 'x-api-key: <api-key>'
{
  "id": "57ed834f-f6f6-47d4-ab23-5674d7866b32",
  "username": "johndoe@reseller.com",
  "password": "secret",
  "status": "enabled",
  "limit_reached": false,
  "started_at": 1708526022,
  "updated_at": 1708528022,
  "limit": 1000000
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The id of the account.

Response

200
application/json
The account corresponding to the id provided
id
string

The account ID (uuid).

Example:

"57ed834f-f6f6-47d4-ab23-5674d7866b32"

username
string

The account username.

Example:

"johndoe@reseller.com"

password
string

The account password.

Example:

"secret"

status
string

The account status (credentials enabled/disabled).

Example:

"enabled"

limit_reached
boolean

The account limit reached status.

Example:

false

started_at
integer

The time in unix seconds at which the account was started.

Example:

1708526022

updated_at
integer

The time in unix seconds at which the account was updated.

Example:

1708528022

limit
integer

The allocated traffic in bytes.

Example:

1000000