Type Alias RunFlowPreviewData

RunFlowPreviewData: {
    includeHeader?: string;
    invisibleToOwner?: boolean;
    jobId?: string;
    requestBody: FlowPreview;
    workspace: string;
}

Type declaration

  • OptionalincludeHeader?: string

    List of headers's keys (separated with ',') whove value are added to the args Header's key lowercased and '-'' replaced to '_' such that 'Content-Type' becomes the 'content_type' arg key

  • OptionalinvisibleToOwner?: boolean

    make the run invisible to the the script owner (default false)

  • OptionaljobId?: string

    The job id to assign to the created job. if missing, job is chosen randomly using the ULID scheme. If a job id already exists in the queue or as a completed job, the request to create one will fail (Bad Request)

  • requestBody: FlowPreview

    preview

  • workspace: string