Skip to main content
POST
/
wokus
/
share-woku-to-email
Share woku to email
curl --request POST \
  --url https://clientapi.woku.app/wokus/share-woku-to-email \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "wokuId": "65348875f3a876254aa82d5e",
  "clientEmail": "[email protected]",
  "clientEmails": [
    "[email protected]",
    "[email protected]"
  ]
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
wokuId
string
required

This field is the ID of a woku in string format.

Example:

"65348875f3a876254aa82d5e"

clientEmail
string

This field must be a valid customer email.

clientEmails
string[]

This field is a customer emails array. If this field is entered, the clientEmail field is not included.

Response

201

Email sent successfully.