Get a Disputed Balance by ID

get

/disputeBalance/{id}

Gets the specified disputed balance.

Request

Path Parameters
Query Parameters
  • The type of object to return.
    Example:
    Use @type=DisputeBalance for a base object or @type=DisputeBalanceOracle for an extended object.
  • The list of comma-separated fields to return in the response.
    Example:
    fields=amount,billItem

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : Dispute Balance Oracle
Type: object
Title: Dispute Balance Oracle
A disputed balance, extended for BRM REST Services Manager.
Show Source
Nested Schema : Quantity
Type: object
An amount in a given unit.
Show Source
Nested Schema : Bill Ref
Type: object
Title: Bill Ref
A reference to a bill.
Show Source
Nested Schema : billEvent
Type: array
Events associated with the dispute.
Show Source
Nested Schema : Billing Cycle Specification Ref Oracle
Type: object
Title: Billing Cycle Specification Ref Oracle
A reference to a billing cycle specification, extended for BRM REST Services Manager.
Show Source
Nested Schema : billItem
Type: array
The bill items associated with the dispute.
Show Source
Nested Schema : Party Account Ref
Type: object
Title: Party Account Ref
A reference to a party account.
Show Source
Nested Schema : BillEvent Dispute Oracle
Type: object
Title: BillEvent Dispute Oracle
A disputed bill event.
Show Source
Nested Schema : Money
Type: object
Title: Money
An amount of money.
Show Source
Nested Schema : BillItem Dispute Oracle
Type: object
Title: BillItem Dispute Oracle
A disputed bill item (AppliedCustomerBillingRate).
Show Source

400 Response

Bad Request
Body ()
Root Schema : Error
Type: object
Title: Error
Used when an API returns an error, typically with a HTTP error response-code such as 401 (Unauthorized) or 500 (Internal Server Error).
Show Source

401 Response

Unauthorized
Body ()
Root Schema : Error
Type: object
Title: Error
Used when an API returns an error, typically with a HTTP error response-code such as 401 (Unauthorized) or 500 (Internal Server Error).
Show Source

403 Response

Forbidden
Body ()
Root Schema : Error
Type: object
Title: Error
Used when an API returns an error, typically with a HTTP error response-code such as 401 (Unauthorized) or 500 (Internal Server Error).
Show Source

404 Response

Not Found
Body ()
Root Schema : Error
Type: object
Title: Error
Used when an API returns an error, typically with a HTTP error response-code such as 401 (Unauthorized) or 500 (Internal Server Error).
Show Source

405 Response

Method Not allowed
Body ()
Root Schema : Error
Type: object
Title: Error
Used when an API returns an error, typically with a HTTP error response-code such as 401 (Unauthorized) or 500 (Internal Server Error).
Show Source

409 Response

Conflict
Body ()
Root Schema : Error
Type: object
Title: Error
Used when an API returns an error, typically with a HTTP error response-code such as 401 (Unauthorized) or 500 (Internal Server Error).
Show Source

500 Response

Internal Server Error
Body ()
Root Schema : Error
Type: object
Title: Error
Used when an API returns an error, typically with a HTTP error response-code such as 401 (Unauthorized) or 500 (Internal Server Error).
Show Source
Back to Top

Examples

The following example shows how to get a disputed balance with a specified ID by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X GET 'http://host:port/brm/prepayBalanceManagement/version/disputeBalance/0.0.0.1+-item-dispute+57743'

Example of the Response Body

The following example shows the contents of the response body in JSON format.

{
   "id": "0.0.0.1+-item-dispute+57743",
   "href": "http://host:port/brm/prepayBalanceManagement/version/disputeBalance/0.0.0.1+-item-dispute+57743",
   "actionType": "ItemDispute",
   "disputeNo": "D1-32",
   "amount": {
      "amount": -2.0,
      "units": "USD",
      "@baseType": null,
      "@schemaLocation": null,
      "@type": null
   },
   "taxAmount": null,
   "reason": "0",
   "description": "",
   "partyAccount": {
      "id": "0.0.0.1+-account+53871",
      "href": null,
      "description": null,
      "name": "Karl V",
      "status": null,
      "@baseType": null,
      "@schemaLocation": null,
      "@type": null,
      "@referredType": null
   },
   "discount": "0",
   "taxTreatment": "TaxExcluded",
   "confirmationDate": "2025-06-25T06:56:29-07:00",
   "requestedDate": "2025-06-25T06:56:29-07:00",
   "billingCycleSpecification": {
      "id": "0.0.0.1+-billinfo+56943",
      "href": "http://host:port/brm/accountManagement/version/billingCycleSpecification/0.0.0.1+-billinfo+56943",
      "name": "Bill Unit(1)"
   },
   "bill": {
      "id": "0.0.0.1+-bill+51039",
      "href": "http://host:port/brm/customerBillManagement/version/customerBill/0.0.0.1+-bill+51039",
      "@baseType": null,
      "@schemaLocation": null,
      "@type": "BillRef",
      "@referredType": "CustomerBill"
   },
   "billItem": [
      {
         "id": "0.0.0.1+-item-cycle_forward+54511",
         "href": "http://host:port/brm/customerBillManagement/version/appliedCustomerBillingRate/0.0.0.1+-item-cycle_forward+54511",
         "name": "Cycle forward",
         "originalCharge": {
            "unit": "USD",
            "value": 10.0
         },
         "disputeAmount": {
            "unit": "USD",
            "value": -2.0
         }
      }
   ],
   "billEvent": null,
   "status": "Settled",
   "settlementId": "0.0.0.1+-item-settlement+60077",
   "@baseType": "DisputeBalanceOracle",
   "@schemaLocation": null,
   "@type": "DisputeBalanceOracle"
}
Back to Top