POST Users/EditUserIdentity
Request Information
URI Parameters
None.
Body Parameters
EditUserIdentityRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| tc | string |
None. |
|
| serial_number | string |
None. |
|
| birth_date | date |
None. |
|
| gender | string |
None. |
|
| nationality | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": 1,
"tc": "sample string 2",
"serial_number": "sample string 3",
"birth_date": "2025-11-08T13:16:33.404335+03:00",
"gender": "sample string 4",
"nationality": "sample string 5"
}
application/xml, text/xml
Sample:
<UserController.EditUserIdentityRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RentekerAPIProject.Controllers"> <UserID>1</UserID> <birth_date>2025-11-08T13:16:33.404335+03:00</birth_date> <gender>sample string 4</gender> <nationality>sample string 5</nationality> <serial_number>sample string 3</serial_number> <tc>sample string 2</tc> </UserController.EditUserIdentityRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GeneralResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2"
}
application/xml, text/xml
Sample:
<AppSettings.GeneralResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RentekerAPIProject"> <message>sample string 2</message> <success>true</success> </AppSettings.GeneralResponse>