REST API Reference for Billing Care

Perform a Deferred Action

post

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

Performs the specified deferred action.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types
  • application/xml
  • application/json

201 Response

The deferred action was executed successfully.
Body (
  1. schema
)
Root Schema : schema
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 create a deferred action by submitting a POST request on the REST resource using cURL. For more information about cURL, see "Use cURL".

cURL Command

curl -X POST 'http://hostname:port/bcws/webresources/version/deferredactions/0.0.0.1+-schedule+255194'

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+291704",
      "uri": null
   },
   "actionName": null,
   "serviceId": null,
   "serviceType": null,
   "scheduledDate": 1630393200000,
   "serviceLogin": null,
   "description": null,
   "isCollectionsAction": null,
   "actionStatus": 1
}
Back to Top