Find All Users for a Customer

Roger wants to know all of the users registered to a particular customer account and account sites. To find all users for a customer, he performs a GET action on the Bill Management Users resource.

Example URL

Here's an example of the resource URL:

GET
/fscmRestApi/resources/11.13.18.05/billManagementUsers?finder=BillManagementUsersFinder;CustomerName=Romaguera+LLC

Example Response

Here's an example of the response body in JSON format:

{
  "items": [
    {
      "BillManagementUserRegistrationId": 300100120594990,
      "Name": "Charles Baker",
      "EmailAddress": "cbaker1@dayrep.com",
      "AccountNumber": "1001",
      "CustomerName": "Romaguera LLC",
      "RegistrationStatus": "Registered",
      "CreationDate": "2017-07-26T17:56:26.076+00:00",
      "CreatedBy": "APP_IMPL_CONSULTANT",
      "LastUpdateDate": "2017-07-26T17:56:26.211+00:00",
      "LastUpdatedBy": "APP_IMPL_CONSULTANT"
    },
    {
      "BillManagementUserRegistrationId": 300100120594992,
      "Name": "Philip Taylor",
      "EmailAddress": "pctaylor@dayrep.com",
      "AccountNumber": "1001",
      "CustomerName": "Romaguera LLC",
      "RegistrationStatus": "Registered",
      "CreationDate": "2017-07-26T17:56:26.296+00:00",
      "CreatedBy": "APP_IMPL_CONSULTANT",
      "LastUpdateDate": "2017-07-26T17:56:26.302+00:00",
      "LastUpdatedBy": "APP_IMPL_CONSULTANT"
    }
}