PATCH
/
log
/
{id}
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": {},
  "quality_feedback": "<string>",
  "quality_rating": "👍"
}'
"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

The body is of type object.

Response

200
text/plain

Ok response

The response is of type string.

Example:

"Ok"