PUT api/kullanicilar/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
KullaniciDto| Name | Description | Type | Additional information |
|---|---|---|---|
| KullaniciAdi | string |
Required String length: inclusive between 0 and 50 |
|
| Sifre | string |
String length: inclusive between 8 and 100 |
|
| AdSoyad | string |
Required String length: inclusive between 0 and 100 |
|
| Telefon | string |
String length: inclusive between 0 and 20 |
|
| string |
String length: inclusive between 0 and 100 |
||
| Rol | string |
String length: inclusive between 0 and 20 |
|
| AktifMi | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"kullaniciAdi": "sample string 1",
"sifre": "sample string 2",
"adSoyad": "sample string 3",
"telefon": "sample string 4",
"email": "sample string 5",
"rol": "sample string 6",
"aktifMi": true
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.