Interface UpdateConfigPayload

The configuration data for an application.

interface UpdateConfigPayload {
    config_id?: string;
    fields: Record<string, string | number | boolean>;
    slug: string;
    workflows: WorkflowPayload[];
}

Properties

config_id?: string

Unique ID for the config.

fields: Record<string, string | number | boolean>

A map of application fields and their values.

slug: string

The application slug

workflows: WorkflowPayload[]

The config workflows data.