POST api/Customer/UpdateV2
Request Information
URI Parameters
None.
Body Parameters
UpdateUserInformationV2RequestName | Description | Type | Additional information |
---|---|---|---|
name | string |
None. |
|
surname | string |
None. |
|
birthDay | date |
None. |
|
gender | integer |
None. |
|
Source | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "name": "sample string 1", "surname": "sample string 2", "birthDay": "2025-05-23T22:50:46.4872852+03:00", "gender": 1, "Source": "sample string 4" }
application/xml, text/xml
Sample:
<UpdateUserInformationV2Request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <BirthDay>2025-05-23T22:50:46.4872852+03:00</BirthDay> <FirstName>sample string 1</FirstName> <Gender>1</Gender> <LastName>sample string 2</LastName> <Source>sample string 4</Source> <UserId>31b3cae4-5b6b-4ec0-8dec-e78800ba7d17</UserId> </UpdateUserInformationV2Request>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UpdateUserInformationV2ResponseName | Description | Type | Additional information |
---|---|---|---|
Messages | Collection of MessageModel |
None. |
|
Data | Object |
None. |
|
Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Messages": [ { "Code": 1, "Level": "sample string 2", "Message": "sample string 3", "SubMessage": "sample string 4" }, { "Code": 1, "Level": "sample string 2", "Message": "sample string 3", "SubMessage": "sample string 4" } ], "Data": {}, "Success": true }
application/xml, text/xml
Sample:
<UpdateUserInformationV2Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Data xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response.Common" /> <Messages xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response.Common"> <MessageModel> <Code>1</Code> <Level>sample string 2</Level> <Message>sample string 3</Message> <SubMessage>sample string 4</SubMessage> </MessageModel> <MessageModel> <Code>1</Code> <Level>sample string 2</Level> <Message>sample string 3</Message> <SubMessage>sample string 4</SubMessage> </MessageModel> </Messages> <Success xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response.Common">true</Success> </UpdateUserInformationV2Response>