Get list of child suspenses for a specific suspense by suspense Id

get

/PASService/rest/services/v1/suspenses/{suspenseId}/childSuspenses

Get child suspenses for a suspense based on the specified suspense Id

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

successful operation
Back to Top

Examples

This example describes how to get a list of child suspenses associated with a suspense based on the specified suspense Id.

Example cURL Command

Use the following cURL command to submit a request on the REST resource:

curl \
    -X GET \
    -H "Content-Type: application/json" \
    -u 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
    -L "http://server:port/PASService/rest/services/v1/suspense/C28C7883-DDC2-4BBF-A821-AFECC43413DC"

Note:

The Response body of this request is dynamic and depends on the configuration.

Example Response Body

The following shows an example of the response body in JSON format:

{
    "count": 1,
    "offset": 0,
    "limit": 100,
    "suspenses": [
        {
            "links": [
                {
                    "href": "http://fsgbu-mum-748.snbomprshared1.gbucdsint02bom.oraclevcn.com:5050/PASService/rest/services/v1/suspenses/C28C7883-DDC2-4BBF-A821-AFECC43413DC",
                    "rel": "self",
                    "mediaType": "application/json",
                    "method": "GET"
                }
            ],
            "multiFields": {},
            "suspenseNumber": 41950,
            "policyNumber": null,
            "effectiveDate": "2020-06-30T00:00:00Z",
            "effectiveFromDate": "2020-06-30T00:00:00Z",
            "effectiveToDate": "2020-06-30T00:00:00Z",
            "statusCode": "15",
            "typeCode": "02",
            "amount": 40.0,
            "attachedAmount": 0.0,
            "clientNumber": "qatester3",
            "firstName": null,
            "lastName": null,
            "accountNumber": null,
            "bankNumber": null,
            "checkNumber": null,
            "bankName": null,
            "batchNumber": null,
            "currencyCode": "USD",
            "updatedGmt": "2025-02-14T08:27:02Z",
            "childSuspenses": [],
            "suspenseId": "C28C7883-DDC2-4BBF-A821-AFECC43413DC",
            "companyId": "7204C2FE-13B1-4A48-8CDA-DE8386C60EF9",
            "masterSuspenseId": "ED4FEA94-3044-4C95-9B84-24E6D884E882"
        }
    ]
}
Back to Top