Skip to main content
POST
/
v1
/
wokus
/
{wokuId}
/
share
Share a Woku review link via email
curl --request POST \
  --url https://clientapi.woku.app/v1/wokus/{wokuId}/share \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "clientEmail": "customer@example.com",
  "clientEmails": [
    "customer1@example.com",
    "customer2@example.com"
  ]
}
'
{
  "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

Either clientEmail (single) or clientEmails (array) must be supplied.

clientEmail
string<email>
Example:

"customer@example.com"

clientEmails
string<email>[]
Example:
[
"customer1@example.com",
"customer2@example.com"
]

Response

Email(s) sent