v1

latestOpenAPI 3.0.0Apache 2.02026-07-267057121.5 KB

Fetch all the entries in a given series.

get/sequence/v1/series/{series_id}/entries

Path parameters

series_idstring required

UUID of the series to fetch entries for

UUID of the series to fetch entries for

Response

OK

cursorstring

The cursor used to retrieve the next page of entries.

limitinteger

The maximum number of entries returned in the list.

Example response

{
  "cursor": "eyJpZCI6ImE4OTA0MzE1LTNkMTYtNGE5NS05MWMxLTMwZDZjZGRlNTUzZSIsImxpbWl0IjoyMH0=",
  "limit": 20,
  "list": [
    {
      "code": "INV-00001-F1",
      "created_at": "2020-10-01T00:00:00Z",
      "id": "a8904315-3d16-4a95-91c1-30d6cdde553e",
      "meta": {
        "name": "John Doe"
      },
      "previous_id": "a8904315-3d16-4a95-91c1-30d6cdde553e",
      "series_id": "a8904315-3d16-4a95-91c1-30d6cdde553e",
      "updated_at": "2020-10-01T00:00:00Z"
    }
  ]
}