API notification for Candidates data changing

API notification for Candidates data changing

Hi.
I'm trying to setting the API notification to a custom url on candidate data changing following this guide:

In my request body I put this:
  1. {
  2.     "watch": [
  3.         {
  4.             "channel_id""1000000012345",
  5.             "events": [
  6.                 "Candidates.create",
  7.                 "Candidates.edit"
  8.             ],
  9.             "token""TOKEN_FOR_VERIFICATION_OF_1000000012345",
  10.             "notify_url""http://my-personal-url/"
  11.         }
  12.     ]
  13. }
But I'm receiving this error:
  1. {
  2.     "watch": [
  3.         {
  4.             "code""INVALID_DATA",
  5.             "details": {
  6.                 "api_name""events"
  7.             },
  8.             "message""invalid data",
  9.             "status""error"
  10.         }
  11.     ]
  12. }
What's wrong?