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": "39e372e6-8d5a-4e42-a81b-57963d7ffeec",
"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>39e372e6-8d5a-4e42-a81b-57963d7ffeec</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": "e8f7f627-7800-4553-9103-335596cd8136",
"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>e8f7f627-7800-4553-9103-335596cd8136</UserId>
</UserAtionetProfilePictureDto>