Skip to main content
POST
/
v1
/
wokus
Create a Woku with a file URL
curl --request POST \
  --url https://clientapi.woku.app/v1/wokus \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "Customer Service Experience - Store #123",
  "fileUrl": "https://cdn.example.com/images/product-image.jpg",
  "folderSecondaryKey": "store-123",
  "parentFolderSecondaryKey": "region-north",
  "clientEmail": "customer@example.com",
  "clientPhone": 56912345678
}
'
{
  "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.

Body

application/json
description
string
required

Description of the woku (product, service, or experience being reviewed).

Example:

"Customer Service Experience - Store #123"

fileUrl
string<uri>
required

URL of an existing file (image or video) to associate with the woku.

Example:

"https://cdn.example.com/images/product-image.jpg"

folderSecondaryKey
string
Example:

"store-123"

parentFolderSecondaryKey
string
Example:

"region-north"

clientEmail
string<email>
Example:

"customer@example.com"

clientPhone
integer
Example:

56912345678

Response

Woku created