PUT UserAtionetProfilePicture/{id}
Updates the user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the user. |
globally unique identifier |
Required |
Body Parameters
The new data of the user.
UserAtionetProfilePictureDto| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| Image | UserAtionetImageDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "e27eed60-0522-499d-aeb3-2d20b4c71573",
"Image": {
"FileExtension": "sample string 1",
"FileFullUrl": "sample string 2",
"Content": "QEA="
}
}
application/xml, text/xml
Sample:
<UserAtionetProfilePictureDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<Image>
<Content>QEA=</Content>
<FileExtension>sample string 1</FileExtension>
<FileFullUrl>sample string 2</FileFullUrl>
</Image>
<UserId>e27eed60-0522-499d-aeb3-2d20b4c71573</UserId>
</UserAtionetProfilePictureDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
State of the action.
UserAtionetProfilePictureDto| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| Image | UserAtionetImageDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserId": "7261b9af-3d0f-4b5d-a254-69cd8f75f11a",
"Image": {
"FileExtension": "sample string 1",
"FileFullUrl": "sample string 2",
"Content": "QEA="
}
}
application/xml, text/xml
Sample:
<UserAtionetProfilePictureDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<Image>
<Content>QEA=</Content>
<FileExtension>sample string 1</FileExtension>
<FileFullUrl>sample string 2</FileFullUrl>
</Image>
<UserId>7261b9af-3d0f-4b5d-a254-69cd8f75f11a</UserId>
</UserAtionetProfilePictureDto>