PUT api/Customer/UpdateCustomerNationalIdentityData

Request Information

URI Parameters

None.

Body Parameters

UpdateCustomerNationalIdentityDataRequest
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

Name

string

None.

Surname

string

None.

BirthDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "c51a86ba-913a-46bf-a01d-200149e6a42f",
  "Name": "sample string 2",
  "Surname": "sample string 3",
  "BirthDate": "2025-10-30T21:00:41.2367106+03:00"
}

application/xml, text/xml

Sample:
<UpdateCustomerNationalIdentityDataRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <BirthDate>2025-10-30T21:00:41.2367106+03:00</BirthDate>
  <Name>sample string 2</Name>
  <Surname>sample string 3</Surname>
  <UserId>c51a86ba-913a-46bf-a01d-200149e6a42f</UserId>
</UpdateCustomerNationalIdentityDataRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>