Review Create Card

This endpoint allows you to review the details of a card creation request. The review ensures that all required details have been updated and that the customer is eligible for card creation.

  • Endpoint URL: /api/v1/customer/cards/reviewcreatecard?customersId={customerId}

  • Method: GET

  • Parameters

    • customersId: required - Unique identifier for the customer. Replace with the actual customer ID.

  • Header Parameter

    • otp: required

Example Request

GET /api/v1/customer/cards/reviewcreatecard?customersId=12345

Example Response

{
    "id": 0,
    "details": {
        "personalReviewDetails": {
            "sourceOfFunds": "Salary",
            "estimatedGrossAnnualIncome": 10000.00,
            "estimatedNetWorth": 200000.00,
            "activelyEmployed": true,
            "employedCompanyName": "ABC Technologies",
            "employedJobTitle": "Software Engineer"
        },
        "requiredDocuments": [],
        "PersonalSourceFundTypes":[
                "Salary",
                "Savings",
                "Self Employed",
                "Loans/Borrowed Funds"
            ]
    },
    "status": "1",
    "errors": []
}

Last updated