API Reference
General
Create a RICAL
POST
/v1/ecosystems/{ecosystemId}/ricalsAuthorization
bearerAuth AuthorizationBearer <token>
In: header
Path Parameters
ecosystemId*string
The UUID of the ecosystem
Format
uuidResponse Body
application/json
application/json
application/json
curl -X POST "https://example.com/v1/ecosystems/497f6eca-6276-4993-bfeb-53cbbbba6f08/ricals"{ "ricalIssueID": 0, "date": "2019-08-24T14:15:22Z"}Retrieve all RICALs
GET
/v1/ecosystems/{ecosystemId}/ricals/publicPath Parameters
ecosystemId*string
The UUID of the ecosystem
Format
uuidQuery Parameters
limit?number
Range size of returned list.
Range
1 <= value <= 1000Default
100cursor?string
Starting point for the list of entries.
Response Body
application/json
application/json
curl -X GET "https://example.com/v1/ecosystems/497f6eca-6276-4993-bfeb-53cbbbba6f08/ricals/public"{ "data": [ { "ricalIssueID": 0, "date": "2019-08-24T14:15:22Z", "filename": "string", "isAutoPublished": true } ], "nextCursor": "string"}Retrieve a RICAL
GET
/v1/ecosystems/{ecosystemId}/ricals/public/{ricalIssueId}Path Parameters
ecosystemId*string
The UUID of the ecosystem
Format
uuidricalIssueId*integer
Unique identifier of a specific RICAL version. This numeric value is continuously increased whenever a RICAL is created.
Format
int32Response Body
application/cbor
application/json
curl -X GET "https://example.com/v1/ecosystems/497f6eca-6276-4993-bfeb-53cbbbba6f08/ricals/public/0""string"Retrieve latest RICAL
GET
/v1/ecosystems/{ecosystemId}/ricals/public/latestPath Parameters
ecosystemId*string
The UUID of the ecosystem
Format
uuidResponse Body
application/cbor
application/json
curl -X GET "https://example.com/v1/ecosystems/497f6eca-6276-4993-bfeb-53cbbbba6f08/ricals/public/latest""string"Delete a RICAL
DELETE
/v1/ecosystems/{ecosystemId}/ricals/{ricalIssueId}Authorization
bearerAuth AuthorizationBearer <token>
In: header
Path Parameters
ecosystemId*string
The UUID of the ecosystem
Format
uuidricalIssueId*integer
Unique identifier of a specific RICAL version. This numeric value is continuously increased whenever a RICAL is created.
Format
int32Response Body
application/json
application/json
curl -X DELETE "https://example.com/v1/ecosystems/497f6eca-6276-4993-bfeb-53cbbbba6f08/ricals/0"Empty
How would you rate this page?
Last updated on