GET api/person/getbyidentification?identificationNumber={identificationNumber}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
identificationNumber

integer

Required

Body Parameters

None.

Response Information

Resource Description

PersonModel
NameDescriptionTypeAdditional information
Id

integer

None.

IdentificationTypeId

integer

None.

IdentificationNumber

integer

None.

Name

string

None.

Gender

string

None.

EMail

string

None.

MobilePhone

string

None.

Response Formats

application/json, text/javascript, text/html, text/json

Sample:
{
  "Id": 1,
  "IdentificationTypeId": 2,
  "IdentificationNumber": 3,
  "Name": "sample string 4",
  "Gender": "sample string 5",
  "EMail": "sample string 6",
  "MobilePhone": "sample string 7"
}

application/xml, text/xml

Sample:
<PersonModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tecnext.SGM.WebAPI.Models">
  <EMail>sample string 6</EMail>
  <Gender>sample string 5</Gender>
  <Id>1</Id>
  <IdentificationNumber>3</IdentificationNumber>
  <IdentificationTypeId>2</IdentificationTypeId>
  <MobilePhone>sample string 7</MobilePhone>
  <Name>sample string 4</Name>
</PersonModel>