For more information on using API

POST http://webapi.mymarketing.co.il/api/webhooks/{id}/Test

Send a test request for a given Webhook

Request Information

URI Parameters

Name

Description

Type

Additional information

id

Webhook id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ApiEventTestResultInfo

Name

Description

Type

Additional information

status_code

integer
status_name

string
response_message

string

Response Formats

application/json, text/json

Sample:
{
  "status_code": 1,
  "status_name": "sample string 2",
  "response_message": "sample string 3"
}

application/xml, text/xml

Sample:
<ApiEventTestResultInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models">
  <response_message>sample string 3</response_message>
  <status_code>1</status_code>
  <status_name>sample string 2</status_name>
</ApiEventTestResultInfo>