Returns a response with status code 200 (OK) and the information from the options parameter.
The ok()
function creates a response with the status code 200 (OK).
Optionally, the ok()
function can take a WixHttpFunctionResponseOptions
object which is used to specify the response's body and headers.
Note: If the object contains a status it will be ignored.
Use the response()
function to create a response to return from an HTTP
function. A 200 (OK) response is usually used to indicate that a request was successful.
The response options.