Get Installment Schedule Specifications

get

/bcws/webresources/v1.0/installmentManagement/installmentScheduleSpec

Gets the installment schedule specifications that match the specified query criteria.

Request

Query Parameters

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: array
Show Source
Nested Schema : installmentScheduleSpec
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 installment schedule specifications by name and expiry date 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?name=NewInstallmentScheduleSpecification&expiresAt=1627410600000'

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+119351",
      "name":"NewInstallmentScheduleSpecification1",
      "href":"http://hostname:port/bcws/webresources/version/installmentManagement/installmentScheduleSpec/0.0.0.1+-config-installment-schedule_spec+119351",
      "createdAt":1629421265000,
      "startsAt":1627042891000,
      "modifiedAt":1629421265000,
      "expiresAt":1658578891000,
      "glid":4,
      "minPercent":0,
      "minAmount":10,
      "maxIntervalDaysNEI":30,
      "maxNumNEI":5,
      "qualifiers":[
         {
            "key":"/account.PIN_FLD_ACCOUNT_NO",
            "value":"123",
            "dataType":"STR",
            "operator":"EQ"
         }
      ]
   },
   {
      "id":"0.0.0.1+-config-installment-schedule_spec+122559",
      "name":"NewInstallmentScheduleSpecification2",
      "href":"http://hostname:port/bcws/webresources/version/installmentManagement/installmentScheduleSpec/0.0.0.1+-config-installment-schedule_spec+122559",
      "createdAt":1627358295000,
      "startsAt":1627378104000,
      "modifiedAt":1627358304000,
      "expiresAt":1906624711000,
      "glid":4,
      "minPercent":0,
      "minAmount":15,
      "maxIntervalDaysNEI":30,
      "maxNumNEI":5,
      "qualifiers":[
         {
            "key":"/account.PIN_FLD_ACCOUNT_NO",
            "value":"123",
            "dataType":"STR",
            "operator":"EQ"
         }
      ]
   }
]
Back to Top