Update user information
PATCH
/v1/users/user/{uuid}Path parameters
- Unique identifier of the user.
Request body
Body shape: Request_UpdateUserInformation (required)
Responses
/** Imported from delio-core. */
interface UserResource {
/** guid from delio-core. */
guid: string
/** status from delio-core. */
status: string
/** username from delio-core. */
username: string
/** contact from delio-core. */
contact?: unknown
/** pivot from delio-core. */
pivot?: unknown
/** data from delio-core. */
data?: UserDataFormResource[]
/** profilePhotoFileKey from delio-core. */
profilePhotoFileKey?: unknown
/** userTypeId from delio-core. */
userTypeId?: unknown
}curl -X PATCH https://your-url.com/kong/core/api/gateway/v1/users/user/{uuid}\
-H "Authorization: Bearer $DELIO_API_KEY"\
-H "Content-Type: application/json"\
-d '{
"uuid": "00000000-0000-0000-0000-000000000000",
"title": "title",
"forename": "forename",
"surname": "surname",
"email": "user@example.com"
}'