--- title: "Get web user names" description: "Get a list of web user names." url: "https://docs.adyen.com/account-management-api/manage-user-accounts/getwebusernames" source_url: "https://docs.adyen.com/account-management-api/manage-user-accounts/getwebusernames.md" canonical: "https://docs.adyen.com/account-management-api/manage-user-accounts/getwebusernames" last_modified: "2026-05-24T12:54:32+02:00" language: "en" --- # Get web user names Get a list of web user names. [View source](/account-management-api/manage-user-accounts/getwebusernames.md) To get a list of web user names, make a POST `/getWebUserNames` request with an empty request body. ## Response parameters If there are no errors in the request, the call returns a list of web user names for the currently logged in merchant account, and a `pspReference`. If any issues occur during the process, the call returns one or more warning or error messages. | Name | Type | Returned by default | Description | | -------------- | ------ | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `userNames` | List | ![-white\_check\_mark-](/user/data/smileys/emoji/white_check_mark.png "-white_check_mark-") | A list holding user account name strings.A user name string holds the user account display name. It can include:- Digits: *0-9* - Letters *a-z*, *A-Z* - Special characters: "*.*" (dot), "*-*" (hyphen), "*\_*" (underscore)* * | | `pspReference` | String | ![-white\_check\_mark-](/user/data/smileys/emoji/white_check_mark.png "-white_check_mark-") | A reference to uniquely identify the request. | | `warnings` | String | ![-x-](/user/data/smileys/emoji/x.png "-x-") | List containing one or more warning messages. Returned when the request is not correctly processed. | | `errors` | String | ![-x-](/user/data/smileys/emoji/x.png "-x-") | List containing one or more error messages. Returned when the request fails. | ## Examples ### Request Send an empty JSON or SOAP request. #### JSON ```json {} ``` #### Soap ```xml ``` ### Response #### JSON ```json { "pspReference":"9914526953120350", "userNames":[ "admin", "merchant1", "merchant_view", ] } ``` #### Soap ```xml 9914526953120350 admin merchant1 merchant_view ```