Get table by scope
post
Retrieves table scope
Body
codestringRequired
name
of the contract to return table data for
tablestringOptional
Filter results by table
lower_boundstringOptional
Filters results to return the first element that is not less than provided value in set
upper_boundstringOptional
Filters results to return the first element that is greater than provided value in set
limitinteger · int32OptionalDefault:
Limit number of results returned.
10
reversebooleanOptionalDefault:
Reverse the order of returned results
false
show_payerbooleanOptionalDefault:
Show RAM payer
false
Responses
200
OK
application/json
post
POST /v1/chain/get_table_by_scope HTTP/1.1
Host: eos.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 118
{
"code": "text",
"table": "text",
"lower_bound": "text",
"upper_bound": "text",
"limit": 10,
"reverse": false,
"show_payer": false
}
200
OK
{
"rows": [
{
"code": "text",
"scope": "text",
"table": "text",
"payer": "text",
"count": 1
}
],
"more": "text"
}