HTTPS
Method
URL
Args
Response
Last updated
Was this helpful?
You can invoke UbiFunctions with HTTP POST or GET requests.
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?
Was this helpful?