light-mode-image
Learn
API Reference

General

Create a RICAL

POST/v1/ecosystems/{ecosystemId}/ricals

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

ecosystemId*string

The UUID of the ecosystem

Formatuuid

Response 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/public

Path Parameters

ecosystemId*string

The UUID of the ecosystem

Formatuuid

Query Parameters

limit?number

Range size of returned list.

Range1 <= value <= 1000
Default100
cursor?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

Formatuuid
ricalIssueId*integer

Unique identifier of a specific RICAL version. This numeric value is continuously increased whenever a RICAL is created.

Formatint32

Response 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/latest

Path Parameters

ecosystemId*string

The UUID of the ecosystem

Formatuuid

Response 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

Formatuuid
ricalIssueId*integer

Unique identifier of a specific RICAL version. This numeric value is continuously increased whenever a RICAL is created.

Formatint32

Response 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

On this page