PATCH api/Customer/ValidateUserWithTCKN

Request Information

URI Parameters

None.

Body Parameters

ValidateUserWithTCKNRequest
NameDescriptionTypeAdditional information
AddressId

globally unique identifier

None.

CitizenId

string

None.

BirthDate

string

None.

Name

string

None.

Surname

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AddressId": "f771277c-cf8a-47ec-ade2-5cde9cc0b3fe",
  "CitizenId": "sample string 3",
  "BirthDate": "sample string 4",
  "Name": "sample string 5",
  "Surname": "sample string 6"
}

application/xml, text/xml

Sample:
<ValidateUserWithTCKNRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <AddressId>f771277c-cf8a-47ec-ade2-5cde9cc0b3fe</AddressId>
  <BirthDate>sample string 4</BirthDate>
  <CitizenId>sample string 3</CitizenId>
  <Name>sample string 5</Name>
  <Surname>sample string 6</Surname>
  <UserId>2cc801a9-f8b9-4271-afa2-b821c280d548</UserId>
</ValidateUserWithTCKNRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseBaseV2
NameDescriptionTypeAdditional information
Success

boolean

None.

Data

Object

None.

Error

ErrorResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Data": {},
  "Error": {
    "Code": 1,
    "Level": "sample string 2",
    "Message": "sample string 3",
    "SubMessage": "sample string 4"
  }
}

application/xml, text/xml

Sample:
<ResponseBaseV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Common">
  <Data />
  <Error xmlns:d2p1="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
    <d2p1:Code>1</d2p1:Code>
    <d2p1:Level>sample string 2</d2p1:Level>
    <d2p1:Message>sample string 3</d2p1:Message>
    <d2p1:SubMessage>sample string 4</d2p1:SubMessage>
  </Error>
  <Success>true</Success>
</ResponseBaseV2>