Get Deferred Actions for an Account

get

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

Gets the deferred actions for the account 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 list of deferred actions was returned successfully.
Body ()
Root Schema : deferredAction
Type: object
Show Source
Nested Schema : ResourceRef
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to get the deferred actions for an account 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/deferredactions/account/0.0.0.1+-account+264746'

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": {
            "id": "0.0.0.1+-schedule+279774",
            "uri": null
        },
        "actionName": "Account De-activation",
        "serviceId": {
            "id": "0.0.0.0++0",
            "uri": null
        },
        "serviceType": "",
        "scheduledDate": 1619029800000,
        "serviceLogin": null,
        "description": "",
        "isCollectionsAction": null,
        "actionStatus": 0
    }
]
Back to Top