Mx.Load document
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

6.3. Requests and Formats

When each event occurs, a POST request is sent to the URL set in the Webhook New Registration Screen. The POST request has the following structure.

Request Header

Name Content Sample
content-type application/json

Request Body

Name Content Sample
result_id Result ID 664
start_at Test start date and time 2023-02-24T08:11:16
end_at Test end date and time 2023-02-24T08:13:24
project_id Project ID 55
project_name Project name Test0001
project_page Project details page URL https://xxxxxx/xxxxxx
scenario_id Scenario ID 96
action_list_id Action list ID 93
result_download_link Download URL for the result file https://xxxxxx/xxxxxx
scenario_download_link Download URL for the scenario file https://xxxxxx/xxxxxx
status Test status Completed

Request Body Sample

{
  "result_id":664,
  "start_at":"2023-02-24T08:11:16",
  "end_at":"2023-02-24T08:13:24",
  "project_id":55,
  "project_name":"Test0001",
  "project_page":"https://xxxxxx/xxxxxx",
  "scenario_id":96,
  "action_list_id":93,
  "result_download_link":"https://xxxxxx/xxxxxx",
  "scenario_download_link":"https://xxxxxx/xxxxxx",
  "status":"Completed"
}

About the Response

  • Always return Status Code 200.
  • POST requests notified by Webhooks will not be resent even if they fail.