Skip to main content
PATCH
/
log
/
{id}
cURL
curl --request PATCH \
  --url https://www.datawizz.app/api/log/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "input": {},
  "meta_tags": [
    "<string>"
  ],
  "metadata": {},
  "output": {}
}'
"Ok"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the log being edited. This will be included in the chat completion response

Body

application/json

UpdateLog object that needs to be updated

input
object

The input data for the log

meta_tags
string[]

The meta tags for the log - this value will override the existing meta tags

metadata
object

The metadata for the log - this value will override the existing metadata

output
object

The output data for the log

Response

Ok response

The response is of type string.

Example:

"Ok"