Interface UpdateEntryOptions

interface UpdateEntryOptions {
    apiUrl: string;
    collection: string;
    data: Record<string, unknown>;
    token?: string;
}

Hierarchy

  • BaseOptions
    • UpdateEntryOptions

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

data: Record<string, unknown>
token?: string

Your generated API token

Generated using TypeDoc