action dracoon_request_avatar {
label: "Request avatar"
description: "
🚀 Since v4.11.0
\n\n### Description:\nGet the avatar.\n\n### Precondition:\nAuthenticated user.\n\n### Postcondition:\nAvatar is returned.\n\n### Further Information:\nNone."
provider: dracoon
method: GET
path: "/v4/user/account/avatar"
encoding: json
input: {
type: "object"
properties: {
"X-Sds-Auth-Token": {
type: "string"
}
}
additionalProperties: false
}
output: {
type: "object"
description: "User avatar information"
required: ["avatarUri", "avatarUuid", "isCustomAvatar"]
properties: {
avatarUri: {
type: "string"
description: "Avatar URI"
}
avatarUuid: {
type: "string"
description: "Avatar UUID"
}
isCustomAvatar: {
type: "boolean"
description: "Determines whether user updated his / her avatar with own image"
}
}
}
}