Skip to content

Update Profile

PATCH
/v1/account/profile
curl --request PATCH \
--url http://localhost:8080/v1/account/profile \
--header 'Content-Type: application/json' \
--data '{ "display_name": "example" }'
Media type application/json
ProfileUpdatePayload
object
display_name
required
Display Name
string
>= 1 characters <= 128 characters
Example generated
{
"display_name": "example"
}

Successful Response

Media type application/json
Response Update Profile V1 Account Profile Patch
object
key
additional properties
any
Example generated
{}

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}