v2

latestOpenAPI 3.0.02026-07-311824171.4 MB
Account Management
Private

Retrieves the list of Direct Access members configured for the account. A member represents an external identity (e.g. a FIX or Direct Access order gateway user) that can be granted Direct Access trading rights on the account or one of its subaccounts.

This method is dedicated to Starbase. See Starbase Account Model for an explanation of Members, portfolios, and their relationship to Deribit accounts.

When called from a subaccount, only members whose accounts include that subaccount are returned, and only the name and is_active fields are included for each of them.

Scope: account:read

Try in API console

get/private/get_members

Response

Success response

jsonrpc'2.0' required

The JSON-RPC version (2.0)

idinteger

The id that was sent in the request

Example response

{
  "result": {
    "members": [
      {
        "member_id": 195,
        "main_uid": 57874,
        "name": "Member1",
        "is_active": true,
        "accounts": [
          85867
        ],
        "m_tstamp": 1690000000000
      }
    ],
    "is_direct_access_allowed": true
  }
}