GET api/ApplyOnline/GetStaff?staffNo={staffNo}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
staffNo | string |
Required |
Body Parameters
None.
Response Information
Resource Description
StaffResponseName | Description | Type | Additional information |
---|---|---|---|
StaffInfo | StaffInfoModel |
None. |
|
ResponseCode | ResponseCode |
None. |
|
AlertMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "StaffInfo": { "StaffNo": "sample string 1", "StaffName": "sample string 2", "StaffPhone": "sample string 3", "TCLink": "sample string 4", "SCLink": "sample string 5", "ENLink": "sample string 6" }, "ResponseCode": 1, "AlertMessage": "sample string 1" }
text/xml
Sample:
<StaffResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CentaMortgageWebAPI.Models"> <AlertMessage>sample string 1</AlertMessage> <ResponseCode>Success</ResponseCode> <StaffInfo> <ENLink>sample string 6</ENLink> <SCLink>sample string 5</SCLink> <StaffName>sample string 2</StaffName> <StaffNo>sample string 1</StaffNo> <StaffPhone>sample string 3</StaffPhone> <TCLink>sample string 4</TCLink> </StaffInfo> </StaffResponse>