/

Get page of Global Entity Non-Fungible Resource Vaults

post

Returns vaults for non fungible resource owned by a given global entity. The returned response is in a paginated format, ordered by the resource's first appearance on the ledger.

Body
all ofOptionalExample: {"address":"<component-entity-address>","resource_address":"<resource-address>"}
Responses
200
Entity Fungibles (paginated)
application/json
Responseall of
post
POST /state/entity/page/non-fungible-vaults/ HTTP/1.1
Host: xrd-gateway.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 80

{
  "address": "<component-entity-address>",
  "resource_address": "<resource-address>"
}
{
  "ledger_state": {
    "network": "<network-name>",
    "state_version": 1,
    "proposer_round_timestamp": "text",
    "epoch": 1,
    "round": 1
  },
  "total_count": 1,
  "next_cursor": "text",
  "items": [
    {
      "total_count": 1,
      "next_cursor": "text",
      "items": [
        "text"
      ]
    },
    {
      "vault_address": "text",
      "total_count": 1,
      "last_updated_at_state_version": 1
    }
  ],
  "address": "text",
  "resource_address": "text"
}