GET api/v3/Links/GetActiveDepartmentLinks
Gets the current active department links for this department where data is bring shared to it
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of DepartmentLinkResult objects with the information about the links
Collection of DepartmentLinkResultName | Description | Type | Additional information |
---|---|---|---|
LinkId | integer |
None. |
|
DepartmentName | string |
None. |
|
Color | string |
None. |
|
ShareCalls | boolean |
None. |
|
ShareUnits | boolean |
None. |
|
SharePersonnel | boolean |
None. |
|
ShareOrders | boolean |
None. |
Response Formats
application/json
Sample:
[ { "LinkId": 1, "DepartmentName": "sample string 2", "Color": "sample string 3", "ShareCalls": true, "ShareUnits": true, "SharePersonnel": true, "ShareOrders": true }, { "LinkId": 1, "DepartmentName": "sample string 2", "Color": "sample string 3", "ShareCalls": true, "ShareUnits": true, "SharePersonnel": true, "ShareOrders": true } ]
application/xml, text/xml
Sample:
<ArrayOfDepartmentLinkResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Resgrid.Web.Services.Controllers.Version3.Models.Links"> <DepartmentLinkResult> <Color>sample string 3</Color> <DepartmentName>sample string 2</DepartmentName> <LinkId>1</LinkId> <ShareCalls>true</ShareCalls> <ShareOrders>true</ShareOrders> <SharePersonnel>true</SharePersonnel> <ShareUnits>true</ShareUnits> </DepartmentLinkResult> <DepartmentLinkResult> <Color>sample string 3</Color> <DepartmentName>sample string 2</DepartmentName> <LinkId>1</LinkId> <ShareCalls>true</ShareCalls> <ShareOrders>true</ShareOrders> <SharePersonnel>true</SharePersonnel> <ShareUnits>true</ShareUnits> </DepartmentLinkResult> </ArrayOfDepartmentLinkResult>