For the complete documentation index, see llms.txt. This page is also available as Markdown.

HTTPS

You can invoke UbiFunctions with HTTP POST or GET requests.

Method
URL
Args
Response

POST

Function URL

  • You can send any JSON object in the HTTP body. It will be available in the function as the args variable.

  • You can also send URL parameters, such as ?arg1=value1&arg2=value2. They will be parsed into args.

Defined inside your function

GET

Function URL

  • No HTTP body is expected.

  • You can send URL parameters, such as ?arg1=value1&arg2=value2. They will be parsed into args.

Defined inside your function

Last updated

Was this helpful?