GET ActionApproversAPI/GetActionApproversByDepartmentActive?department={department}&active={active}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| department | string |
Required |
|
| active | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ActionApprovers| Name | Description | Type | Additional information |
|---|---|---|---|
| ActionApproverID | integer |
None. |
|
| Active | boolean |
None. |
|
| ApproverType | string |
None. |
|
| Department | string |
None. |
|
| PeopleID | integer |
None. |
|
| FullName | string |
None. |
|
| string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ActionApproverID": 1,
"Active": true,
"ApproverType": "sample string 3",
"Department": "sample string 4",
"PeopleID": 5,
"FullName": "sample string 6",
"Email": "sample string 7"
},
{
"ActionApproverID": 1,
"Active": true,
"ApproverType": "sample string 3",
"Department": "sample string 4",
"PeopleID": 5,
"FullName": "sample string 6",
"Email": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfActionApprovers xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QMA2020.Models">
<ActionApprovers>
<ActionApproverID>1</ActionApproverID>
<Active>true</Active>
<ApproverType>sample string 3</ApproverType>
<Department>sample string 4</Department>
<Email>sample string 7</Email>
<FullName>sample string 6</FullName>
<PeopleID>5</PeopleID>
</ActionApprovers>
<ActionApprovers>
<ActionApproverID>1</ActionApproverID>
<Active>true</Active>
<ApproverType>sample string 3</ApproverType>
<Department>sample string 4</Department>
<Email>sample string 7</Email>
<FullName>sample string 6</FullName>
<PeopleID>5</PeopleID>
</ActionApprovers>
</ArrayOfActionApprovers>