Update an Account's Status

put

/bcws/webresources/v1.0/statusupdate/account/{id}

Updates the status of the account that matches the specified ID.

Request

Path Parameters
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Notes
Type: object
Show Source
Nested Schema : comments
Type: array
The list of comments associated with the note.
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Comments
Type: object
The list of comments associated with the note.
Show Source
Request Body - application/xml ()
Root Schema : schema
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Notes
Type: object
Show Source
Nested Schema : comments
Type: array
The list of comments associated with the note.
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Comments
Type: object
The list of comments associated with the note.
Show Source
Back to Top

Response

Supported Media Types

200 Response

The status of the account was updated successfully.
Body ()
Root Schema : resource
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : ResourceRef
Type: object
Show Source

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to update an account's status by submitting a PUT request on the REST resource using cURL. For more information about cURL, see "Use cURL".

cURL Command

curl -X PUT http://hostname:port/bcws/webresources/v1.0/statusupdate/account/0.0.0.1+-account+276301 -H 'content-type: application/json' -d @updateStatus.json

where:

  • hostname is the URL for the Billing Care REST server.
  • port is the port for the Billing Care REST server.
  • version is the version of the API you're using, such as v1.0.
  • updateStatus.json is the JSON file that specifies the update to make.

Example of Request Body

This example shows the contents of the updateStatus.json file sent as the request body.

{
   "effectiveWhen": "1",
   "statusCode":"10102",
   "notes": {
      "billUnitId": "0.0.0.1+-billinfo+62901",
      "accountId": "0.0.0.1+-account+276301",
      "domainId": 3,
      "reasonId": 3,
      "comments": [
         {
            "comment": "Updating account status."
         }
      ]
   }
   "effective": "2021-02-08T21:28:20.993Z"
}

Example of Response Body

This example shows the contents of the response body in JSON format.

{
   "extension": null,
   "reference": {
      "id": "0.0.0.1+-event-customer-status+328358152519303341",
      "uri": "http://hostname:port/bc/webresources/v1.0/statusupdate/0.0.0.1+-event-customer-status+328358152519303341"
   }
}
Back to Top