PUT api/Utilisateur/{id}?app={app}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| app | string |
Required |
Body Parameters
Collection of HabillitationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| IdHabillitation | decimal number |
None. |
|
| IdProfil | decimal number |
None. |
|
| IdFonctionnalite | decimal number |
None. |
|
| Code | string |
None. |
|
| Allow | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"IdHabillitation": 1.0,
"IdProfil": 1.0,
"IdFonctionnalite": 1.0,
"Code": "sample string 2",
"Allow": true
},
{
"IdHabillitation": 1.0,
"IdProfil": 1.0,
"IdFonctionnalite": 1.0,
"Code": "sample string 2",
"Allow": true
}
]
application/xml, text/xml
Sample:
<ArrayOfHabillitationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Inexa.ASO.Common.Dto.Generated">
<HabillitationDto>
<Allow>true</Allow>
<Code>sample string 2</Code>
<IdFonctionnalite>1</IdFonctionnalite>
<IdHabillitation>1</IdHabillitation>
<IdProfil>1</IdProfil>
</HabillitationDto>
<HabillitationDto>
<Allow>true</Allow>
<Code>sample string 2</Code>
<IdFonctionnalite>1</IdFonctionnalite>
<IdHabillitation>1</IdHabillitation>
<IdProfil>1</IdProfil>
</HabillitationDto>
</ArrayOfHabillitationDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |