Reseller API
Get list of existing accounts
Get Started
Proxy Configuration
Sample Integrations
Reporting API
Reseller API
Others
Reseller API
Get list of existing accounts
GET
/
accounts
curl --request GET \
--url https://api-network.joinmassive.com/resellers/accounts \
--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
Response
200
application/json
List of users
The response is of type object[]
.
curl --request GET \
--url https://api-network.joinmassive.com/resellers/accounts \
--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
}
]