Comment on page
Query APIs
get
https://dte.dedoco.com/v1/query/process
Query processes
curl -XGET 'https://dte.dedoco.com/v1/query/process?event.k3=v3' \
-H 'Authorization: Bearer <api_key>'
# response
{
processes: [
{
"id": "361bf3f495a84e7eb5d597b4e4cf3ebb",
"namespace": {
"name": "test/v1",
"chain": "mumbai",
"type": "process/v2"
},
# Hash of transaction process was created
"transactionHash": "0x332e5f69c96d21fdececa851761bb507e449888c687b7927672e67ce7f6ab583",
# initial hash
"documentHash": "0x125",
"publicMeta": {
"name": "test2"
},
"privateMeta": {
"nric": "123124"
},
# or "complete" depending on if it has been successfully indexed by Graph Protocol
"status": "pending",
"signatures": [
{
"transactionHash": "0xb0328d360d814540a54666f4958d10197d30cc583884a88983077eaa279d8174",
"publicMeta": {
"name": "test3",
"description": "testing signatures"
},
"privateMeta": {
"email": "[email protected]"
},
"fromHash": "0x125",
"toHash": "0x126",
"status": "pending"
}
]
}
...
]
}
curl -XGET 'https://dte.dedoco.com/v1/query/process?process.k2=v2' \
-H 'Authorization: Bearer <api_key>'
Last modified 7mo ago