Getting started
Analytics
Background tracks
Content
Languages
Organization settings
Project voices
Player settings
Player
Playlists
Webhooks
Projects
Roles
RSS Feed
Rules
Summarization Settings
Video Settings
Webhooks
Test webhook
Webhooks
Test webhook
Test project webhook
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
Path Parameters
The numeric ID of your project
Body
application/json
The URL that BeyondWords will send webhook notifications to. This URL must be served over HTTPS
Response
200
OK
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"
}
}'