GET
/
api
/
v1
/
registry
/
list
curl --request GET \
  --url https://dash.betteruseblockchain.com/api/v1/registry/list \
  --header 'Authorization: Bearer <token>'
{
  "message": "Success",
  "data": {
    "items": [
      {
        "id": "<string>",
        "title": "<string>",
        "type": "<string>",
        "status": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ],
    "pagination": {
      "total": 123,
      "per_page": 123,
      "current_page": 123,
      "last_page": 123,
      "has_more_pages": true
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

folder_id
string

The ID of the folder to filter registries.

limit
integer

The number of registries to return per page.

Example:

10

order_by
string

The order in which to return registries.

Example:

"created_at"

Response

200
application/json
List of registries retrieved successfully.
message
string
Example:

"Success"

data
object