For more information on using API

GET http://webapi.mymarketing.co.il/api/webhooks/{id}/parameter/{parameterid}

Get parameters details by a given id

Request Information

URI Parameters

Name

Description

Type

Additional information

id

Webhook id

integer

Required

parameterid

Webhook parameter id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ParametersDetailsItem

Name

Description

Type

Additional information

id

Parameter id

integer
key

The parameter name

string
value

The key value

string
event_parameter_type

Type of the parameter as enum

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "key": "sample string 2",
  "value": "sample string 3",
  "event_parameter_type": "header"
}

application/xml, text/xml

Sample:
<ParametersDetailsItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models">
  <event_parameter_type>header</event_parameter_type>
  <id>1</id>
  <key>sample string 2</key>
  <value>sample string 3</value>
</ParametersDetailsItem>