Skip to main content
POST
/
v1
/
csat
/
{id}
/
textnotes
Add a text comment to a CSAT response
curl --request POST \
  --url https://clientapi.woku.app/v1/csat/{id}/textnotes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "El proceso fue muy facil."
}
'
{
  "statusCode": 400,
  "message": "<string>",
  "error": "Bad Request"
}

Authorizations

Authorization
string
header
required

Company API key. Obtain this from your Woku dashboard under Settings > API Keys. The same key used for the v0 endpoints.

Path Parameters

id
string
required

MongoDB ObjectId of the CSAT response.

Pattern: ^[0-9a-fA-F]{24}$

Body

application/json
description
string
required

Text feedback content.

Maximum string length: 3000
Example:

"El proceso fue muy facil."

Response

Text comment accepted