Skip to main content
POST
/
v1
/
wokus
/
form-data
Create a Woku with a file upload (multipart)
curl --request POST \
  --url https://clientapi.woku.app/v1/wokus/form-data \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file' \
  --form 'description=Customer Service Experience - Store #123' \
  --form folderSecondaryKey=store-123 \
  --form parentFolderSecondaryKey=region-north \
  --form clientEmail=jsmith@example.com \
  --form 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

multipart/form-data
file
file
required

Image or video file to associate with the woku.

description
string
required
Example:

"Customer Service Experience - Store #123"

folderSecondaryKey
string
Example:

"store-123"

parentFolderSecondaryKey
string
Example:

"region-north"

clientEmail
string<email>
clientPhone
string
Example:

"56912345678"

Response

Woku created