Skip to main content
POST
/
api
/
v1
/
registry
/
create
cURL
curl --request POST \
  --url https://dash.betteruseblockchain.com/api/v1/registry/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "<string>",
  "metadata": [
    {
      "type": "TEXT",
      "key": "<string>",
      "value": "<string>",
      "title": "<string>",
      "file": "<string>"
    }
  ],
  "folder_id": "<string>",
  "callback_url": "<string>",
  "data_encrypted": true,
  "template": "STORAGE",
  "description": "<string>"
}'
{
  "message": "Success",
  "data": {
    "id": "<string>",
    "title": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Body

application/json
title
string
required
metadata
object[]
required
folder_id
string
required
template
enum<string>
required
Available options:
STORAGE,
PASS
callback_url
string
data_encrypted
boolean
description
string

Response

message
string
Example:
data
object