User Management
View a user
FROM MANAGEMENT.JSON
[ggg 2024-02-27] Keeping out of main API because WhoAmI is better and returns same parameters.
Returns user information based on the provided ID.
<div style="display:none;">Request parameters
- id
Response parameters
- userName
- firstName
- lastName
- phone
- enabled
- notifications
- accessRights
- accessRights.merchantIds
- accessRights.role
- accountId
- role
- customAccess
- cognitoSub
- isEnabledForVTerm
- shouldShowPlatformAgreement
- shouldShowPricingAgreement
- dateCreated
- dateLastModified
get/user/v3/{id}
Path parameters
idinteger required
Example:837
The user ID.
Response
Success
Example response
{
"userName": "jdoe@example.com",
"accountType": "MERCHANT",
"enabled": true,
"firstName": "John",
"lastName": "Doe",
"phone": "15555555555",
"address1": "2147 West Silverlake Drive",
"address2": "Ste. 42",
"city": "Scranton",
"state": "PA",
"postalCode": "18503",
"country": "US",
"businessLegalName": "[Business legal name]",
"billingContactFullName": "John Doe",
"billingContactPhone": "15555555555",
"billingContactEmail": "jdoe@example.com",
"accessRights": {
"merchantIds": {
"100039": "A"
},
"role": "A"
},
"payoutAccessRights": {
"3927": "A"
},
"loginInfo": {
"count": 5,
"lastLogin": "2023-05-26T23:12:02.571Z"
},
"dateCreated": "2018-09-27T14:27:39.626Z",
"dateLastModified": "2019-03-08T00:58:27.893Z"
}