Review Paginated Users - Backoffice API

See this update published within our Backoffice API Reference: Review Paginated Users.


What's new?

The GET Review Paginated Users endpoint is now available in our Backoffice API Reference. This endpoint retrieves a paginated list of users within a Backoffice tenant, providing important user information including id, userRole, emailAddress, lastLoginDate, submerchantIds, and more. The tenantId is a required path parameter. Use the CurrentPage and PageSize query parameters to navigate between pages of results.


Example

{  
  "data": [  
    {  
      "id": 10,  
      "userRole": "Support User",  
      "name": "Jane Doe",  
      "emailAddress": "[email protected]",  
      "createdDate": "2018-11-06T22:41:21.5151923+00:00",  
      "createdBy": "[email protected]",  
      "modifiedBy": "[email protected]",  
      "modifiedDate": "2024-01-24T21:12:53.558559+00:00",  
      "lastLoginDate": "2025-04-01T18:45:42.655Z",  
      "status": "0",  
      "submerchantIds": 125,  
      "userPermissions": [  
       2  
      ],  
      "doNotInheritChildMerchants": 0  
    }  
  ],  
  "totalRequestedDataCount": 5,  
  "currentPage": 1,  
  "pageSize": 1,  
  "totalPages": 5  
}