PUT api/Customer/UpdateCustomerNationalIdentityData
Request Information
URI Parameters
None.
Body Parameters
UpdateCustomerNationalIdentityDataRequestName | Description | Type | Additional information |
---|---|---|---|
UserId | globally unique identifier |
None. |
|
Name | string |
None. |
|
Surname | string |
None. |
|
BirthDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserId": "3b8b4afc-4c71-4e4f-839d-4ad95ea9ec3c", "Name": "sample string 2", "Surname": "sample string 3", "BirthDate": "2025-09-14T21:26:29.7906516+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-09-14T21:26:29.7906516+03:00</BirthDate> <Name>sample string 2</Name> <Surname>sample string 3</Surname> <UserId>3b8b4afc-4c71-4e4f-839d-4ad95ea9ec3c</UserId> </UpdateCustomerNationalIdentityDataRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>