GET api/BusinessModules/{id}/Triggers
Gets all active triggers on a business module
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id of the business module |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
A collection of triggers with the title and id
Collection of WorkPoint365.WebAPI.Model.Trigger| Name | Description | Type | Additional information |
|---|---|---|---|
| Title |
The Title of the Trigger |
string |
None. |
| Id |
The Id of the Trigger |
globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Title": "sample string 1",
"Id": "f1973bd8-2dd6-4795-8e86-c98d371ddac1"
},
{
"Title": "sample string 1",
"Id": "f1973bd8-2dd6-4795-8e86-c98d371ddac1"
}
]
application/xml, text/xml
Sample:
<ArrayOfTrigger xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint365.WebAPI.Model">
<Trigger>
<Id>f1973bd8-2dd6-4795-8e86-c98d371ddac1</Id>
<Title>sample string 1</Title>
</Trigger>
<Trigger>
<Id>f1973bd8-2dd6-4795-8e86-c98d371ddac1</Id>
<Title>sample string 1</Title>
</Trigger>
</ArrayOfTrigger>