Entries
Fetch all series entries
Fetch all the entries in a given series.
GET
/
sequence
/
v1
/
series
/
{series_id}
/
entries
Authorization
Path
curl --request GET \
--url https://api.invopop.com/sequence/v1/series/{series_id}/entries
{
"series_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"list": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"created_at": "2023-01-25T08:04:14.245Z",
"updated_at": "2023-01-25T08:04:14.245Z",
"series_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"code": "string",
"meta": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
},
"previous_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"sigs": [
"string"
]
}
],
"limit": 0,
"cursor": "string"
}
Path Parameters
series_id
string
requiredThe UUID of the series to fetch entries for.
Response
200 - application/json
cursor
string
The cursor used to retrieve the next page of entries.
limit
integer
The maximum number of entries returned in the list.
list
object[] | null
A list of entries.
curl --request GET \
--url https://api.invopop.com/sequence/v1/series/{series_id}/entries
{
"series_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"list": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"created_at": "2023-01-25T08:04:14.245Z",
"updated_at": "2023-01-25T08:04:14.245Z",
"series_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"code": "string",
"meta": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
},
"previous_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"sigs": [
"string"
]
}
],
"limit": 0,
"cursor": "string"
}