Update a Collections Group

put

/bcws/webresources/v1.0/collections/group/{id}

Updates the collections group that matches the specified ID.

You can optionally do this:

  • Replace the existing set of members
  • Change the name of the collections group
  • Change the parent bill unit

Request

Path Parameters
Supported Media Types
Request Body - application/xml ()
Root Schema : schema
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : members
Type: array
The list of members in the collections sharing group.
Show Source
Nested Schema : ResourceRef
Type: object
Show Source
Nested Schema : Notes
Type: object
Show Source
Nested Schema : Members
Type: object
The list of members in the sharing group.
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/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : members
Type: array
The list of members in the collections sharing group.
Show Source
Nested Schema : ResourceRef
Type: object
Show Source
Nested Schema : Notes
Type: object
Show Source
Nested Schema : Members
Type: object
The list of members in the sharing group.
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

200 Response

The collections group was updated successfully.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to update a collections group name 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/version/collections/group/0.0.0.1+-group-collections_targets+168355' -H 'content-type: application/json' -d @updateCollectionsGroup.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.
  • updateCollectionsGroup.json is the JSON file that specifies the details to update.

Example of Request Body

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

{
   "parentBillUnitRef": {
      "id": "0.0.0.1+-billinfo+139726",
      "uri": null
   },	
   "name": "Collections Group 3a"
}

Example of Response Body

If successful, the response code 200 is returned with no response body.

Back to Top