Claims

Initiate Parcel Guard Claims

The endpoint initiates the creation of a Parcel Guard claim.

POST https://sandbox.insurpass.com/api/merchant/create_parcel_guard_policy_claim

Headers

Name
Type
Description

Authorization*

String

Bearer {$secret-key}/{$api-key}

Content-Type*

String

application/json

Request Body

Name
Type
Description

policy_number*

String

The unique number that identifies the purchased insurance policy - IN98570819

details_of_incident*

String

Descriptive text of the full details of the incident

insured_name*

String

The full name of the insured - Seth Rollins

name_of_claimant*

String

The full name of the claimant- Roman Reigns

estimated_cost_of_damage*

String

The estimated cost of the damage parcel - 5000

signature*

String

image url of the signature

{
    "success": true,
    "response_message": "Parcel Guard policy claim initiated successfully",
    "response_code": 200,
    "data": {
        "policy_number": "UIC/RE/INP/PGD/19102022/46103",
        "insured_name": "Seth Rollins",
        "details_of_incident": "It was a dark and stormy night",
        "estimated_cost_of_damange": "22000",
        "name_of_claimant": "Roman Reigns",
        "declaration_date": "2022-10-19T00:00:00.000000Z",
        "status": "pending",
        "signature": "https://example.com/image",
        "updated_at": "2022-10-19T19:31:36.000000Z",
        "created_at": "2022-10-19T19:31:36.000000Z"
    }
}

Parcel Guard Details

This endpoint returns an object containing a single Parcel Guard claim

GET https://sandbox.insurpass.com/api/merchant/parcel_guard_policy_claim_details/:claim_id

Path Parameters

Name
Type
Description

claim_id

String

The unique number that identifies the claim -9

Headers

Name
Type
Description

Authorization*

String

Bearer {$secret-key}/{$api-key}

Content-Type*

String

application/json

List All Parcel Guard Claims

This endpoint returns a list of all the Parcel Guard claim objects.

GET https://sandbox.insurpass.com/api/merchant/get_parcel_guard_policy_claims

Headers

Name
Type
Description

Authorization*

String

Bearer {$secret-key}/{$api-key}

Content-Type*

String

application/json

Last updated

Was this helpful?