Get user with all data
GET
/v1/users/user/{uuid}Path parameters
- Unique identifier of the user.
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 https://your-url.com/kong/core/api/gateway/v1/users/user/{uuid}\
-H "Authorization: Bearer $DELIO_API_KEY"\
-H "Content-Type: application/json"