Process Registries
Processes are organized into registries
Create a new Registry
POST https://api.borlaug.network/provenance/registries
Headers
Authentication
string
Request Body
name
string
The registry name
{
"result": "success",
"id": 766833938,
"timestamp": "2020-09-03T21:58:04.933673600"
}{
"name": "Test"
}Update Registry
PATCH https://api.borlaug.network/provenance/registries/:registryid
Path Parameters
registryid
number
Headers
Authentication
string
Request Body
name
string
The new registry name
Get Registries
GET https://api.borlaug.network/provenance/registries
Gets Registries belonging to the caller in a paged manner
Query Parameters
search
string
Optionally filter list by name
sort_by
string
column to sort by (created or name)
order
string
order to sort by ASC or DESC
per_page
number
page
number
Get a single Registry
GET https://api.borlaug.network/provenance/registries/:registryid
Gets a single Registry by id
Path Parameters
registryid
number
Delete a Registry
DELETE https://api.borlaug.network/provenance/registries/:registryid
Delete a Registry by id
Path Parameters
registryid
number
Last updated
Was this helpful?