Box

Get box information for a given application.

get

Given an application ID and box name, returns base64 encoded box name and value. Box names must be in the goal app call arg form 'encoding:value'. For ints, use the form 'int:1234'. For raw bytes, encode base 64 and use 'b64' prefix as in 'b64:A=='. For printable strings, use the form 'str:hello'. For addresses, use the form 'addr:XYZ...'.

Path parameters
application-idintegerRequired
Query parameters
namestringRequired

A box name in goal-arg form 'encoding:value'. For ints, use the form 'int:1234'. For raw bytes, use the form 'b64:A=='. For printable strings, use the form 'str:hello'. For addresses, use the form 'addr:XYZ...'.

Responses
200
Box information
application/json
get
GET /v2/applications/{application-id}/box HTTP/1.1
Host: algo-index.nownodes.io
Accept: */*
{
  "name": "Ynl0ZXM=",
  "round": 1,
  "value": "Ynl0ZXM="
}

Last updated