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 · int32Optional

Limit number of results returned.

Default: 10
reversebooleanOptional

Reverse the order of returned results

Default: false
show_payerbooleanOptional

Show RAM payer

Default: 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"
}