GET api/Nominee/GetQbccLicense?userId={userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

string

Required

Body Parameters

None.

Response Information

Resource Description

QbccLicenseResponseModel
NameDescriptionTypeAdditional information
QBCCLicenseNumber

string

None.

QBCCFinanceCategory

string

None.

QBCCLicenseDeclarationDate

string

None.

QBCCLicenseExpiryDate

string

None.

OccupationalLicenseNumber

string

None.

EndorsementsHeld

Pair of string [key] and string [value]

None.

BackflowPreventionExpiryDate

string

None.

OccupationalLicenseDeclarationDate

string

None.

OccupationalLicenseExpiryDate

string

None.

GasWorkLicenseNumber

string

None.

GasWorkLicenseDeclarationDate

string

None.

GasWorkLicenseExpiryDate

string

None.

Result

ResponseResult

None.

Response Formats

application/json, text/json

Sample:
{
  "QBCCLicenseNumber": "sample string 1",
  "QBCCFinanceCategory": "sample string 2",
  "QBCCLicenseDeclarationDate": "sample string 3",
  "QBCCLicenseExpiryDate": "sample string 4",
  "OccupationalLicenseNumber": "sample string 5",
  "EndorsementsHeld": {
    "Key": "sample string 1",
    "Value": "sample string 2"
  },
  "BackflowPreventionExpiryDate": "sample string 6",
  "OccupationalLicenseDeclarationDate": "sample string 7",
  "OccupationalLicenseExpiryDate": "sample string 8",
  "GasWorkLicenseNumber": "sample string 9",
  "GasWorkLicenseDeclarationDate": "sample string 10",
  "GasWorkLicenseExpiryDate": "sample string 11",
  "Result": {
    "Success": true,
    "Message": "sample string 2",
    "Errors": [
      {
        "Message": "sample string 1"
      },
      {
        "Message": "sample string 1"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<QbccLicenseResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bond.Core.API.Models.Response">
  <Result>
    <Errors>
      <ErrorMessage>
        <Message>sample string 1</Message>
      </ErrorMessage>
      <ErrorMessage>
        <Message>sample string 1</Message>
      </ErrorMessage>
    </Errors>
    <Message>sample string 2</Message>
    <Success>true</Success>
  </Result>
  <BackflowPreventionExpiryDate>sample string 6</BackflowPreventionExpiryDate>
  <EndorsementsHeld xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
    <d2p1:key>sample string 1</d2p1:key>
    <d2p1:value>sample string 2</d2p1:value>
  </EndorsementsHeld>
  <GasWorkLicenseDeclarationDate>sample string 10</GasWorkLicenseDeclarationDate>
  <GasWorkLicenseExpiryDate>sample string 11</GasWorkLicenseExpiryDate>
  <GasWorkLicenseNumber>sample string 9</GasWorkLicenseNumber>
  <OccupationalLicenseDeclarationDate>sample string 7</OccupationalLicenseDeclarationDate>
  <OccupationalLicenseExpiryDate>sample string 8</OccupationalLicenseExpiryDate>
  <OccupationalLicenseNumber>sample string 5</OccupationalLicenseNumber>
  <QBCCFinanceCategory>sample string 2</QBCCFinanceCategory>
  <QBCCLicenseDeclarationDate>sample string 3</QBCCLicenseDeclarationDate>
  <QBCCLicenseExpiryDate>sample string 4</QBCCLicenseExpiryDate>
  <QBCCLicenseNumber>sample string 1</QBCCLicenseNumber>
</QbccLicenseResponseModel>