Get user
Retrieves comprehensive details for a specific user account. This endpoint returns complete user information including profile data, security settings, MFA requirements, and associated client relation
Endpoint
GET/v2/user/{uuid}
Link
Request
Authentication
An API key is required for authentication. Include it in the Authorization header.
Header:
AuthorizationValue: Your API key token
HTTP Method & URL
Method:
GETURL:
https://stagep.tst-apidmndelss.com/v2/user/{uuid}
Path Parameters
uuid
string
Unique identifier of the user to retrieve.
Yes
user_abc123def
Headers
Authorization
Bearer <JWT>
Yes
Accept
application/json
Yes
Response (200 OK)
Returns a complete user object with all associated data and metadata.
Response Fields
User Object (item)
id
integer
Internal numeric user ID.
12345
uuid
string
Unique user identifier.
user_abc123def
username
string
User's login name.
john.smith
status
string
Current user status.
ACCEPT
is2fa
boolean
2FA enabled status.
true
isDeleted
boolean
Soft delete status.
false
puid
string
Public user identifier.
pub_789xyz
createAt
string
Account creation timestamp.
2024-01-15T10:30:00Z
updateAt
string
Last update timestamp.
2024-03-20T14:22:00Z
name
string
User's first name.
John
lastname
string
User's last name.
Smith
comment
string
Administrative comments.
VIP customer
Status Values
NEW- Registered userREADY_FOR_MODERATION- Ready for reviewMODERATED- Under moderationVERIFY- Verification in progressACCEPT- Approved userREJECT- Rejected userBANNED- Banned user
Parameters Object (parameters)
mfa
object
Multi-factor authentication settings.
→ requireOtp
boolean
OTP requirement.
true
→ requirePass
boolean
Password requirement.
true
→ requireEmail
boolean
Email verification.
false
→ requireSms
boolean
SMS verification.
true
profile
object
User profile information.
→ phone
string
Phone number.
+1234567890
→ dob
string
Date of birth.
1985-06-15T00:00:00Z
→ country
string
Country.
United States
→ city
string
City.
New York
→ postcode
string
Postal code.
10001
Clients Array (clients[])
customerId
string
Associated customer ID.
cust_789xyz
isOwner
boolean
Ownership status.
true
Example Response:
Examples
Basic User Retrieval (cURL)
Error Responses
User Not Found:
Unauthorized:
Access Denied:
Notes
Data Sensitivity
Returns comprehensive PII (Personally Identifiable Information)
Access should be restricted to authorized personnel only
Some fields may be masked or omitted based on permissions
Field Explanations
isDeleted: Indicates if user is soft-deleted (may still be recoverable)puid: Public-facing user ID for external referencesclients: Array of customer relationships and ownership statusparameters.mfa: Security requirements for user authentication
Best Practices
Use this endpoint for user administration and support purposes
Handle PII data according to privacy regulations (GDPR, CCPA)
Cache responses appropriately to reduce API calls
Validate user permissions before displaying sensitive information
Common Use Cases:
User profile management interfaces
Customer support user lookup
Account verification processes
Security and compliance auditing
User relationship management
Data Protection:
Sensitive fields like email and phone may require additional permissions
Consider masking certain data in user interfaces
Ensure secure transmission and storage of PII
Request sample
Response sample
200 OK
Last updated

