POST
/
endpoints
/
{id}
/
logs
/
{log-id}
/
comments
curl --request POST \
  --url https://app.baseplate.ai/endpoints/{id}/logs/{log-id}/comments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "comment": "<string>"
}'

Parameters

Path

id
String
required

Baseplate endpoint ID

log-id
String

The ID of the log/usage. It is returned as “usageld” in completion requests.

Authorization
String

Baseplate API key. Needs to be in the format “Bearer &BASEPLATE_API_KEY”

Body

comment
String

The comment to add.

{
  "prompt": "Say this is a test",
  "completion": "This is a test.",
  "id": "11f96c9a-086c-4490-b330-af0d93c0b322",
  "date": "2023-03-13",
  "positive_rating": true,
  "variant_id": "f04682e5-8bff-48c1-b498-7158d04e72de",
  "comments": [
      {
          "name": "Ani Gottiparthy",
          "email": "ani@example",
          "comment": "This is a comment from the API",
      },
      {
          "name": "Andrew Luo",
          "email": "andrew@example",
          "comment": "This is a comment from the API",
      }
  ]
}