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": "00961080-b493-4e3e-a610-e45b725fc757",
  "Name": "sample string 2",
  "Surname": "sample string 3",
  "BirthDate": "2025-05-23T22:15:19.4522094+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-05-23T22:15:19.4522094+03:00</BirthDate>
  <Name>sample string 2</Name>
  <Surname>sample string 3</Surname>
  <UserId>00961080-b493-4e3e-a610-e45b725fc757</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>