Create Lambda API
The createLambda is a JSON-RPC endpoint that handles the creation of a new lambda function. It requires a lambda configuration as an input. If the creation is successful, it returns a unique identifier for the lambda required to execute it.
For instructions on how to setup your request headers you can follow Authenticated Requests guide
Request Spec
HTTP Method: POST
X-Encrypted-Session: Encrypted JWT signature for authentication.
X-Encrypted-Key: A string containing the encrypted key for secure communication.
X-Encrypted-User: User Input encrypted using Encryption Key
Body:
data: JSON - A lambda configuration describing how the lambda works
Response Spec
lambda_uuid: String - A UUID that uniquely identifies the lambda and is essential for executing it later.
Request Example
Response Example
Success:
Error:
Last updated