POST trigger-execute?triggerId={triggerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| triggerId | integer |
Required |
Body Parameters
RMSTriggerExecuteBodyData| Name | Description | Type | Additional information |
|---|---|---|---|
| key | string |
None. |
|
| flow | RMSLongId |
None. |
|
| data | Object |
None. |
|
| payload | RMSTriggerExecuteBodyPayloadData |
None. |
|
| history | RMSTriggerExecuteBodyHistoryData |
None. |
Request Formats
application/json, text/json
Sample:
{
"key": "sample string 1",
"flow": {
"id": 1
},
"data": {},
"payload": {
"module": "sample string 1",
"values": {
"sample string 1": {},
"sample string 3": {}
}
},
"history": {
"packet": "sample string 1",
"accessKey": "sample string 2"
}
}
application/xml, text/xml
Sample:
<RMSTriggerExecuteBodyData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HERMES_Cron.Models">
<data />
<flow>
<id>1</id>
</flow>
<history>
<accessKey>sample string 2</accessKey>
<packet>sample string 1</packet>
</history>
<key>sample string 1</key>
<payload>
<module>sample string 1</module>
<values xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringanyType>
<d3p1:Key>sample string 1</d3p1:Key>
<d3p1:Value />
</d3p1:KeyValueOfstringanyType>
<d3p1:KeyValueOfstringanyType>
<d3p1:Key>sample string 3</d3p1:Key>
<d3p1:Value />
</d3p1:KeyValueOfstringanyType>
</values>
</payload>
</RMSTriggerExecuteBodyData>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |