GET api/Service3/GetIdentification

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

IdentificationModel
NameDescriptionTypeAdditional information
identi

Collection of Identification

None.

resultCode

integer

None.

resultDesc

string

None.

Response Formats

application/json, text/json

Sample:
{
  "identi": [
    {
      "IdentificationType": "sample string 1",
      "IdentificationId": 2
    },
    {
      "IdentificationType": "sample string 1",
      "IdentificationId": 2
    }
  ],
  "resultCode": 1,
  "resultDesc": "sample string 2"
}

text/html

Sample:
{"identi":[{"IdentificationType":"sample string 1","IdentificationId":2},{"IdentificationType":"sample string 1","IdentificationId":2}],"resultCode":1,"resultDesc":"sample string 2"}

application/xml, text/xml

Sample:
<IdentificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfcare.Models">
  <resultCode>1</resultCode>
  <resultDesc>sample string 2</resultDesc>
  <identi>
    <Identification>
      <IdentificationType>sample string 1</IdentificationType>
      <IdentificationId>2</IdentificationId>
    </Identification>
    <Identification>
      <IdentificationType>sample string 1</IdentificationType>
      <IdentificationId>2</IdentificationId>
    </Identification>
  </identi>
</IdentificationModel>