Skip to main content
POST
/
v1
/
nps
/
{id}
/
textnotes
Add a text review to an NPS score
curl --request POST \
  --url https://clientapi.woku.app/v1/nps/{id}/textnotes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "El producto cumple mis expectativas."
}
'
{
  "statusCode": 400,
  "message": "<string>",
  "error": "Bad Request"
}

Documentation Index

Fetch the complete documentation index at: https://woku.app/docs/llms.txt

Use this file to discover all available pages before exploring further.

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 NPS score.

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

Body

application/json
description
string
required

Text feedback content.

Maximum string length: 3000
Example:

"El producto cumple mis expectativas."

Response

Text review added