Get Notes for a Transaction

get

/bcws/webresources/v1.0/notes/transaction/{id}

Retrieves the list of notes, along with their associated comments, for the specified transaction.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The notes were returned successfully.
Body ()
Root 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 the notes for a transaction 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/notes/transaction/RG20200000009699'

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,
        "id": "0.0.0.1+-note+123110",
        "accountId": "0.0.0.1+-account+123217",
        "amount": 0,
        "billUnitId": "0.0.0.1+-billinfo+125265",
        "billId": null,
        "closedDate": 0,
        "count": 3,
        "effectiveDate": 1594713029000,
        "eventId": "0.0.0.1+-event-billing-payment-wtransfer+32256",
        "header": "",
        "itemId": "0.0.0.1+-item-payment+119786",
        "subType": 802,
        "type": 800,
        "domainId": 14,
        "reasonId": 0,
        "serviceId": "0.0.0.1+-service-email+180304",
        "status": 102,
        "comments": [
            {
                "csrLoginId": "HeadCSR",
                "csrFirstName": "Alia",
                "csrLastName": "Abadi",
                "csrAccountId": "1234"
                "externalUser": "CSR Portal",
                "comment": "Initial purchase.",
                "trackingId": "",
                "entryDate": 1596192743000
            },
            {
                "csrLoginId": "HeadCSR",
                "csrFirstName": "Alia",
                "csrLastName": "Abadi",
                "csrAccountId": "1234"
                "externalUser": "CSR Portal",
                "comment": "Customer will confirm with bank.",
                "trackingId": "",
                "entryDate": 1602422305000
            }
        ]
    },
    {
        "extension": null,
        "id": "0.0.0.1+-note+257803",
        "accountId": "0.0.0.1+-account+123217",
        "amount": 0,
        "billUnitId": "0.0.0.0++0",
        "billId": null,
        "closedDate": 0,
        "count": 1,
        "effectiveDate": 1611765465000,
        "eventId": "0.0.0.1+-event-billing-payment-wtransfer+32257",
        "header": "",
        "itemId": "0.0.0.1+-item-payment+119786",
        "subType": 801,
        "type": 800,
        "domainId": 0,
        "reasonId": 0,
        "serviceId": "0.0.0.0++0",
        "status": 102,
        "comments": [
            {
                "csrLoginId": "HeadCSR",
                "csrFirstName": "Alia",
                "csrLastName": "Abadi",
                "csrAccountId": "1234",
                "externalUser": "CSR Portal",
                "comment": "Payment did not go through, reversing.",
                "trackingId": "",
                "entryDate": 1611765465000
            }
        ]
    }
]
Back to Top