Boxes
Given an application ID, return all Box names. No particular ordering is guaranteed. Request fails when client or server-side configured limits prevent returning all Box names.
Authorizations
Path parameters
application-idintegerRequired
An application identifier
Query parameters
maxintegerOptional
Max number of box names to return. If max is not set, or max == 0, returns all box-names.
Responses
200
Box names of an application
application/json
400
Bad Request
application/json
401
Invalid API Token
application/json
500
Internal Error
application/json
default
Unknown Error
get
GET /v2/applications/{application-id}/boxes HTTP/1.1
Host: algo.nownodes.io
X-Algo-API-Token: YOUR_API_KEY
Accept: */*
{
"boxes": [
{
"name": "Ynl0ZXM="
}
]
}
Last updated