Create VICAL
Creates a Verified Issuer Certificate Authority List (VICAL) based on the policy of the requested ecosystem. Refer to VICAL ot learn more about the VICAL purpose and data structure.
SecuritybearerAuth
Request
Responses
201
VICAL created
500
Internal Server Error. An unexpected error occurred.
post/v1/ecosystems/{ecosystemId}/vicals
Request samples
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
Response samples
- 201
application/json
{- "vicalIssueID": 1337,
- "date": "2024-07-28T23:01:13.000Z"
}
Retrieve all VICALs
Retrieves all VICALs available in the requested ecosystem.
SecuritybearerAuth
Request
path Parameters
Responses
200
VICALs retrieved
404
Not Found. The specified resource was not found.
get/v1/ecosystems/{ecosystemId}/vicals/public
Request samples
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
Response samples
- 200
application/json
{- "data": [
- {
- "vicalIssueID": 1337,
- "date": "2024-07-28T23:01:13.000Z",
- "filename": "vical-2024-07-28-1722164473000.cbor"
}
], - "nextCursor": "Y3JlYXRlZEF0PTIwMjAtMDgtMjVUMDY6NDY6MDkuNTEwWiZpZD1hNjZmZmVhNS04NDhlLTQzOWQtODBhNC1kZGE1NWY1M2UzNmM"
}
Retrieve specific VICAL
Retrieves a specific VICAL from the requested ecosystem by providing the VICAL version identifier.
Request
Responses
200
VICAL retrieved
404
Not Found. The specified resource was not found.
get/v1/ecosystems/{ecosystemId}/vicals/public/{vicalIssueId}
Request samples
- curl
- Node.js
- JavaScript
- Python
- C#
- Java