GET api/BusinessModules/{id}/Actions
Gets all active actions 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 actions with the title and id
Collection of WorkPoint365.WebAPI.Model.Action| Name | Description | Type | Additional information |
|---|---|---|---|
| Title |
The Title of the Action |
string |
None. |
| Id |
The Id of the Action |
globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Title": "sample string 1",
"Id": "34ad23f3-fd76-435d-b585-2118bab6dd1b"
},
{
"Title": "sample string 1",
"Id": "34ad23f3-fd76-435d-b585-2118bab6dd1b"
}
]
application/xml, text/xml
Sample:
<ArrayOfAction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint365.WebAPI.Model">
<Action>
<Id>34ad23f3-fd76-435d-b585-2118bab6dd1b</Id>
<Title>sample string 1</Title>
</Action>
<Action>
<Id>34ad23f3-fd76-435d-b585-2118bab6dd1b</Id>
<Title>sample string 1</Title>
</Action>
</ArrayOfAction>