Automations
Test Automation
Trigger a test execution of an automation
POST
Test Automation
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Example:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Trigger a test execution of an automation
curl --request POST \
--url https://api.oviond.com/v1/automations/:id/test \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"recipients": [
"[email protected]"
]
}
'{
"success": true,
"data": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request POST \
--url https://api.oviond.com/v1/automations/:id/test \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"recipients": [
"[email protected]"
]
}
'{
"success": true,
"data": {}
}