Luxor Documentation Hub Logo
Mining Pool/API Documentation/Subaccounts

Create subaccount

Allows the user to create a subaccount in a workspace.

POST
/v1/pool/groups/{group_id}/subaccounts

Authorization

authorization<token>

Use your API key here.

In: header

Request Body

application/jsonRequired

Provide the name for the new subaccount.

nameRequiredstring

A subaccount name for which to retrieve summary information.

Minimum length: 1

Path Parameters

group_idRequiredstring

An alternate shortcut for specifying subaccounts. Can be used in place of subaccount_names

Format: "uuid"
curl -X POST "https://beta.luxor.tech/api/v1/pool/groups/497f6eca-6276-4993-bfeb-53cbbbba6f08/subaccounts" \
  -H "authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "subaccount_1"
  }'

Default Response

{
  "id": 0,
  "name": "subaccount_1",
  "created_at": "2019-08-24T14:15:22Z",
  "url": "/v1/pool/groups/3fa85f64-5717-4562-b3fc-2c963f66afa6/subaccounts/1",
  "pool_fee": 0
}