Get an Installment Schedule Specification by ID

get

/bcws/webresources/v1.0/installmentManagement/installmentScheduleSpec/{id}

Gets the installment schedule specifications with the specified ID.

Request

Path Parameters
  • The installment specification ID, for example: 0.0.0.1+-config-instalment_schedule_spec+123123

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The installment schedule specification information was retrieved successfully.
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : qualifiers
Type: array
Show Source
Nested Schema : Qualifier
Type: object
Show Source

500 Response

An error occurred. An exception has been raised.
Back to Top

Examples

This example shows how to get an installment schedule specification 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/installmentManagement/installmentScheduleSpec/0.0.0.1+-config-installment-schedule_spec+3763164'

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.

{
    "id": "0.0.0.1+-config-installment-schedule_spec+3763164",
    "name": "Create Installment Schedule Spec",
    "href": "http://hostname:port/bcws/webresources/v1.0/installmentManagement/installmentScheduleSpec/0.0.0.1+-config-installment-schedule_spec+3763164",
    "descr": "",
    "createdAt": "2021-11-20T07:33:36.000Z",
    "startsAt": "2021-11-21T00:00:00.000Z",
    "modifiedAt": "2021-11-20T07:33:36.000Z",
    "expiresAt": "2021-11-24T00:00:00.000Z",
    "glid": 109,
    "minPercent": 0,
    "minAmount": 200,
    "maxIntervalDaysNEI": 10,
    "maxNumNEI": 20,
    "qualifiers": [
        {
            "key": "/account.PIN_FLD_ACCOUNT_NO",
            "value": "123456",
            "dataType": "STR",
            "operator": "EQ"
        },
        {
            "key": "/profile.PIN_FLD_NAME",
            "value": "ABC",
            "dataType": "STR",
            "operator": "EQ"
        }
    ]
}
Back to Top