GET
/
accounts
/
{id}
/
allocations
curl --request GET \
  --url https://api-network.joinmassive.com/resellers/accounts/{id}/allocations \
  --header 'x-api-key: <api-key>'
[
  {
    "created_at": 1708526022,
    "limit": 1000000
  }
]

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Response

200
application/json
A list of the allocations made for the account.
created_at
integer

The time in unix seconds at which the allocation was made.

Example:

1708526022

limit
integer

The allocated traffic in bytes.

Example:

1000000