Bulk Operations
Register DIDs in bulk
POST https://api.borlaug.network/identity/dids/bulk
Upload DIDs and claims in bulk using a template
Headers
Name
Type
Description
Content-Type
string
application/json
Authorization
string
BWS authorization token
Request Body
Name
Type
Description
dids
array
Array of DID properties. See below.
{
    "dids": [
        "0x19f6d94b44e9e03d62bc36a6aa40715f11dcce4794ac15fe99635d288c0e6001"
    ]
}{
  "message": "Malformed template"
}{
  "dids": [
    {
      "public_key": "",
      "catalogid": "",
      "short_name": "",
      "properties": [
        {
          "name": "Name",
          "private": true,
          "type": "String",
          "value": "Atanu Roy"
        }
      ]
    }
  ]
}Last updated
Was this helpful?