> ## Documentation Index
> Fetch the complete documentation index at: https://docs.invopop.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> An entry represents a single index or code number inside a series. Essentially, it's a mapping of a UUID to a code number.

## Models

An `Entry` contains the following fields:

| Property      | Type                 | Description                                         |
| ------------- | -------------------- | --------------------------------------------------- |
| `id`          | uuid                 | UUIDv1 value that uniquely identifies the entry.    |
| `series_id`   | uuid                 | ID of the series this entry belongs to.             |
| `code`        | string               | The code generated for this entry.                  |
| `meta`        | map\<string, string> | Any additional meta data provided during creation.  |
| `previous_id` | uuid                 | ID of the last entry created in the series, if any. |
| `sigs`        | array of string      | Any JSON Web Signatures added during processing.    |
| `created_at ` | date-time            | Creation timestamp.                                 |
| `updated_at`  | date-time            | Update timestamp.                                   |

An `EntryCollection` is defined as follows:

| Property | Type           | Description                                            |
| -------- | -------------- | ------------------------------------------------------ |
| `list`   | array of Entry | List of Entry models for this result set.              |
| `limit`  | integer        | Maximum number of entries provided in this result set. |
| `cursor` | string         | The cursor required to get the next page of results.   |

## Resources

<Card title="Fetch all Series Entries" icon="magnifying-glass" href="/api-ref/sequences/entries/fetch-all-series-entries">
  `GET` [https://api.invopop.com/sequence/v1/series/\{series\_id}/entries](https://api.invopop.com/sequence/v1/series/\{series_id}/entries)
</Card>

<Card title="Create a Series Entry" icon="plus" href="/api-ref/sequences/entries/create-a-series-entry">
  `PUT` [https://api.invopop.com/sequence/v1/series/\{series\_id}/entries/\{id}](https://api.invopop.com/sequence/v1/series/\{series_id}/entries/\{id})
</Card>

<Card title="Fetch an Entry in the Series" icon="list" href="/api-ref/sequences/entries/fetch-a-series-entry">
  `GET` [https://api.invopop.com/sequence/v1/series/\{series\_id}/entries/\{id}](https://api.invopop.com/sequence/v1/series/\{series_id}/entries/\{id})
</Card>
