Skip to main content

SeriesExternalIdDto

External ID from a metadata provider (plugin, comicinfo, etc.)

createdAtstring<date-time>required

When the external ID was created

Example: 2024-01-01T00:00:00Z
externalIdstringrequired

External ID value from the source

Example: 12345
externalUrlstring | nullnullable

URL to the external source (if available)

Example: https://mangabaka.com/manga/12345
idstring<uuid>required

External ID record ID

Example: 550e8400-e29b-41d4-a716-446655440070
lastSyncedAtstring,null<date-time>nullable

When the metadata was last synced from this source

Example: 2024-01-15T10:30:00Z
metadataHashstring | nullnullable

Hash of the last fetched metadata (for change detection)

seriesIdstring<uuid>required

Series ID

Example: 550e8400-e29b-41d4-a716-446655440002
sourcestringrequired

Source identifier (e.g., "plugin:mangabaka", "comicinfo", "epub")

Example: plugin:mangabaka
updatedAtstring<date-time>required

When the external ID was last updated

Example: 2024-01-15T10:30:00Z
SeriesExternalIdDto
{
"createdAt": "2024-01-01T00:00:00Z",
"externalId": "12345",
"externalUrl": "https://mangabaka.com/manga/12345",
"id": "550e8400-e29b-41d4-a716-446655440070",
"lastSyncedAt": "2024-01-15T10:30:00Z",
"metadataHash": "string",
"seriesId": "550e8400-e29b-41d4-a716-446655440002",
"source": "plugin:mangabaka",
"updatedAt": "2024-01-15T10:30:00Z"
}