Skip to main content
POST
/
v1
/
wokus
/
{wokuId}
/
textnotes
Create a text review for a Woku
curl --request POST \
  --url https://clientapi.woku.app/v1/wokus/{wokuId}/textnotes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "qualification": 5,
  "description": "Excellent service! The staff was very helpful.",
  "clientEmail": "jsmith@example.com",
  "clientPhone": 123,
  "anonymous": false
}
'
{
  "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

wokuId
string
required

MongoDB ObjectId of the Woku.

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

Body

application/json
qualification
enum<integer>
required
Available options:
1,
2,
3,
4,
5
Example:

5

description
string
required
Maximum string length: 3000
Example:

"Excellent service! The staff was very helpful."

clientEmail
string<email>
clientPhone
integer

Reviewer phone number.

anonymous
boolean
default:false

Response

Textnote created