Deploy Custom Function Project
POST {{HDB_ENDPOINT}}
Takes the output of packagecustomfunction_project, decrypts the base64-encoded string, reconstitutes the .tar file of your project folder, and extracts it to the Custom Functions root project directory.
**Operation is restricted to superuser roles only**_
operation (required) - must always be 'deploy_custom_function_project'
project (required) - the name of the project you wish to deploy. Must be a string.
payload (required) - a base64-encoded string representation of the .tar file. Must be a string.
Request Body
{"operation"=>"deploy_custom_function_project", "project"=>"dogs", "payload"=>"A very large base64-encoded string represenation of the .tar file"}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string |
RESPONSES
status: OK
{"message":"Successfully deployed project: dogs"}