Register a User in Bill Management

Roger now wants to register the new user in Bill Management. To create a new user in Bill Management, he performs a POST action on the Bill Management Users resource, providing the user details in the request body.

Note:

For mass provisioning, the best practice is to provide up to 50 users in the payload and use parallel processing for up to 20 threads.

Example URL

Here's an example of the resource URL:

POST
/fscmRestApi/resources/11.13.18.05/billManagementUsers

Example Request

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

{
	   "EmailAddress":"XavierDMachen@dayrep.com",
      "AccountNumber":"4328730_7_A005"
}

Example Response

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

{
  "BillManagementUserRegistrationId": 300100182401624,
  "Name": "Xavier Machen",
  "EmailAddress": "XavierDMachen@dayrep.com",
  "AccountNumber": "4328730_7_A005",
  "CustomerName": "Romaguera LLC",
  "RegistrationStatus": "Registered",
  "CreationDate": "2019-08-02T11:14:12.481+00:00",
  "CreatedBy": "APP_IMPL_CONSULTANT",
  "LastUpdateDate": "2019-08-02T11:14:17.655+00:00",
  "LastUpdatedBy": "APP_IMPL_CONSULTANT",
}