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": "bffd0449-3a7c-4fd4-8411-ddf1b227b939",
"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>bffd0449-3a7c-4fd4-8411-ddf1b227b939</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": "69b71269-6f5e-4d7d-8e14-ffb81debed47",
"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>69b71269-6f5e-4d7d-8e14-ffb81debed47</UserId>
</UserAtionetProfilePictureDto>