API
- Introduction
- Authentication
- Idempotency
- Versioning
- Silo
- Transform
- Sequences
- Access
- Utils
Fetch all series entries
Fetch all the entries in a given series.
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"
}
{
"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
UUID of the series to fetch entries for
Response
The cursor used to retrieve the next page of entries.
"eyJpZCI6ImE4OTA0MzE1LTNkMTYtNGE5NS05MWMxLTMwZDZjZGRlNTUzZSIsImxpbWl0IjoyMH0="
The maximum number of entries returned in the list.
20
A list of entries.
The complete code for the entry, including prefix and suffix.
"INV-00001-F1"
The date and time the entry was created.
"2020-10-01T00:00:00Z"
The UUID (any version) of the entry.
"a8904315-3d16-4a95-91c1-30d6cdde553e"
A set of key/value pairs that can be used to store additional information about the entry.
{ "name": "John Doe" }
The UUID of the previous entry in the series.
"a8904315-3d16-4a95-91c1-30d6cdde553e"
The UUID of the series the entry belongs to.
"a8904315-3d16-4a95-91c1-30d6cdde553e"
Set of JSON Web Signatures validating the information contained in the entry.
The date and time the entry was last updated.
"2020-10-01T00:00:00Z"
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"
}