Get History of a Collections Action

get

/bcws/webresources/v1.0/collections/history/action/{id}

Gets the history for the collections action that matches the specified ID.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The collections action history was returned successfully.
Body ()
Root Schema : collectionsActionHistory
Type: object
Show Source
Nested Schema : actionHistory
Type: array
The list of collections action activities.
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : ActionHistory
Type: object
The list of collections action activities.
Show Source

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to get the history for a collections action by submitting a GET request on the REST resource using cURL. For more information about cURL, see "Use cURL".

cURL Command

curl -X GET 'http://hostname:port/bcws/webresources/version/collections/history/action/0.0.0.1+-collections_action-refer_to_outside_agency+258523'

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.

Example of Response Body

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

{
    "extension": null,
    "actionId": "0.0.0.1+-collections_action-refer_to_outside_agency+258523",
    "actionHistory": [
        {
            "description": "Action updated",
            "dueDate": 1612512000000,
            "changeDate": 1612261730000,
            "agentName": "AgentSmith",
            "status": 1
        },
        {
            "description": "Action scheduled",
            "dueDate": 1612512000000,
            "changeDate": 1612260243000,
            "agentName": "AgentSmith",
            "status": 0
        }
    ]
}
Back to Top