GET
/
api
/
v1
/
registry
/
{registryId}
curl --request GET \
  --url https://dash.betteruseblockchain.com/api/v1/registry/{registryId} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Success",
  "data": {
    "id": "<string>",
    "type": "<string>",
    "status": "<string>",
    "callback_url": "<string>",
    "metadata": {},
    "folder": {},
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

registryId
string
required

The unique identifier of the registry.

Response

200
application/json
Registry retrieved successfully.
message
string
Example:

"Success"

data
object