AppActionProps: AppActionCategory & {
    description?: string;
    name: string;
    sys: AppActionSys;
    type?: AppActionType;
    url: string;
}

Type declaration

  • Optionaldescription?: string

    Human readable description of the action

  • name: string

    Human readable name for the action

  • sys: AppActionSys

    System metadata

  • Optionaltype?: AppActionType

    Type of the action, defaults to endpoint if not provided endpoint: action is sent to specified URL function: deprecated, use function-invocation instead function-invocation: action invokes a contentful function

  • url: string

    Url that will be called when the action is invoked