Series

List Series Items

Lists all the items present in the given series, sorted according to their time index values.

get/{databaseId}/series/{seriesId}/items/

Path parameters

databaseIdstring required

ID of your database.

seriesIdstring required

ID of the series whose items are to be listed.

Response

Successful operation.

itemTypestring required

item iff the regular item from the catalog is to be inserted, series iff series is inserted as the item.

itemIdstring required

ID of the item iff itemType is item. ID of the series iff itemType is series.

timenumber double required

Time index used for sorting items in the series. According to time, items are sorted within series in ascending order. In the example of TV show episodes, the episode number is a natural choice to be passed as time.

cascadeCreateboolean

Indicates that any non-existing entity specified within the request should be created (as if corresponding PUT requests were invoked). This concerns both the seriesId and the itemId. If cascadeCreate is set to true, the behavior also depends on the itemType. In case of item, an item is created, in case of series a series + corresponding item with the same ID is created.

Changes