Botize Request
Trigger an event on a task
1. Do a GET or POST request to:
Asynchronous: https://botize.com/webhook/{access_token}/{task_id} Synchronous: https://botize.com/webhook-sync/{access_token}/{task_id}
Where {access_token} must be replaced by your Access Token given by Botize within the task.
Where {task_id} must be replaced by the ID number of the task you want to execute.
2. Optionally post the specified data in the request body:
{"message":"Hello World","image":"http://mysite.com/picture.jpg"}
The event data should not be larger than 10KB and will be available to your task. If you attempt to POST an event with a larger data parameter you will receive a 413 error code. If you have a use case which requires a larger messages size please get in touch.
Note: You should only provide this token to applications you know and trust.