GET api/ApplyOnline/GetCMBLink?staffNo={staffNo}&staffName={staffName}&staffPhone={staffPhone}&staffEmail={staffEmail}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
staffNo

string

Required

staffName

string

Required

staffPhone

string

Required

staffEmail

string

Required

Body Parameters

None.

Response Information

Resource Description

ApplyOnlineShortUrlResponse
NameDescriptionTypeAdditional information
LinkUrl

ShortUrlInfo

None.

ResponseCode

ResponseCode

None.

AlertMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "LinkUrl": {
    "TCLink": "sample string 1",
    "SCLink": "sample string 2",
    "ENLink": "sample string 3"
  },
  "ResponseCode": 1,
  "AlertMessage": "sample string 1"
}

text/xml

Sample:
<ApplyOnlineShortUrlResponse 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>
  <LinkUrl>
    <ENLink>sample string 3</ENLink>
    <SCLink>sample string 2</SCLink>
    <TCLink>sample string 1</TCLink>
  </LinkUrl>
</ApplyOnlineShortUrlResponse>