GET api/External/PortalAccess/{EmployeeID}

Get Employee Portal Permissions

Request Information

URI Parameters

NameDescriptionTypeAdditional information
EmployeeID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of HostedAccess
NameDescriptionTypeAdditional information
EmployeeID

integer

None.

EmployeeName

string

None.

CompanyCode

string

None.

Element

string

None.

Customers

string

None.

Dashboard

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "EmployeeID": 1,
    "EmployeeName": "sample string 2",
    "CompanyCode": "sample string 3",
    "Element": "sample string 4",
    "Customers": "sample string 5",
    "Dashboard": "sample string 6"
  },
  {
    "EmployeeID": 1,
    "EmployeeName": "sample string 2",
    "CompanyCode": "sample string 3",
    "Element": "sample string 4",
    "Customers": "sample string 5",
    "Dashboard": "sample string 6"
  }
]

text/html

Sample:
[{"EmployeeID":1,"EmployeeName":"sample string 2","CompanyCode":"sample string 3","Element":"sample string 4","Customers":"sample string 5","Dashboard":"sample string 6"},{"EmployeeID":1,"EmployeeName":"sample string 2","CompanyCode":"sample string 3","Element":"sample string 4","Customers":"sample string 5","Dashboard":"sample string 6"}]

application/xml, text/xml

Sample:
<ArrayOfExternalController.HostedAccess xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IBMS_Cloud_API.Controllers">
  <ExternalController.HostedAccess>
    <CompanyCode>sample string 3</CompanyCode>
    <Customers>sample string 5</Customers>
    <Dashboard>sample string 6</Dashboard>
    <Element>sample string 4</Element>
    <EmployeeID>1</EmployeeID>
    <EmployeeName>sample string 2</EmployeeName>
  </ExternalController.HostedAccess>
  <ExternalController.HostedAccess>
    <CompanyCode>sample string 3</CompanyCode>
    <Customers>sample string 5</Customers>
    <Dashboard>sample string 6</Dashboard>
    <Element>sample string 4</Element>
    <EmployeeID>1</EmployeeID>
    <EmployeeName>sample string 2</EmployeeName>
  </ExternalController.HostedAccess>
</ArrayOfExternalController.HostedAccess>