Required role: | User |
PATCH | /app/user-info |
---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class AppUserInfo:
# @ApiMember(Description="The user's first name")
first_name: Optional[str] = None
"""
The user's first name
"""
# @ApiMember(Description="The user's last name")
last_name: Optional[str] = None
"""
The user's last name
"""
# @ApiMember(Description="Shortcut to the user's full name")
name: Optional[str] = None
"""
Shortcut to the user's full name
"""
# @ApiMember(Description="The URL to the user's avatar")
avatar_url: Optional[str] = None
"""
The URL to the user's avatar
"""
# @Api(Description="Updates the user's info")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class UpdateUserInfo(IPatch):
"""
Updates the user's info
"""
# @ApiMember(Description="The new first name")
first_name: Optional[str] = None
"""
The new first name
"""
# @ApiMember(Description="The new last name")
last_name: Optional[str] = None
"""
The new last name
"""
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PATCH /app/user-info HTTP/1.1
Host: team.evovoice.io
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"firstName":"String","lastName":"String"}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"firstName":"String","lastName":"String","name":"String","avatarUrl":"String"}