Interface GetEntriesOptions

interface GetEntriesOptions {
    apiUrl: string;
    collection: string;
    parameters?: Parameters;
    token?: string;
}

Hierarchy

  • BaseOptions
    • GetEntriesOptions

Properties

apiUrl: string

Link to the Strapi API (with trailing slash)

Example

https://example.com/api/
collection: string

The API ID of the collection type

parameters?: Parameters
token?: string

Your generated API token

Generated using TypeDoc