Boxes

Get box names for a given application.

get

Given an application ID, returns the box names of that application sorted lexicographically.

Path parameters
application-idintegerRequired
Query parameters
limitintegerOptional

Maximum number of results to return. There could be additional pages even if the limit is not reached.

nextstringOptional

The next page of results. Use the next token provided by the previous results.

Responses
200
Box names of an application
application/json
get
GET /v2/applications/{application-id}/boxes HTTP/1.1
Host: algo-index.nownodes.io
Accept: */*
{
  "application-id": 1,
  "boxes": [
    {
      "name": "Ynl0ZXM="
    }
  ],
  "next-token": "text"
}