v1

latestOpenAPI 3.0.02026-07-174823135.4 KB
Groups

Remove children from a group

Removes one or more child tracked sources from the specified group.

post/v1/groups/{groupId}/children/delete

Path parameters

groupIdstring required

The unique identifier for the group.

Request body

trackedSourcestring required

The tracked source identifier, which can be a group or a derivation scheme.

cryptoCodestring

The cryptocurrency code associated with the tracked source (if applicable).

Example request

[
  {
    "trackedSource": "DERIVATIONSCHEME:tpubD6NzVbkrYhZ4W...",
    "cryptoCode": "BTC"
  }
]

Response

Children removed from group successfully.

trackedSourcestring required

The tracked source identifier for the group, formatted as 'GROUP:{groupId}'. Used to reference the group within NBXplorer.

groupIdstring required

The unique identifier of the group.

Example response

{
  "trackedSource": "GROUP:6N23bHztah546P6xQT",
  "groupId": "6N23bHztah546P6xQT",
  "children": [
    {
      "trackedSource": "DERIVATIONSCHEME:tpubDC6xFicnheK85vUNGjegu4HuJGg8nPi...",
      "cryptoCode": "BTC"
    }
  ]
}