v3

latestOpenAPI 3.0.02026-07-311784111.3 MB
Account Management
Private

Deletes a Direct Access member from the account. Returns the resulting list of all members configured for the account.

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

Requires Direct Access trading to be enabled for the account.

Scope: account:read_write and mainaccount

Try in API console

get/private/delete_member

Query parameters

member_idinteger required
Example:195

ID of the member to delete.

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
  }
}