POST
/
projects
/
{project_id}
/
webhooks
/
test
curl --request POST \
  --url https://api.beyondwords.io/v1/projects/{project_id}/webhooks/test \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "url": "https://new_example.com/",
  "headers": {
    "Authorization": "Bearer xxxxxx",
    "X-My-Custom-Header-Y": "yyyyyy",
    "X-My-Custom-Header-Z": "zzzzzz"
  }
}'

Authorizations

X-Api-Key
string
header
required

Path Parameters

project_id
string
required

The numeric ID of your project

Body

application/json
url
string

The URL that BeyondWords will send webhook notifications to. This URL must be served over HTTPS

headers
object

Response

200

OK