Get Settlement Details for a Dispute

get

/bcws/webresources/v1.0/disputes/settlement/{id}

Gets settlement details of a dispute

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The settlement details were returned successfully.
Body ()
Root Schema : settlementDetails
Type: object
Show Source
Nested Schema : ResourceRef
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

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to get settlement details for a dispute 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/disputes/settlement/0.0.0.1+-item-settlement+271994'

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,
    "billId": "0.0.0.1+-bill+347445674378435327",
    "itemId": "0.0.0.1+-item-cycle_forward+349046563308488341",
    "disputedDate": 1700554644000,
    "settledDate": 1700554644000,
    "disputeId": "D1-40",
    "disputeRef": {
        "id": "0.0.0.1+-item-dispute+346249405727699710",
        "uri": null
    },
    "settlementId": "S1-33",
    "itemName": "Cycle forward",
    "itemNumber": "B1-2428,2",
    "eventsCount": null,
    "disputedAmount": -1.12,
    "settlementAmount": -1.12,
    "settlementRef": {
        "id": "0.0.0.1+-item-settlement+271994",
        "uri": null
    },
    "billNumber": "B1-2428",
    "due": 8.83,
    "billingStart": 1706774400000,
    "billingEnd": 1709280000000,
    "settledTaxAmount": 0,
    "settledTaxedAmount": -1.12,
    "settledNonTaxedAmount": 0,
    "notes": {
        "extension": null,
        "id": "0.0.0.1+-note+1505790",
        "accountId": "0.0.0.1+-account+1217781",
        "amount": 1.12,
        "billUnitId": "0.0.0.1+-billinfo+1219317",
        "billId": null,
        "closedDate": 1700554645000,
        "count": 1,
        "effectiveDate": 1700554645000,
        "eventId": "0.0.0.0++0",
        "header": "",
        "itemId": "0.0.0.1+-item-settlement+271994",
        "subType": 209,
        "type": 200,
        "domainId": 25,
        "reasonId": 1,
        "serviceId": "0.0.0.0++0",
        "status": 101,
        "comments": [
            {
                "csrLoginId": null,
                "csrFirstName": null,
                "csrLastName": null,
                "csrAccountId": null,
                "externalUser": "weblogic",
                "comment": "",
                "trackingId": "",
                "entryDate": 1700554645000
            }
        ]
    }
}
Back to Top