Skip to content

RawFunctionGetResponse

A deployed coded function.

A coded function is packaged as a process and exposed for invocation through an HTTP endpoint. Each function is uniquely named within its folder.

Properties

Property Type Description
description? null | string Human-readable description from the function definition.
enabled boolean Whether the function can currently be invoked.
entryPointPath? null | string Source file path of the function inside its package (e.g. content/functions/hello.ts).
folderId number ID of the folder the function lives in.
folderName? null | string Fully qualified name of the folder the function lives in.
id string Unique identifier (GUID) of the function's HTTP endpoint.
inputArguments? null | string Default input arguments as a JSON string — parse with JSON.parse().
method FunctionHttpMethod HTTP verb the function accepts.
name string Function name — unique within a folder.
processKey string Key (GUID) of the process that packages this function.
processName string Display name of the process that packages this function.
processSlug string URL slug of the process that packages this function.
slug string URL path segment of the function within its package.