{
  "info": {
    "name": "CoreWave API Reference Collection",
    "_postman_id": "corewave-api-reference-static",
    "description": "CoreWave API reference exported for Postman with sample payloads and responses.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "testBaseUrl",
      "value": "api.staging.ibanks.corewave360.com"
    },
    {
      "key": "liveBaseUrl",
      "value": "api.ibanks.corewave360.com"
    },
    {
      "key": "baseUrl",
      "value": "{{testBaseUrl}}"
    },
    {
      "key": "bearerToken",
      "value": ""
    },
    {
      "key": "requestReference",
      "value": "playground-001"
    }
  ],
  "item": [
    {
      "name": "Auth",
      "description": "Auth endpoints",
      "item": [
        {
          "name": "POST /api/auth/v1/authenticate",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"clientId\": \"YOUR_CLIENT_ID\",\n  \"clientSecret\": \"YOUR_CLIENT_SECRET\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/auth/v1/authenticate",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "auth",
                "v1",
                "authenticate"
              ]
            },
            "description": "Auth endpoint\n\nSample Payload:\n{\n  \"clientId\": \"YOUR_CLIENT_ID\",\n  \"clientSecret\": \"YOUR_CLIENT_SECRET\"\n}\n\nSample Response:\n{\n  \"accessToken\": \"eyJhbGciOi...\",\n  \"tokenType\": \"Bearer\",\n  \"expirationTime\": 1700000000,\n  \"tokenValiditySec\": 3600\n}"
          },
          "response": [
            {
              "name": "200 Token generated successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"clientId\": \"YOUR_CLIENT_ID\",\n  \"clientSecret\": \"YOUR_CLIENT_SECRET\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/auth/v1/authenticate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "auth",
                    "v1",
                    "authenticate"
                  ]
                }
              },
              "status": "Token generated successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"accessToken\": \"eyJhbGciOi...\",\n  \"tokenType\": \"Bearer\",\n  \"expirationTime\": 1700000000,\n  \"tokenValiditySec\": 3600\n}"
            },
            {
              "name": "400 Invalid credentials or payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"clientId\": \"YOUR_CLIENT_ID\",\n  \"clientSecret\": \"YOUR_CLIENT_SECRET\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/auth/v1/authenticate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "auth",
                    "v1",
                    "authenticate"
                  ]
                }
              },
              "status": "Invalid credentials or payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"accessToken\": \"eyJhbGciOi...\",\n  \"tokenType\": \"Bearer\",\n  \"expirationTime\": 1700000000,\n  \"tokenValiditySec\": 3600\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Account",
      "description": "Account endpoints",
      "item": [
        {
          "name": "POST /api/account/v1/createcustomeraccount",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"lastName\": \"Doe\",\n  \"firstName\": \"Jane\",\n  \"accountName\": \"Jane Doe\",\n  \"branchCode\": \"101\",\n  \"productCode\": \"301\",\n  \"accountOfficerStaffID\": \"ST1311\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/createcustomeraccount",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "createcustomeraccount"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"lastName\": \"Doe\",\n  \"firstName\": \"Jane\",\n  \"accountName\": \"Jane Doe\",\n  \"branchCode\": \"101\",\n  \"productCode\": \"301\",\n  \"accountOfficerStaffID\": \"ST1311\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"lastName\": \"Doe\",\n  \"firstName\": \"Jane\",\n  \"accountName\": \"Jane Doe\",\n  \"branchCode\": \"101\",\n  \"productCode\": \"301\",\n  \"accountOfficerStaffID\": \"ST1311\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createcustomeraccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createcustomeraccount"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"lastName\": \"Doe\",\n  \"firstName\": \"Jane\",\n  \"accountName\": \"Jane Doe\",\n  \"branchCode\": \"101\",\n  \"productCode\": \"301\",\n  \"accountOfficerStaffID\": \"ST1311\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createcustomeraccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createcustomeraccount"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"lastName\": \"Doe\",\n  \"firstName\": \"Jane\",\n  \"accountName\": \"Jane Doe\",\n  \"branchCode\": \"101\",\n  \"productCode\": \"301\",\n  \"accountOfficerStaffID\": \"ST1311\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createcustomeraccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createcustomeraccount"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"lastName\": \"Doe\",\n  \"firstName\": \"Jane\",\n  \"accountName\": \"Jane Doe\",\n  \"branchCode\": \"101\",\n  \"productCode\": \"301\",\n  \"accountOfficerStaffID\": \"ST1311\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createcustomeraccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createcustomeraccount"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/account/v1/createaccount",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"customerID\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"accountNumber\": \"1000000001\",\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"accountTierLevel\": 1,\n  \"accessLevel\": 1,\n  \"minimumBalanceRequired\": 1,\n  \"accountType\": 1,\n  \"accountStatus\": 1,\n  \"enableEmailNotification\": true,\n  \"enableSMSNotification\": true,\n  \"referee1CustomerID\": \"ID-001\",\n  \"referee2CustomerID\": \"ID-001\",\n  \"categoryOfAccount\": 1,\n  \"sectorCode\": \"sample-value\",\n  \"statementDeliveryMode\": 1,\n  \"statementDeliveryFrequency\": 1,\n  \"groupConnectionID\": \"ID-001\",\n  \"isMinor\": true,\n  \"documents\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/createaccount",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "createaccount"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"customerID\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"accountNumber\": \"1000000001\",\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"accountTierLevel\": 1,\n  \"accessLevel\": 1,\n  \"minimumBalanceRequired\": 1,\n  \"accountType\": 1,\n  \"accountStatus\": 1,\n  \"enableEmailNotification\": true,\n  \"enableSMSNotification\": true,\n  \"referee1CustomerID\": \"ID-001\",\n  \"referee2CustomerID\": \"ID-001\",\n  \"categoryOfAccount\": 1,\n  \"sectorCode\": \"sample-value\",\n  \"statementDeliveryMode\": 1,\n  \"statementDeliveryFrequency\": 1,\n  \"groupConnectionID\": \"ID-001\",\n  \"isMinor\": true,\n  \"documents\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"accountNumber\": \"1000000001\",\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"accountTierLevel\": 1,\n  \"accessLevel\": 1,\n  \"minimumBalanceRequired\": 1,\n  \"accountType\": 1,\n  \"accountStatus\": 1,\n  \"enableEmailNotification\": true,\n  \"enableSMSNotification\": true,\n  \"referee1CustomerID\": \"ID-001\",\n  \"referee2CustomerID\": \"ID-001\",\n  \"categoryOfAccount\": 1,\n  \"sectorCode\": \"sample-value\",\n  \"statementDeliveryMode\": 1,\n  \"statementDeliveryFrequency\": 1,\n  \"groupConnectionID\": \"ID-001\",\n  \"isMinor\": true,\n  \"documents\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createaccount"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"accountNumber\": \"1000000001\",\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"accountTierLevel\": 1,\n  \"accessLevel\": 1,\n  \"minimumBalanceRequired\": 1,\n  \"accountType\": 1,\n  \"accountStatus\": 1,\n  \"enableEmailNotification\": true,\n  \"enableSMSNotification\": true,\n  \"referee1CustomerID\": \"ID-001\",\n  \"referee2CustomerID\": \"ID-001\",\n  \"categoryOfAccount\": 1,\n  \"sectorCode\": \"sample-value\",\n  \"statementDeliveryMode\": 1,\n  \"statementDeliveryFrequency\": 1,\n  \"groupConnectionID\": \"ID-001\",\n  \"isMinor\": true,\n  \"documents\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createaccount"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"accountNumber\": \"1000000001\",\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"accountTierLevel\": 1,\n  \"accessLevel\": 1,\n  \"minimumBalanceRequired\": 1,\n  \"accountType\": 1,\n  \"accountStatus\": 1,\n  \"enableEmailNotification\": true,\n  \"enableSMSNotification\": true,\n  \"referee1CustomerID\": \"ID-001\",\n  \"referee2CustomerID\": \"ID-001\",\n  \"categoryOfAccount\": 1,\n  \"sectorCode\": \"sample-value\",\n  \"statementDeliveryMode\": 1,\n  \"statementDeliveryFrequency\": 1,\n  \"groupConnectionID\": \"ID-001\",\n  \"isMinor\": true,\n  \"documents\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createaccount"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"accountNumber\": \"1000000001\",\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"accountTierLevel\": 1,\n  \"accessLevel\": 1,\n  \"minimumBalanceRequired\": 1,\n  \"accountType\": 1,\n  \"accountStatus\": 1,\n  \"enableEmailNotification\": true,\n  \"enableSMSNotification\": true,\n  \"referee1CustomerID\": \"ID-001\",\n  \"referee2CustomerID\": \"ID-001\",\n  \"categoryOfAccount\": 1,\n  \"sectorCode\": \"sample-value\",\n  \"statementDeliveryMode\": 1,\n  \"statementDeliveryFrequency\": 1,\n  \"groupConnectionID\": \"ID-001\",\n  \"isMinor\": true,\n  \"documents\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createaccount"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/account/v1/creategroupcustomerinformation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"documents\": \"sample-value\",\n  \"notes\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/creategroupcustomerinformation",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "creategroupcustomerinformation"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"documents\": \"sample-value\",\n  \"notes\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"documents\": \"sample-value\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/creategroupcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "creategroupcustomerinformation"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"documents\": \"sample-value\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/creategroupcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "creategroupcustomerinformation"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"documents\": \"sample-value\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/creategroupcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "creategroupcustomerinformation"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"documents\": \"sample-value\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/creategroupcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "creategroupcustomerinformation"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/account/v1/updatecustomeraccount",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"accountTierLevel\": 1,\n  \"categoryOfAccount\": \"sample-value\",\n  \"sectorCode\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/updatecustomeraccount",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "updatecustomeraccount"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"accountTierLevel\": 1,\n  \"categoryOfAccount\": \"sample-value\",\n  \"sectorCode\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"accountTierLevel\": 1,\n  \"categoryOfAccount\": \"sample-value\",\n  \"sectorCode\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updatecustomeraccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updatecustomeraccount"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"accountTierLevel\": 1,\n  \"categoryOfAccount\": \"sample-value\",\n  \"sectorCode\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updatecustomeraccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updatecustomeraccount"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"accountTierLevel\": 1,\n  \"categoryOfAccount\": \"sample-value\",\n  \"sectorCode\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updatecustomeraccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updatecustomeraccount"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"accountTierLevel\": 1,\n  \"categoryOfAccount\": \"sample-value\",\n  \"sectorCode\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updatecustomeraccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updatecustomeraccount"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/account/v1/updatecustomerinformation",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"title\": \"sample-value\",\n  \"lastName\": \"sample-value\",\n  \"firstName\": \"sample-value\",\n  \"otherNames\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"gender\": 1,\n  \"address\": \"sample-value\",\n  \"maidenName\": \"ID-001\",\n  \"religion\": 1,\n  \"phoneNumber\": \"08000000000\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"hometown\": \"sample-value\",\n  \"dateOfBirth\": \"2026-01-01\",\n  \"meansOfIdentification\": 1,\n  \"meansOfIdentificationNumber\": \"ID-001\",\n  \"nokName\": \"sample-value\",\n  \"nokAddress\": \"sample-value\",\n  \"nokRelationship\": \"sample-value\",\n  \"nokPhoneNumber\": \"08000000000\",\n  \"nokEmail\": \"customer@example.com\",\n  \"occupation\": \"sample-value\",\n  \"employerName\": \"sample-value\",\n  \"employerAddress\": \"sample-value\",\n  \"pep\": true,\n  \"tin\": \"sample-value\",\n  \"bvn\": \"sample-value\",\n  \"nin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"description\": \"sample-value\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"notes\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/updatecustomerinformation",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "updatecustomerinformation"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"title\": \"sample-value\",\n  \"lastName\": \"sample-value\",\n  \"firstName\": \"sample-value\",\n  \"otherNames\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"gender\": 1,\n  \"address\": \"sample-value\",\n  \"maidenName\": \"ID-001\",\n  \"religion\": 1,\n  \"phoneNumber\": \"08000000000\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"hometown\": \"sample-value\",\n  \"dateOfBirth\": \"2026-01-01\",\n  \"meansOfIdentification\": 1,\n  \"meansOfIdentificationNumber\": \"ID-001\",\n  \"nokName\": \"sample-value\",\n  \"nokAddress\": \"sample-value\",\n  \"nokRelationship\": \"sample-value\",\n  \"nokPhoneNumber\": \"08000000000\",\n  \"nokEmail\": \"customer@example.com\",\n  \"occupation\": \"sample-value\",\n  \"employerName\": \"sample-value\",\n  \"employerAddress\": \"sample-value\",\n  \"pep\": true,\n  \"tin\": \"sample-value\",\n  \"bvn\": \"sample-value\",\n  \"nin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"description\": \"sample-value\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"notes\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"title\": \"sample-value\",\n  \"lastName\": \"sample-value\",\n  \"firstName\": \"sample-value\",\n  \"otherNames\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"gender\": 1,\n  \"address\": \"sample-value\",\n  \"maidenName\": \"ID-001\",\n  \"religion\": 1,\n  \"phoneNumber\": \"08000000000\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"hometown\": \"sample-value\",\n  \"dateOfBirth\": \"2026-01-01\",\n  \"meansOfIdentification\": 1,\n  \"meansOfIdentificationNumber\": \"ID-001\",\n  \"nokName\": \"sample-value\",\n  \"nokAddress\": \"sample-value\",\n  \"nokRelationship\": \"sample-value\",\n  \"nokPhoneNumber\": \"08000000000\",\n  \"nokEmail\": \"customer@example.com\",\n  \"occupation\": \"sample-value\",\n  \"employerName\": \"sample-value\",\n  \"employerAddress\": \"sample-value\",\n  \"pep\": true,\n  \"tin\": \"sample-value\",\n  \"bvn\": \"sample-value\",\n  \"nin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"description\": \"sample-value\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updatecustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updatecustomerinformation"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"title\": \"sample-value\",\n  \"lastName\": \"sample-value\",\n  \"firstName\": \"sample-value\",\n  \"otherNames\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"gender\": 1,\n  \"address\": \"sample-value\",\n  \"maidenName\": \"ID-001\",\n  \"religion\": 1,\n  \"phoneNumber\": \"08000000000\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"hometown\": \"sample-value\",\n  \"dateOfBirth\": \"2026-01-01\",\n  \"meansOfIdentification\": 1,\n  \"meansOfIdentificationNumber\": \"ID-001\",\n  \"nokName\": \"sample-value\",\n  \"nokAddress\": \"sample-value\",\n  \"nokRelationship\": \"sample-value\",\n  \"nokPhoneNumber\": \"08000000000\",\n  \"nokEmail\": \"customer@example.com\",\n  \"occupation\": \"sample-value\",\n  \"employerName\": \"sample-value\",\n  \"employerAddress\": \"sample-value\",\n  \"pep\": true,\n  \"tin\": \"sample-value\",\n  \"bvn\": \"sample-value\",\n  \"nin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"description\": \"sample-value\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updatecustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updatecustomerinformation"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"title\": \"sample-value\",\n  \"lastName\": \"sample-value\",\n  \"firstName\": \"sample-value\",\n  \"otherNames\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"gender\": 1,\n  \"address\": \"sample-value\",\n  \"maidenName\": \"ID-001\",\n  \"religion\": 1,\n  \"phoneNumber\": \"08000000000\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"hometown\": \"sample-value\",\n  \"dateOfBirth\": \"2026-01-01\",\n  \"meansOfIdentification\": 1,\n  \"meansOfIdentificationNumber\": \"ID-001\",\n  \"nokName\": \"sample-value\",\n  \"nokAddress\": \"sample-value\",\n  \"nokRelationship\": \"sample-value\",\n  \"nokPhoneNumber\": \"08000000000\",\n  \"nokEmail\": \"customer@example.com\",\n  \"occupation\": \"sample-value\",\n  \"employerName\": \"sample-value\",\n  \"employerAddress\": \"sample-value\",\n  \"pep\": true,\n  \"tin\": \"sample-value\",\n  \"bvn\": \"sample-value\",\n  \"nin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"description\": \"sample-value\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updatecustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updatecustomerinformation"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"title\": \"sample-value\",\n  \"lastName\": \"sample-value\",\n  \"firstName\": \"sample-value\",\n  \"otherNames\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"gender\": 1,\n  \"address\": \"sample-value\",\n  \"maidenName\": \"ID-001\",\n  \"religion\": 1,\n  \"phoneNumber\": \"08000000000\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"hometown\": \"sample-value\",\n  \"dateOfBirth\": \"2026-01-01\",\n  \"meansOfIdentification\": 1,\n  \"meansOfIdentificationNumber\": \"ID-001\",\n  \"nokName\": \"sample-value\",\n  \"nokAddress\": \"sample-value\",\n  \"nokRelationship\": \"sample-value\",\n  \"nokPhoneNumber\": \"08000000000\",\n  \"nokEmail\": \"customer@example.com\",\n  \"occupation\": \"sample-value\",\n  \"employerName\": \"sample-value\",\n  \"employerAddress\": \"sample-value\",\n  \"pep\": true,\n  \"tin\": \"sample-value\",\n  \"bvn\": \"sample-value\",\n  \"nin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"description\": \"sample-value\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updatecustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updatecustomerinformation"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/account/v1/updategroupcustomerinformation",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/updategroupcustomerinformation",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "updategroupcustomerinformation"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updategroupcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updategroupcustomerinformation"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updategroupcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updategroupcustomerinformation"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updategroupcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updategroupcustomerinformation"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"type\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"description\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"notificationPhoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"contactPersonEmail\": \"customer@example.com\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerStaffID\": \"ID-001\",\n  \"countryID\": 1,\n  \"stateID\": 1,\n  \"lgaID\": 1,\n  \"houseNumber\": \"sample-value\",\n  \"address\": \"sample-value\",\n  \"tin\": \"sample-value\",\n  \"oldCustomerID\": \"ID-001\",\n  \"alias\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/updategroupcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "updategroupcustomerinformation"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/account/v1/activate",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/activate",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "activate"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/activate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "activate"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/activate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "activate"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/activate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "activate"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/activate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "activate"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/account/v1/deactivate",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/deactivate",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "deactivate"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/deactivate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "deactivate"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/deactivate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "deactivate"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/deactivate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "deactivate"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/deactivate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "deactivate"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/account/v1/unfreeze",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/unfreeze",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "unfreeze"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/unfreeze",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "unfreeze"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/unfreeze",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "unfreeze"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/unfreeze",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "unfreeze"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/unfreeze",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "unfreeze"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "GET /api/account/v1/searchaccount",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/searchaccount",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "searchaccount"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"phoneNumber\": \"08000000000\",\n  \"customerID\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"accountType\": \"sample-value\",\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"accountOfficerID\": \"ID-001\",\n  \"accountStatus\": 1,\n  \"accountTierLevel\": 1,\n  \"enableEmailNotification\": true,\n  \"enableSMSNotification\": true,\n  \"statementDeliveryMode\": \"sample-value\",\n  \"statementDeliveryFrequency\": \"sample-value\",\n  \"refereeCustomerID\": \"ID-001\",\n  \"minimumBalanceRequired\": 1,\n  \"accountCreationChannel\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"bVN\": \"sample-value\",\n  \"nIN\": \"sample-value\",\n  \"applicableFee\": 1,\n  \"applicableInterest\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\",\n  \"categoryOfAccount\": \"sample-value\",\n  \"sectorCode\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchaccount"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchaccount"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchaccount"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/account/v1/getaccountbalancebyaccountnumber",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/getaccountbalancebyaccountnumber",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "getaccountbalancebyaccountnumber"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/getaccountbalancebyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "getaccountbalancebyaccountnumber"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/getaccountbalancebyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "getaccountbalancebyaccountnumber"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/getaccountbalancebyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "getaccountbalancebyaccountnumber"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/account/v1/getbyaccountnumber",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/getbyaccountnumber",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "getbyaccountnumber"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/getbyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "getbyaccountnumber"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/getbyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "getbyaccountnumber"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/getbyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "getbyaccountnumber"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/account/v1/getextendedbalancebyaccountnumber",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/getextendedbalancebyaccountnumber",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "getextendedbalancebyaccountnumber"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/getextendedbalancebyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "getextendedbalancebyaccountnumber"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/getextendedbalancebyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "getextendedbalancebyaccountnumber"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/getextendedbalancebyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "getextendedbalancebyaccountnumber"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/account/v1/searchaccountofficers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/searchaccountofficers",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "searchaccountofficers"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"customerID\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"accountOfficerID\": \"ID-001\",\n  \"accountStatus\": 1,\n  \"accountTierLevel\": 1,\n  \"accessLevel\": 1,\n  \"enableEmailNotification\": true,\n  \"enableSMSNotification\": true,\n  \"statementDeliveryMode\": \"sample-value\",\n  \"statementDeliveryFrequency\": \"sample-value\",\n  \"refereeCustomerID\": \"ID-001\",\n  \"minimumBalanceRequired\": 1,\n  \"accountCreationChannel\": \"sample-value\",\n  \"applicableFee\": 1,\n  \"applicableInterest\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchaccountofficers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchaccountofficers"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchaccountofficers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchaccountofficers"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchaccountofficers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchaccountofficers"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/account/v1/searchgroupcustomers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/searchgroupcustomers",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "searchgroupcustomers"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"iD\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"oldCustomerID\": \"ID-001\",\n  \"name\": \"sample-value\",\n  \"customerType\": \"sample-value\",\n  \"email\": \"customer@example.com\",\n  \"description\": \"sample-value\",\n  \"officialAddress\": \"sample-value\",\n  \"lGA\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"countryOfOperation\": \"sample-value\",\n  \"stateOfOperation\": \"sample-value\",\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchgroupcustomers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchgroupcustomers"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchgroupcustomers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchgroupcustomers"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchgroupcustomers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchgroupcustomers"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/account/v1/searchindividualcustomers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/searchindividualcustomers",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "searchindividualcustomers"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"iD\": \"ID-001\",\n  \"customerID\": \"ID-001\",\n  \"oldCustomerID\": \"ID-001\",\n  \"title\": \"sample-value\",\n  \"customerType\": \"sample-value\",\n  \"name\": \"sample-value\",\n  \"firstName\": \"sample-value\",\n  \"lastName\": \"sample-value\",\n  \"otherNames\": \"sample-value\",\n  \"houseAddress\": \"sample-value\",\n  \"maritalStatus\": 1,\n  \"maidenName\": \"ID-001\",\n  \"religion\": \"sample-value\",\n  \"phoneNumber\": \"08000000000\",\n  \"email\": \"customer@example.com\",\n  \"hometown\": \"sample-value\",\n  \"dateOfBirth\": \"2026-01-01\",\n  \"nationality\": \"sample-value\",\n  \"state\": \"sample-value\",\n  \"lGA\": \"sample-value\",\n  \"meansOfIdentification\": \"ID-001\",\n  \"iDNumber\": \"ID-001\",\n  \"nOKName\": \"sample-value\",\n  \"nOKAddress\": \"sample-value\",\n  \"nOKGender\": \"sample-value\",\n  \"nOKRelationship\": \"sample-value\",\n  \"nOKPhoneNumber\": \"08000000000\",\n  \"nOKEmail\": \"customer@example.com\",\n  \"occupation\": \"sample-value\",\n  \"employerName\": \"sample-value\",\n  \"employerAddress\": \"sample-value\",\n  \"officePhoneNumber\": \"08000000000\",\n  \"description\": \"sample-value\",\n  \"officialAddress\": \"sample-value\",\n  \"businessPhoneNumber\": \"08000000000\",\n  \"natureOfBusiness\": \"sample-value\",\n  \"industrialSector\": \"sample-value\",\n  \"registrationDate\": \"2026-01-01\",\n  \"incorporationDate\": \"2026-01-01\",\n  \"registrationNumber\": \"sample-value\",\n  \"contactPersonName\": \"sample-value\",\n  \"contactPersonPhoneNumber\": \"08000000000\",\n  \"countryOfOperation\": \"sample-value\",\n  \"stateOfOperation\": \"sample-value\",\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\",\n  \"bVN\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchindividualcustomers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchindividualcustomers"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchindividualcustomers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchindividualcustomers"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchindividualcustomers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchindividualcustomers"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/account/v1/listbranches",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/listbranches",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "listbranches"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"branchCode\": \"sample-value\",\n  \"branchName\": \"sample-value\",\n  \"status\": 1,\n  \"isHeadOffice\": true,\n  \"isOpened\": true,\n  \"emailAddress\": \"customer@example.com\",\n  \"address\": \"sample-value\",\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/listbranches",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "listbranches"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/listbranches",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "listbranches"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/listbranches",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "listbranches"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/account/v1/searchbranches",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/searchbranches",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "searchbranches"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"branchCode\": \"sample-value\",\n  \"branchName\": \"sample-value\",\n  \"status\": 1,\n  \"isHeadOffice\": true,\n  \"isOpened\": true,\n  \"emailAddress\": \"customer@example.com\",\n  \"address\": \"sample-value\",\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchbranches",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchbranches"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchbranches",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchbranches"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/searchbranches",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "searchbranches"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "POST /api/account/v1/createvirtualaccount",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"accountName\": \"Merchant VAS\",\n  \"lastName\": \"Merchant\",\n  \"firstName\": \"Main\",\n  \"phoneNumber\": \"08000000000\",\n  \"email\": \"merchant@example.com\",\n  \"parentAccountNumber\": \"1000000009\",\n  \"accountType\": 0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/account/v1/createvirtualaccount",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "account",
                "v1",
                "createvirtualaccount"
              ]
            },
            "description": "Account endpoint\n\nSample Payload:\n{\n  \"accountName\": \"Merchant VAS\",\n  \"lastName\": \"Merchant\",\n  \"firstName\": \"Main\",\n  \"phoneNumber\": \"08000000000\",\n  \"email\": \"merchant@example.com\",\n  \"parentAccountNumber\": \"1000000009\",\n  \"accountType\": 0\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountName\": \"Merchant VAS\",\n  \"lastName\": \"Merchant\",\n  \"firstName\": \"Main\",\n  \"phoneNumber\": \"08000000000\",\n  \"email\": \"merchant@example.com\",\n  \"parentAccountNumber\": \"1000000009\",\n  \"accountType\": 0\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createvirtualaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createvirtualaccount"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountName\": \"Merchant VAS\",\n  \"lastName\": \"Merchant\",\n  \"firstName\": \"Main\",\n  \"phoneNumber\": \"08000000000\",\n  \"email\": \"merchant@example.com\",\n  \"parentAccountNumber\": \"1000000009\",\n  \"accountType\": 0\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createvirtualaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createvirtualaccount"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountName\": \"Merchant VAS\",\n  \"lastName\": \"Merchant\",\n  \"firstName\": \"Main\",\n  \"phoneNumber\": \"08000000000\",\n  \"email\": \"merchant@example.com\",\n  \"parentAccountNumber\": \"1000000009\",\n  \"accountType\": 0\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createvirtualaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createvirtualaccount"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountName\": \"Merchant VAS\",\n  \"lastName\": \"Merchant\",\n  \"firstName\": \"Main\",\n  \"phoneNumber\": \"08000000000\",\n  \"email\": \"merchant@example.com\",\n  \"parentAccountNumber\": \"1000000009\",\n  \"accountType\": 0\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/account/v1/createvirtualaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "account",
                    "v1",
                    "createvirtualaccount"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "AccountLien",
      "description": "AccountLien endpoints",
      "item": [
        {
          "name": "POST /api/accountlien/v1/placelien",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/accountlien/v1/placelien",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "accountlien",
                "v1",
                "placelien"
              ]
            },
            "description": "AccountLien endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/placelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "placelien"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/placelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "placelien"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/placelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "placelien"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/placelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "placelien"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/accountlien/v1/updatelien",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/accountlien/v1/updatelien",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "accountlien",
                "v1",
                "updatelien"
              ]
            },
            "description": "AccountLien endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/updatelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "updatelien"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/updatelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "updatelien"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/updatelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "updatelien"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"formOfLien\": 1,\n  \"amount\": 1,\n  \"percentage\": 1,\n  \"description\": \"sample-value\",\n  \"reason\": \"sample-value\",\n  \"tenor\": 1,\n  \"startDate\": \"2026-01-01\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/updatelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "updatelien"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/accountlien/v1/unplacelien",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\",\n  \"referenceNumber\": \"REF-001\",\n  \"reason\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/accountlien/v1/unplacelien",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "accountlien",
                "v1",
                "unplacelien"
              ]
            },
            "description": "AccountLien endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\",\n  \"referenceNumber\": \"REF-001\",\n  \"reason\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"referenceNumber\": \"REF-001\",\n  \"reason\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/unplacelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "unplacelien"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"referenceNumber\": \"REF-001\",\n  \"reason\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/unplacelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "unplacelien"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"referenceNumber\": \"REF-001\",\n  \"reason\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/unplacelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "unplacelien"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"referenceNumber\": \"REF-001\",\n  \"reason\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountlien/v1/unplacelien",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountlien",
                    "v1",
                    "unplacelien"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "AccountOverdraft",
      "description": "AccountOverdraft endpoints",
      "item": [
        {
          "name": "POST /api/accountoverdraft/v1/add",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"feeCodes\": \"sample-value\",\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\",\n  \"guarantorName\": \"sample-value\",\n  \"guarantorPhoneNumber\": \"08000000000\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/add",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "accountoverdraft",
                "v1",
                "add"
              ]
            },
            "description": "AccountOverdraft endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"feeCodes\": \"sample-value\",\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\",\n  \"guarantorName\": \"sample-value\",\n  \"guarantorPhoneNumber\": \"08000000000\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"feeCodes\": \"sample-value\",\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\",\n  \"guarantorName\": \"sample-value\",\n  \"guarantorPhoneNumber\": \"08000000000\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"feeCodes\": \"sample-value\",\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\",\n  \"guarantorName\": \"sample-value\",\n  \"guarantorPhoneNumber\": \"08000000000\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"feeCodes\": \"sample-value\",\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\",\n  \"guarantorName\": \"sample-value\",\n  \"guarantorPhoneNumber\": \"08000000000\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"feeCodes\": \"sample-value\",\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\",\n  \"guarantorName\": \"sample-value\",\n  \"guarantorPhoneNumber\": \"08000000000\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/accountoverdraft/v1/update",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/update",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "accountoverdraft",
                "v1",
                "update"
              ]
            },
            "description": "AccountOverdraft endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"limit\": 1,\n  \"commencementDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"interestCode\": \"sample-value\",\n  \"securityPledged\": true,\n  \"securityType\": 1,\n  \"securityValuation\": 1,\n  \"description\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/accountoverdraft/v1/activate",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/activate",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "accountoverdraft",
                "v1",
                "activate"
              ]
            },
            "description": "AccountOverdraft endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/activate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "activate"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/activate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "activate"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/activate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "activate"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/activate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "activate"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/accountoverdraft/v1/deactivate",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/deactivate",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "accountoverdraft",
                "v1",
                "deactivate"
              ]
            },
            "description": "AccountOverdraft endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/deactivate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "deactivate"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/deactivate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "deactivate"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/deactivate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "deactivate"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/deactivate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "deactivate"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "GET /api/accountoverdraft/v1/search",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/search",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "accountoverdraft",
                "v1",
                "search"
              ]
            },
            "description": "AccountOverdraft endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"accountName\": \"sample-value\",\n  \"overdraftStatus\": 1,\n  \"securityType\": \"sample-value\",\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/accountoverdraft/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "accountoverdraft",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Bills",
      "description": "Bills endpoints",
      "item": [
        {
          "name": "GET /api/bills/v1/billers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/bills/v1/billers",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "bills",
                "v1",
                "billers"
              ]
            },
            "description": "Bills endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/billers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "billers"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/billers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "billers"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/billers",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "billers"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/bills/v1/getcustomerinformation",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/bills/v1/getcustomerinformation",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "bills",
                "v1",
                "getcustomerinformation"
              ]
            },
            "description": "Bills endpoint\n\nSample Payload:\n{\n  \"customerId\": \"ID-001\",\n  \"globalBillerIdentifier\": \"ID-001\",\n  \"productName\": \"sample-value\",\n  \"provider\": \"ID-001\",\n  \"accountNumber\": \"1000000001\",\n  \"paymentReference\": \"REF-001\",\n  \"amount\": 1,\n  \"packageIdentifier\": \"ID-001\",\n  \"billerIdentifier\": \"ID-001\",\n  \"customerName\": \"sample-value\",\n  \"phoneNumber\": \"08000000000\",\n  \"notificationPhone\": \"sample-value\",\n  \"notificationEmail\": \"customer@example.com\",\n  \"postingRefernce\": \"sample-value\",\n  \"requestingAccountNumber\": \"1000000001\",\n  \"transactionId\": \"ID-001\",\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"vendStatus\": 1,\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/getcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "getcustomerinformation"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/getcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "getcustomerinformation"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/getcustomerinformation",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "getcustomerinformation"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "POST /api/bills/v1/vend",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"debitAccountNumber\": \"1000000001\",\n  \"paymentReference\": \"BILL-123\",\n  \"amount\": 1000,\n  \"billerIdentifier\": \"DSTV\",\n  \"customerIdentifier\": \"0101160313181\",\n  \"packageIdentifier\": \"COMPACT_PLUS\",\n  \"customerPhoneNumber\": \"08000000000\",\n  \"customerEmail\": \"customer@example.com\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/bills/v1/vend",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "bills",
                "v1",
                "vend"
              ]
            },
            "description": "Bills endpoint\n\nSample Payload:\n{\n  \"debitAccountNumber\": \"1000000001\",\n  \"paymentReference\": \"BILL-123\",\n  \"amount\": 1000,\n  \"billerIdentifier\": \"DSTV\",\n  \"customerIdentifier\": \"0101160313181\",\n  \"packageIdentifier\": \"COMPACT_PLUS\",\n  \"customerPhoneNumber\": \"08000000000\",\n  \"customerEmail\": \"customer@example.com\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccountNumber\": \"1000000001\",\n  \"paymentReference\": \"BILL-123\",\n  \"amount\": 1000,\n  \"billerIdentifier\": \"DSTV\",\n  \"customerIdentifier\": \"0101160313181\",\n  \"packageIdentifier\": \"COMPACT_PLUS\",\n  \"customerPhoneNumber\": \"08000000000\",\n  \"customerEmail\": \"customer@example.com\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/vend",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "vend"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccountNumber\": \"1000000001\",\n  \"paymentReference\": \"BILL-123\",\n  \"amount\": 1000,\n  \"billerIdentifier\": \"DSTV\",\n  \"customerIdentifier\": \"0101160313181\",\n  \"packageIdentifier\": \"COMPACT_PLUS\",\n  \"customerPhoneNumber\": \"08000000000\",\n  \"customerEmail\": \"customer@example.com\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/vend",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "vend"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccountNumber\": \"1000000001\",\n  \"paymentReference\": \"BILL-123\",\n  \"amount\": 1000,\n  \"billerIdentifier\": \"DSTV\",\n  \"customerIdentifier\": \"0101160313181\",\n  \"packageIdentifier\": \"COMPACT_PLUS\",\n  \"customerPhoneNumber\": \"08000000000\",\n  \"customerEmail\": \"customer@example.com\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/vend",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "vend"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccountNumber\": \"1000000001\",\n  \"paymentReference\": \"BILL-123\",\n  \"amount\": 1000,\n  \"billerIdentifier\": \"DSTV\",\n  \"customerIdentifier\": \"0101160313181\",\n  \"packageIdentifier\": \"COMPACT_PLUS\",\n  \"customerPhoneNumber\": \"08000000000\",\n  \"customerEmail\": \"customer@example.com\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/vend",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "vend"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/bills/v1/tsq",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/bills/v1/tsq",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "bills",
                "v1",
                "tsq"
              ]
            },
            "description": "Bills endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
          },
          "response": [
            {
              "name": "200 Status retrieved",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/tsq",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "tsq"
                  ]
                }
              },
              "status": "Status retrieved",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
            },
            {
              "name": "404 Record not found",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/tsq",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "tsq"
                  ]
                }
              },
              "status": "Record not found",
              "code": 404,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
            },
            {
              "name": "400 Missing/invalid query reference",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/tsq",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "tsq"
                  ]
                }
              },
              "status": "Missing/invalid query reference",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
            }
          ]
        },
        {
          "name": "GET /api/bills/v1/gettoken",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/bills/v1/gettoken",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "bills",
                "v1",
                "gettoken"
              ]
            },
            "description": "Bills endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/gettoken",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "gettoken"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/gettoken",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "gettoken"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/gettoken",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "gettoken"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/bills/v1/search",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/bills/v1/search",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "bills",
                "v1",
                "search"
              ]
            },
            "description": "Bills endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/bills/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "bills",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Card - Interswitch",
      "description": "Card - Interswitch endpoints",
      "item": [
        {
          "name": "GET /api/card/v1/searchcards",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/card/v1/searchcards",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "card",
                "v1",
                "searchcards"
              ]
            },
            "description": "Card endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/searchcards",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "searchcards"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/searchcards",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "searchcards"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/searchcards",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "searchcards"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "POST /api/card/v1/addcardtoaccount",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/card/v1/addcardtoaccount",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "card",
                "v1",
                "addcardtoaccount"
              ]
            },
            "description": "Card endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/addcardtoaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "addcardtoaccount"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/addcardtoaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "addcardtoaccount"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/addcardtoaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "addcardtoaccount"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/addcardtoaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "addcardtoaccount"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/card/v1/interswitch/updatecardchannelaccess",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"cardId\": \"ID-001\",\n  \"enableATM\": true,\n  \"enablePOS\": true,\n  \"enableWeb\": true,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"accountNumber\": \"1000000001\",\n  \"status\": 1,\n  \"customerID\": \"ID-001\",\n  \"cardholderId\": \"ID-001\",\n  \"cardProgramId\": \"ID-001\",\n  \"maskedPAN\": \"sample-value\",\n  \"lastFour\": \"sample-value\",\n  \"bin\": \"sample-value\",\n  \"thirdPartyProvider\": 1,\n  \"pin\": \"sample-value\",\n  \"provider\": \"ID-001\",\n  \"nameOnCard\": \"sample-value\",\n  \"cardType\": \"sample-value\",\n  \"cardExpiration\": \"sample-value\",\n  \"additionalMetadata\": \"sample-value\",\n  \"id\": 1,\n  \"eventType\": \"sample-value\",\n  \"sourceTraceId\": \"ID-001\",\n  \"headers\": \"sample-value\",\n  \"query\": \"sample-value\",\n  \"payload\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/card/v1/interswitch/updatecardchannelaccess",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "card",
                "v1",
                "interswitch",
                "updatecardchannelaccess"
              ]
            },
            "description": "Card endpoint\n\nSample Payload:\n{\n  \"cardId\": \"ID-001\",\n  \"enableATM\": true,\n  \"enablePOS\": true,\n  \"enableWeb\": true,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"accountNumber\": \"1000000001\",\n  \"status\": 1,\n  \"customerID\": \"ID-001\",\n  \"cardholderId\": \"ID-001\",\n  \"cardProgramId\": \"ID-001\",\n  \"maskedPAN\": \"sample-value\",\n  \"lastFour\": \"sample-value\",\n  \"bin\": \"sample-value\",\n  \"thirdPartyProvider\": 1,\n  \"pin\": \"sample-value\",\n  \"provider\": \"ID-001\",\n  \"nameOnCard\": \"sample-value\",\n  \"cardType\": \"sample-value\",\n  \"cardExpiration\": \"sample-value\",\n  \"additionalMetadata\": \"sample-value\",\n  \"id\": 1,\n  \"eventType\": \"sample-value\",\n  \"sourceTraceId\": \"ID-001\",\n  \"headers\": \"sample-value\",\n  \"query\": \"sample-value\",\n  \"payload\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cardId\": \"ID-001\",\n  \"enableATM\": true,\n  \"enablePOS\": true,\n  \"enableWeb\": true,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"accountNumber\": \"1000000001\",\n  \"status\": 1,\n  \"customerID\": \"ID-001\",\n  \"cardholderId\": \"ID-001\",\n  \"cardProgramId\": \"ID-001\",\n  \"maskedPAN\": \"sample-value\",\n  \"lastFour\": \"sample-value\",\n  \"bin\": \"sample-value\",\n  \"thirdPartyProvider\": 1,\n  \"pin\": \"sample-value\",\n  \"provider\": \"ID-001\",\n  \"nameOnCard\": \"sample-value\",\n  \"cardType\": \"sample-value\",\n  \"cardExpiration\": \"sample-value\",\n  \"additionalMetadata\": \"sample-value\",\n  \"id\": 1,\n  \"eventType\": \"sample-value\",\n  \"sourceTraceId\": \"ID-001\",\n  \"headers\": \"sample-value\",\n  \"query\": \"sample-value\",\n  \"payload\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/interswitch/updatecardchannelaccess",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "interswitch",
                    "updatecardchannelaccess"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cardId\": \"ID-001\",\n  \"enableATM\": true,\n  \"enablePOS\": true,\n  \"enableWeb\": true,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"accountNumber\": \"1000000001\",\n  \"status\": 1,\n  \"customerID\": \"ID-001\",\n  \"cardholderId\": \"ID-001\",\n  \"cardProgramId\": \"ID-001\",\n  \"maskedPAN\": \"sample-value\",\n  \"lastFour\": \"sample-value\",\n  \"bin\": \"sample-value\",\n  \"thirdPartyProvider\": 1,\n  \"pin\": \"sample-value\",\n  \"provider\": \"ID-001\",\n  \"nameOnCard\": \"sample-value\",\n  \"cardType\": \"sample-value\",\n  \"cardExpiration\": \"sample-value\",\n  \"additionalMetadata\": \"sample-value\",\n  \"id\": 1,\n  \"eventType\": \"sample-value\",\n  \"sourceTraceId\": \"ID-001\",\n  \"headers\": \"sample-value\",\n  \"query\": \"sample-value\",\n  \"payload\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/interswitch/updatecardchannelaccess",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "interswitch",
                    "updatecardchannelaccess"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cardId\": \"ID-001\",\n  \"enableATM\": true,\n  \"enablePOS\": true,\n  \"enableWeb\": true,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"accountNumber\": \"1000000001\",\n  \"status\": 1,\n  \"customerID\": \"ID-001\",\n  \"cardholderId\": \"ID-001\",\n  \"cardProgramId\": \"ID-001\",\n  \"maskedPAN\": \"sample-value\",\n  \"lastFour\": \"sample-value\",\n  \"bin\": \"sample-value\",\n  \"thirdPartyProvider\": 1,\n  \"pin\": \"sample-value\",\n  \"provider\": \"ID-001\",\n  \"nameOnCard\": \"sample-value\",\n  \"cardType\": \"sample-value\",\n  \"cardExpiration\": \"sample-value\",\n  \"additionalMetadata\": \"sample-value\",\n  \"id\": 1,\n  \"eventType\": \"sample-value\",\n  \"sourceTraceId\": \"ID-001\",\n  \"headers\": \"sample-value\",\n  \"query\": \"sample-value\",\n  \"payload\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/interswitch/updatecardchannelaccess",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "interswitch",
                    "updatecardchannelaccess"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cardId\": \"ID-001\",\n  \"enableATM\": true,\n  \"enablePOS\": true,\n  \"enableWeb\": true,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"accountNumber\": \"1000000001\",\n  \"status\": 1,\n  \"customerID\": \"ID-001\",\n  \"cardholderId\": \"ID-001\",\n  \"cardProgramId\": \"ID-001\",\n  \"maskedPAN\": \"sample-value\",\n  \"lastFour\": \"sample-value\",\n  \"bin\": \"sample-value\",\n  \"thirdPartyProvider\": 1,\n  \"pin\": \"sample-value\",\n  \"provider\": \"ID-001\",\n  \"nameOnCard\": \"sample-value\",\n  \"cardType\": \"sample-value\",\n  \"cardExpiration\": \"sample-value\",\n  \"additionalMetadata\": \"sample-value\",\n  \"id\": 1,\n  \"eventType\": \"sample-value\",\n  \"sourceTraceId\": \"ID-001\",\n  \"headers\": \"sample-value\",\n  \"query\": \"sample-value\",\n  \"payload\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/interswitch/updatecardchannelaccess",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "interswitch",
                    "updatecardchannelaccess"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/card/v1/block",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/card/v1/block",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "card",
                "v1",
                "block"
              ]
            },
            "description": "Card endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/block",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "block"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/block",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "block"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/block",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "block"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/block",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "block"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/card/v1/unblock",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/card/v1/unblock",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "card",
                "v1",
                "unblock"
              ]
            },
            "description": "Card endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/unblock",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "unblock"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/unblock",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "unblock"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/unblock",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "unblock"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/unblock",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "unblock"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "DELETE /api/card/v1/delete/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/card/v1/delete/{id}",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "card",
                "v1",
                "delete",
                "{id}"
              ]
            },
            "description": "Card endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/delete/{id}",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "delete",
                    "{id}"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/delete/{id}",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "delete",
                    "{id}"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/delete/{id}",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "delete",
                    "{id}"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/delete/{id}",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "delete",
                    "{id}"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Card - Providus",
      "description": "Card - Providus endpoints",
      "item": [
        {
          "name": "GET /api/card/v1/providus/searchcards",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/card/v1/providus/searchcards",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "card",
                "v1",
                "providus",
                "searchcards"
              ]
            },
            "description": "Card endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/searchcards",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "searchcards"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/searchcards",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "searchcards"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/searchcards",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "searchcards"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "PUT /api/card/v1/providus/setcardpin",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/card/v1/providus/setcardpin",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "card",
                "v1",
                "providus",
                "setcardpin"
              ]
            },
            "description": "Card endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/setcardpin",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "setcardpin"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/setcardpin",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "setcardpin"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/setcardpin",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "setcardpin"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/setcardpin",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "setcardpin"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/card/v1/providus/blockunblockcard",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/card/v1/providus/blockunblockcard",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "card",
                "v1",
                "providus",
                "blockunblockcard"
              ]
            },
            "description": "Card endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/blockunblockcard",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "blockunblockcard"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/blockunblockcard",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "blockunblockcard"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/blockunblockcard",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "blockunblockcard"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/card/v1/providus/blockunblockcard",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "card",
                    "v1",
                    "providus",
                    "blockunblockcard"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Entity Additional Metadata",
      "description": "Institution-scoped extra JSON data for supported CoreWave records. PUT replaces the stored object or array; DELETE clears it.",
      "item": [
        {
          "name": "GET /api/entity-additional-metadata/v1/supported-entity-types",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/entity-additional-metadata/v1/supported-entity-types",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "entity-additional-metadata",
                "v1",
                "supported-entity-types"
              ]
            },
            "description": "List record types that support institution-specific extra JSON data."
          },
          "response": []
        },
        {
          "name": "GET /api/entity-additional-metadata/v1/{entityType}/{entityId}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/entity-additional-metadata/v1/{entityType}/{entityId}",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "entity-additional-metadata",
                "v1",
                "{entityType}",
                "{entityId}"
              ]
            },
            "description": "Fetch institution-scoped extra JSON data for a supported record."
          },
          "response": []
        },
        {
          "name": "PUT /api/entity-additional-metadata/v1/{entityType}/{entityId}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/entity-additional-metadata/v1/{entityType}/{entityId}",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "entity-additional-metadata",
                "v1",
                "{entityType}",
                "{entityId}"
              ]
            },
            "description": "Add or replace institution-scoped extra JSON data. additionalMetadata must be an object or array and must not exceed 64 KB.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"additionalMetadata\": {\n    \"crm\": {\n      \"customerId\": \"CRM-10021\",\n      \"segment\": \"priority\"\n    },\n    \"tags\": [\n      \"salary\",\n      \"mobile\"\n    ]\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "DELETE /api/entity-additional-metadata/v1/{entityType}/{entityId}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/entity-additional-metadata/v1/{entityType}/{entityId}",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "entity-additional-metadata",
                "v1",
                "{entityType}",
                "{entityId}"
              ]
            },
            "description": "Clear institution-scoped extra JSON data for a supported record."
          },
          "response": []
        }
      ]
    },
    {
      "name": "FixedDepositAccount",
      "description": "FixedDepositAccount endpoints",
      "item": [
        {
          "name": "POST /api/fixeddepositaccount/v1/add",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"customerID\": \"ID-001\",\n  \"isCorporateCustomer\": true,\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"liquidateToGL\": true,\n  \"liquidationAccountNumber\": \"1000000001\",\n  \"liquidationLedgerCode\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"principal\": 1,\n  \"duration\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"interestRate\": 1,\n  \"interestPaymentType\": 1,\n  \"earlyLiquidationCharge\": 1,\n  \"witholdFundsAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverType\": 1,\n  \"notificationMethod\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/add",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "fixeddepositaccount",
                "v1",
                "add"
              ]
            },
            "description": "FixedDepositAccount endpoint\n\nSample Payload:\n{\n  \"customerID\": \"ID-001\",\n  \"isCorporateCustomer\": true,\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"liquidateToGL\": true,\n  \"liquidationAccountNumber\": \"1000000001\",\n  \"liquidationLedgerCode\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"principal\": 1,\n  \"duration\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"interestRate\": 1,\n  \"interestPaymentType\": 1,\n  \"earlyLiquidationCharge\": 1,\n  \"witholdFundsAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverType\": 1,\n  \"notificationMethod\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"isCorporateCustomer\": true,\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"liquidateToGL\": true,\n  \"liquidationAccountNumber\": \"1000000001\",\n  \"liquidationLedgerCode\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"principal\": 1,\n  \"duration\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"interestRate\": 1,\n  \"interestPaymentType\": 1,\n  \"earlyLiquidationCharge\": 1,\n  \"witholdFundsAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverType\": 1,\n  \"notificationMethod\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"isCorporateCustomer\": true,\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"liquidateToGL\": true,\n  \"liquidationAccountNumber\": \"1000000001\",\n  \"liquidationLedgerCode\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"principal\": 1,\n  \"duration\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"interestRate\": 1,\n  \"interestPaymentType\": 1,\n  \"earlyLiquidationCharge\": 1,\n  \"witholdFundsAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverType\": 1,\n  \"notificationMethod\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"isCorporateCustomer\": true,\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"liquidateToGL\": true,\n  \"liquidationAccountNumber\": \"1000000001\",\n  \"liquidationLedgerCode\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"principal\": 1,\n  \"duration\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"interestRate\": 1,\n  \"interestPaymentType\": 1,\n  \"earlyLiquidationCharge\": 1,\n  \"witholdFundsAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverType\": 1,\n  \"notificationMethod\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"isCorporateCustomer\": true,\n  \"branchCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"liquidateToGL\": true,\n  \"liquidationAccountNumber\": \"1000000001\",\n  \"liquidationLedgerCode\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"principal\": 1,\n  \"duration\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"interestRate\": 1,\n  \"interestPaymentType\": 1,\n  \"earlyLiquidationCharge\": 1,\n  \"witholdFundsAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverType\": 1,\n  \"notificationMethod\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/fixeddepositaccount/v1/topup",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\",\n  \"amount\": 1,\n  \"notes\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/topup",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "fixeddepositaccount",
                "v1",
                "topup"
              ]
            },
            "description": "FixedDepositAccount endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\",\n  \"amount\": 1,\n  \"notes\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"amount\": 1,\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/topup",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "topup"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"amount\": 1,\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/topup",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "topup"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"amount\": 1,\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/topup",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "topup"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"amount\": 1,\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/topup",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "topup"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/fixeddepositaccount/v1/liquidate",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"liquidationAmount\": 1,\n  \"partLiquidationFee\": 1,\n  \"liquidationType\": 1,\n  \"notes\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/liquidate",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "fixeddepositaccount",
                "v1",
                "liquidate"
              ]
            },
            "description": "FixedDepositAccount endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"liquidationAmount\": 1,\n  \"partLiquidationFee\": 1,\n  \"liquidationType\": 1,\n  \"notes\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"liquidationAmount\": 1,\n  \"partLiquidationFee\": 1,\n  \"liquidationType\": 1,\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/liquidate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "liquidate"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"liquidationAmount\": 1,\n  \"partLiquidationFee\": 1,\n  \"liquidationType\": 1,\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/liquidate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "liquidate"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"liquidationAmount\": 1,\n  \"partLiquidationFee\": 1,\n  \"liquidationType\": 1,\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/liquidate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "liquidate"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"liquidationAmount\": 1,\n  \"partLiquidationFee\": 1,\n  \"liquidationType\": 1,\n  \"notes\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/liquidate",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "liquidate"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/fixeddepositaccount/v1/update",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\",\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"partLiquidationCharge\": 1,\n  \"holdFundAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverOption\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/update",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "fixeddepositaccount",
                "v1",
                "update"
              ]
            },
            "description": "FixedDepositAccount endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\",\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"partLiquidationCharge\": 1,\n  \"holdFundAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverOption\": 1\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"partLiquidationCharge\": 1,\n  \"holdFundAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverOption\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"partLiquidationCharge\": 1,\n  \"holdFundAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverOption\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"partLiquidationCharge\": 1,\n  \"holdFundAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverOption\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"partLiquidationCharge\": 1,\n  \"holdFundAtMaturity\": true,\n  \"applyRollover\": true,\n  \"rolloverOption\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "GET /api/fixeddepositaccount/v1/search",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/search",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "fixeddepositaccount",
                "v1",
                "search"
              ]
            },
            "description": "FixedDepositAccount endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"customerID\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"accountOfficerCode\": \"sample-value\",\n  \"accountStatus\": 1,\n  \"hasDisbursed\": true,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/fixeddepositaccount/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "fixeddepositaccount",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Limit",
      "description": "Limit endpoints",
      "item": [
        {
          "name": "PUT /api/limit/v1/addupdateaccountlimit",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"userSingleTransactionLimit\": 1,\n  \"userDailyTransactionLimit\": 1,\n  \"balanceLimit\": 1,\n  \"applySpecialLimit\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/limit/v1/addupdateaccountlimit",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "limit",
                "v1",
                "addupdateaccountlimit"
              ]
            },
            "description": "Limit endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"userSingleTransactionLimit\": 1,\n  \"userDailyTransactionLimit\": 1,\n  \"balanceLimit\": 1,\n  \"applySpecialLimit\": true\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"userSingleTransactionLimit\": 1,\n  \"userDailyTransactionLimit\": 1,\n  \"balanceLimit\": 1,\n  \"applySpecialLimit\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/limit/v1/addupdateaccountlimit",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "limit",
                    "v1",
                    "addupdateaccountlimit"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"userSingleTransactionLimit\": 1,\n  \"userDailyTransactionLimit\": 1,\n  \"balanceLimit\": 1,\n  \"applySpecialLimit\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/limit/v1/addupdateaccountlimit",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "limit",
                    "v1",
                    "addupdateaccountlimit"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"userSingleTransactionLimit\": 1,\n  \"userDailyTransactionLimit\": 1,\n  \"balanceLimit\": 1,\n  \"applySpecialLimit\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/limit/v1/addupdateaccountlimit",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "limit",
                    "v1",
                    "addupdateaccountlimit"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"userSingleTransactionLimit\": 1,\n  \"userDailyTransactionLimit\": 1,\n  \"balanceLimit\": 1,\n  \"applySpecialLimit\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/limit/v1/addupdateaccountlimit",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "limit",
                    "v1",
                    "addupdateaccountlimit"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "GET /api/limit/v1/getaccountlimit",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/limit/v1/getaccountlimit",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "limit",
                "v1",
                "getaccountlimit"
              ]
            },
            "description": "Limit endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/limit/v1/getaccountlimit",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "limit",
                    "v1",
                    "getaccountlimit"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/limit/v1/getaccountlimit",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "limit",
                    "v1",
                    "getaccountlimit"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/limit/v1/getaccountlimit",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "limit",
                    "v1",
                    "getaccountlimit"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "LoanAccount",
      "description": "LoanAccount endpoints",
      "item": [
        {
          "name": "POST /api/loanaccount/v1/add",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"customerID\": \"ID-001\",\n  \"linkedNumber\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"productCode\": \"sample-value\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"loanAmount\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"principalRepaymentType\": 1,\n  \"interestRepaymentType\": 1,\n  \"interestAccrualMode\": 1,\n  \"principalFrequency\": 1,\n  \"principalToBeRepaidEvery\": 1,\n  \"principalInstallment\": 1,\n  \"interestFrequency\": 1,\n  \"interestToBeRepaidEvery\": 1,\n  \"interestInstallment\": 1,\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"defaultingInterestRate\": 1,\n  \"rateBasis\": 0,\n  \"useProductFeeRate\": true,\n  \"applyLoanFees\": true,\n  \"loanFees\": \"sample-value\",\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"holdFundSecurityDeposit\": true,\n  \"securityDeposit\": 1,\n  \"allowMoratorium\": 1,\n  \"moratoriumDuration\": 1,\n  \"moratoriumFrequency\": 1,\n  \"moratoriumEffect\": 1,\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1,\n  \"guarantorID1\": \"ID-001\",\n  \"guarantorID2\": \"ID-001\",\n  \"loanPaymentSchedules\": \"sample-value\",\n  \"notes\": \"sample-value\",\n  \"code\": \"sample-value\",\n  \"loanFeeCode\": \"sample-value\",\n  \"paymentDate\": \"2026-01-01\",\n  \"principal\": 1,\n  \"interest\": 1,\n  \"fee\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/loanaccount/v1/add",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "loanaccount",
                "v1",
                "add"
              ]
            },
            "description": "LoanAccount endpoint\n\nSample Payload:\n{\n  \"customerID\": \"ID-001\",\n  \"linkedNumber\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"productCode\": \"sample-value\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"loanAmount\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"principalRepaymentType\": 1,\n  \"interestRepaymentType\": 1,\n  \"interestAccrualMode\": 1,\n  \"principalFrequency\": 1,\n  \"principalToBeRepaidEvery\": 1,\n  \"principalInstallment\": 1,\n  \"interestFrequency\": 1,\n  \"interestToBeRepaidEvery\": 1,\n  \"interestInstallment\": 1,\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"defaultingInterestRate\": 1,\n  \"rateBasis\": 0,\n  \"useProductFeeRate\": true,\n  \"applyLoanFees\": true,\n  \"loanFees\": \"sample-value\",\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"holdFundSecurityDeposit\": true,\n  \"securityDeposit\": 1,\n  \"allowMoratorium\": 1,\n  \"moratoriumDuration\": 1,\n  \"moratoriumFrequency\": 1,\n  \"moratoriumEffect\": 1,\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1,\n  \"guarantorID1\": \"ID-001\",\n  \"guarantorID2\": \"ID-001\",\n  \"loanPaymentSchedules\": \"sample-value\",\n  \"notes\": \"sample-value\",\n  \"code\": \"sample-value\",\n  \"loanFeeCode\": \"sample-value\",\n  \"paymentDate\": \"2026-01-01\",\n  \"principal\": 1,\n  \"interest\": 1,\n  \"fee\": 1\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"linkedNumber\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"productCode\": \"sample-value\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"loanAmount\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"principalRepaymentType\": 1,\n  \"interestRepaymentType\": 1,\n  \"interestAccrualMode\": 1,\n  \"principalFrequency\": 1,\n  \"principalToBeRepaidEvery\": 1,\n  \"principalInstallment\": 1,\n  \"interestFrequency\": 1,\n  \"interestToBeRepaidEvery\": 1,\n  \"interestInstallment\": 1,\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"defaultingInterestRate\": 1,\n  \"rateBasis\": 0,\n  \"useProductFeeRate\": true,\n  \"applyLoanFees\": true,\n  \"loanFees\": \"sample-value\",\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"holdFundSecurityDeposit\": true,\n  \"securityDeposit\": 1,\n  \"allowMoratorium\": 1,\n  \"moratoriumDuration\": 1,\n  \"moratoriumFrequency\": 1,\n  \"moratoriumEffect\": 1,\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1,\n  \"guarantorID1\": \"ID-001\",\n  \"guarantorID2\": \"ID-001\",\n  \"loanPaymentSchedules\": \"sample-value\",\n  \"notes\": \"sample-value\",\n  \"code\": \"sample-value\",\n  \"loanFeeCode\": \"sample-value\",\n  \"paymentDate\": \"2026-01-01\",\n  \"principal\": 1,\n  \"interest\": 1,\n  \"fee\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"linkedNumber\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"productCode\": \"sample-value\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"loanAmount\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"principalRepaymentType\": 1,\n  \"interestRepaymentType\": 1,\n  \"interestAccrualMode\": 1,\n  \"principalFrequency\": 1,\n  \"principalToBeRepaidEvery\": 1,\n  \"principalInstallment\": 1,\n  \"interestFrequency\": 1,\n  \"interestToBeRepaidEvery\": 1,\n  \"interestInstallment\": 1,\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"defaultingInterestRate\": 1,\n  \"rateBasis\": 0,\n  \"useProductFeeRate\": true,\n  \"applyLoanFees\": true,\n  \"loanFees\": \"sample-value\",\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"holdFundSecurityDeposit\": true,\n  \"securityDeposit\": 1,\n  \"allowMoratorium\": 1,\n  \"moratoriumDuration\": 1,\n  \"moratoriumFrequency\": 1,\n  \"moratoriumEffect\": 1,\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1,\n  \"guarantorID1\": \"ID-001\",\n  \"guarantorID2\": \"ID-001\",\n  \"loanPaymentSchedules\": \"sample-value\",\n  \"notes\": \"sample-value\",\n  \"code\": \"sample-value\",\n  \"loanFeeCode\": \"sample-value\",\n  \"paymentDate\": \"2026-01-01\",\n  \"principal\": 1,\n  \"interest\": 1,\n  \"fee\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"linkedNumber\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"productCode\": \"sample-value\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"loanAmount\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"principalRepaymentType\": 1,\n  \"interestRepaymentType\": 1,\n  \"interestAccrualMode\": 1,\n  \"principalFrequency\": 1,\n  \"principalToBeRepaidEvery\": 1,\n  \"principalInstallment\": 1,\n  \"interestFrequency\": 1,\n  \"interestToBeRepaidEvery\": 1,\n  \"interestInstallment\": 1,\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"defaultingInterestRate\": 1,\n  \"rateBasis\": 0,\n  \"useProductFeeRate\": true,\n  \"applyLoanFees\": true,\n  \"loanFees\": \"sample-value\",\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"holdFundSecurityDeposit\": true,\n  \"securityDeposit\": 1,\n  \"allowMoratorium\": 1,\n  \"moratoriumDuration\": 1,\n  \"moratoriumFrequency\": 1,\n  \"moratoriumEffect\": 1,\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1,\n  \"guarantorID1\": \"ID-001\",\n  \"guarantorID2\": \"ID-001\",\n  \"loanPaymentSchedules\": \"sample-value\",\n  \"notes\": \"sample-value\",\n  \"code\": \"sample-value\",\n  \"loanFeeCode\": \"sample-value\",\n  \"paymentDate\": \"2026-01-01\",\n  \"principal\": 1,\n  \"interest\": 1,\n  \"fee\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"linkedNumber\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"productCode\": \"sample-value\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"loanAmount\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"tenure\": 1,\n  \"principalRepaymentType\": 1,\n  \"interestRepaymentType\": 1,\n  \"interestAccrualMode\": 1,\n  \"principalFrequency\": 1,\n  \"principalToBeRepaidEvery\": 1,\n  \"principalInstallment\": 1,\n  \"interestFrequency\": 1,\n  \"interestToBeRepaidEvery\": 1,\n  \"interestInstallment\": 1,\n  \"useProductInterestRate\": true,\n  \"applicableInterestCode\": \"sample-value\",\n  \"applicableInterestRate\": 1,\n  \"defaultingInterestRate\": 1,\n  \"rateBasis\": 0,\n  \"useProductFeeRate\": true,\n  \"applyLoanFees\": true,\n  \"loanFees\": \"sample-value\",\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"holdFundSecurityDeposit\": true,\n  \"securityDeposit\": 1,\n  \"allowMoratorium\": 1,\n  \"moratoriumDuration\": 1,\n  \"moratoriumFrequency\": 1,\n  \"moratoriumEffect\": 1,\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1,\n  \"guarantorID1\": \"ID-001\",\n  \"guarantorID2\": \"ID-001\",\n  \"loanPaymentSchedules\": \"sample-value\",\n  \"notes\": \"sample-value\",\n  \"code\": \"sample-value\",\n  \"loanFeeCode\": \"sample-value\",\n  \"paymentDate\": \"2026-01-01\",\n  \"principal\": 1,\n  \"interest\": 1,\n  \"fee\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/add",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "add"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/loanaccount/v1/disburseloan",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"loanAccountNumber\": \"1000000001\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/loanaccount/v1/disburseloan",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "loanaccount",
                "v1",
                "disburseloan"
              ]
            },
            "description": "LoanAccount endpoint\n\nSample Payload:\n{\n  \"loanAccountNumber\": \"1000000001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/disburseloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "disburseloan"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/disburseloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "disburseloan"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/disburseloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "disburseloan"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/disburseloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "disburseloan"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/loanaccount/v1/repayloan",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"loanAccountNumber\": \"1000000001\",\n  \"reference\": \"REF-001\",\n  \"amount\": 1,\n  \"collectionsGL\": \"sample-value\",\n  \"feeIncomeGL\": \"sample-value\",\n  \"earlyTermination\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/loanaccount/v1/repayloan",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "loanaccount",
                "v1",
                "repayloan"
              ]
            },
            "description": "LoanAccount endpoint\n\nSample Payload:\n{\n  \"loanAccountNumber\": \"1000000001\",\n  \"reference\": \"REF-001\",\n  \"amount\": 1,\n  \"collectionsGL\": \"sample-value\",\n  \"feeIncomeGL\": \"sample-value\",\n  \"earlyTermination\": true\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\",\n  \"reference\": \"REF-001\",\n  \"amount\": 1,\n  \"collectionsGL\": \"sample-value\",\n  \"feeIncomeGL\": \"sample-value\",\n  \"earlyTermination\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/repayloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "repayloan"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\",\n  \"reference\": \"REF-001\",\n  \"amount\": 1,\n  \"collectionsGL\": \"sample-value\",\n  \"feeIncomeGL\": \"sample-value\",\n  \"earlyTermination\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/repayloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "repayloan"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\",\n  \"reference\": \"REF-001\",\n  \"amount\": 1,\n  \"collectionsGL\": \"sample-value\",\n  \"feeIncomeGL\": \"sample-value\",\n  \"earlyTermination\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/repayloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "repayloan"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\",\n  \"reference\": \"REF-001\",\n  \"amount\": 1,\n  \"collectionsGL\": \"sample-value\",\n  \"feeIncomeGL\": \"sample-value\",\n  \"earlyTermination\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/repayloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "repayloan"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/loanaccount/v1/earlyrepaymentloan",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"loanAccountNumber\": \"1000000001\",\n  \"paymentOption\": 1,\n  \"paymentSchedulesToProcess\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"actualInterestToBePaid\": 1,\n  \"actualFeesToBePaid\": 1,\n  \"incomeGL\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/loanaccount/v1/earlyrepaymentloan",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "loanaccount",
                "v1",
                "earlyrepaymentloan"
              ]
            },
            "description": "LoanAccount endpoint\n\nSample Payload:\n{\n  \"loanAccountNumber\": \"1000000001\",\n  \"paymentOption\": 1,\n  \"paymentSchedulesToProcess\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"actualInterestToBePaid\": 1,\n  \"actualFeesToBePaid\": 1,\n  \"incomeGL\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\",\n  \"paymentOption\": 1,\n  \"paymentSchedulesToProcess\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"actualInterestToBePaid\": 1,\n  \"actualFeesToBePaid\": 1,\n  \"incomeGL\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/earlyrepaymentloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "earlyrepaymentloan"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\",\n  \"paymentOption\": 1,\n  \"paymentSchedulesToProcess\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"actualInterestToBePaid\": 1,\n  \"actualFeesToBePaid\": 1,\n  \"incomeGL\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/earlyrepaymentloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "earlyrepaymentloan"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\",\n  \"paymentOption\": 1,\n  \"paymentSchedulesToProcess\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"actualInterestToBePaid\": 1,\n  \"actualFeesToBePaid\": 1,\n  \"incomeGL\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/earlyrepaymentloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "earlyrepaymentloan"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"loanAccountNumber\": \"1000000001\",\n  \"paymentOption\": 1,\n  \"paymentSchedulesToProcess\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"actualInterestToBePaid\": 1,\n  \"actualFeesToBePaid\": 1,\n  \"incomeGL\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/earlyrepaymentloan",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "earlyrepaymentloan"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/loanaccount/v1/update",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/loanaccount/v1/update",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "loanaccount",
                "v1",
                "update"
              ]
            },
            "description": "LoanAccount endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\",\n  \"lendingModel\": 1,\n  \"economicSector\": 1,\n  \"hasCollateralPledge\": true,\n  \"collateralType\": 1,\n  \"collateralValuation\": 1,\n  \"collateralDescription\": \"sample-value\",\n  \"enableRepaymentTracker\": true,\n  \"repaymentTrackerInDays\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/update",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "update"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "GET /api/loanaccount/v1/search",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/loanaccount/v1/search",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "loanaccount",
                "v1",
                "search"
              ]
            },
            "description": "LoanAccount endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"customerID\": \"ID-001\",\n  \"accountName\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"accountOfficerCode\": \"sample-value\",\n  \"accountStatus\": 1,\n  \"hasDisbursed\": \"sample-value\",\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/loanaccount/v1/viewloanschedule",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/loanaccount/v1/viewloanschedule",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "loanaccount",
                "v1",
                "viewloanschedule"
              ]
            },
            "description": "LoanAccount endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"paymentStatus\": 1\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/viewloanschedule",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "viewloanschedule"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/viewloanschedule",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "viewloanschedule"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/loanaccount/v1/viewloanschedule",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "loanaccount",
                    "v1",
                    "viewloanschedule"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Operations",
      "description": "Operations endpoints",
      "item": [
        {
          "name": "GET /api/operations/v1/searchtillaccounts",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/operations/v1/searchtillaccounts",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "operations",
                "v1",
                "searchtillaccounts"
              ]
            },
            "description": "Operations endpoint\n\nSample Payload:\n{\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/searchtillaccounts",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "searchtillaccounts"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/searchtillaccounts",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "searchtillaccounts"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/searchtillaccounts",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "searchtillaccounts"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/operations/v1/gettillbalancebyaccountnumber",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/operations/v1/gettillbalancebyaccountnumber",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "operations",
                "v1",
                "gettillbalancebyaccountnumber"
              ]
            },
            "description": "Operations endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/gettillbalancebyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "gettillbalancebyaccountnumber"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/gettillbalancebyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "gettillbalancebyaccountnumber"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/gettillbalancebyaccountnumber",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "gettillbalancebyaccountnumber"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "POST /api/operations/v1/uploaddocument",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"customerID\": \"ID-001\",\n  \"accountNumber\": \"1000000001\",\n  \"name\": \"sample-value\",\n  \"type\": \"sample-value\",\n  \"isFile\": true,\n  \"value\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/operations/v1/uploaddocument",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "operations",
                "v1",
                "uploaddocument"
              ]
            },
            "description": "Operations endpoint\n\nSample Payload:\n{\n  \"customerID\": \"ID-001\",\n  \"accountNumber\": \"1000000001\",\n  \"name\": \"sample-value\",\n  \"type\": \"sample-value\",\n  \"isFile\": true,\n  \"value\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"accountNumber\": \"1000000001\",\n  \"name\": \"sample-value\",\n  \"type\": \"sample-value\",\n  \"isFile\": true,\n  \"value\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/uploaddocument",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "uploaddocument"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"accountNumber\": \"1000000001\",\n  \"name\": \"sample-value\",\n  \"type\": \"sample-value\",\n  \"isFile\": true,\n  \"value\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/uploaddocument",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "uploaddocument"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"accountNumber\": \"1000000001\",\n  \"name\": \"sample-value\",\n  \"type\": \"sample-value\",\n  \"isFile\": true,\n  \"value\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/uploaddocument",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "uploaddocument"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customerID\": \"ID-001\",\n  \"accountNumber\": \"1000000001\",\n  \"name\": \"sample-value\",\n  \"type\": \"sample-value\",\n  \"isFile\": true,\n  \"value\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/uploaddocument",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "uploaddocument"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "PUT /api/operations/v1/deletedocument",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"ID-001\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/operations/v1/deletedocument",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "operations",
                "v1",
                "deletedocument"
              ]
            },
            "description": "Operations endpoint\n\nSample Payload:\n{\n  \"id\": \"ID-001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/deletedocument",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "deletedocument"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/deletedocument",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "deletedocument"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/deletedocument",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "deletedocument"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"ID-001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/deletedocument",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "deletedocument"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/operations/v1/sendsms",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"cardId\": \"ID-001\",\n  \"phoneNumbers\": \"08000000000\",\n  \"message\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/operations/v1/sendsms",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "operations",
                "v1",
                "sendsms"
              ]
            },
            "description": "Operations endpoint\n\nSample Payload:\n{\n  \"cardId\": \"ID-001\",\n  \"phoneNumbers\": \"08000000000\",\n  \"message\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cardId\": \"ID-001\",\n  \"phoneNumbers\": \"08000000000\",\n  \"message\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/sendsms",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "sendsms"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cardId\": \"ID-001\",\n  \"phoneNumbers\": \"08000000000\",\n  \"message\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/sendsms",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "sendsms"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cardId\": \"ID-001\",\n  \"phoneNumbers\": \"08000000000\",\n  \"message\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/sendsms",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "sendsms"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cardId\": \"ID-001\",\n  \"phoneNumbers\": \"08000000000\",\n  \"message\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/sendsms",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "sendsms"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/operations/v1/sendemail",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"tos\": \"sample-value\",\n  \"ccs\": \"sample-value\",\n  \"bccs\": \"sample-value\",\n  \"subject\": \"sample-value\",\n  \"body\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/operations/v1/sendemail",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "operations",
                "v1",
                "sendemail"
              ]
            },
            "description": "Operations endpoint\n\nSample Payload:\n{\n  \"tos\": \"sample-value\",\n  \"ccs\": \"sample-value\",\n  \"bccs\": \"sample-value\",\n  \"subject\": \"sample-value\",\n  \"body\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tos\": \"sample-value\",\n  \"ccs\": \"sample-value\",\n  \"bccs\": \"sample-value\",\n  \"subject\": \"sample-value\",\n  \"body\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/sendemail",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "sendemail"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tos\": \"sample-value\",\n  \"ccs\": \"sample-value\",\n  \"bccs\": \"sample-value\",\n  \"subject\": \"sample-value\",\n  \"body\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/sendemail",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "sendemail"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tos\": \"sample-value\",\n  \"ccs\": \"sample-value\",\n  \"bccs\": \"sample-value\",\n  \"subject\": \"sample-value\",\n  \"body\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/sendemail",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "sendemail"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tos\": \"sample-value\",\n  \"ccs\": \"sample-value\",\n  \"bccs\": \"sample-value\",\n  \"subject\": \"sample-value\",\n  \"body\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/operations/v1/sendemail",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "operations",
                    "v1",
                    "sendemail"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Postings",
      "description": "Postings endpoints",
      "item": [
        {
          "name": "POST /api/postings/v1/closeaccount",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"closureReason\": \"sample-value\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/postings/v1/closeaccount",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "postings",
                "v1",
                "closeaccount"
              ]
            },
            "description": "Postings endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"closureReason\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"closureReason\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/closeaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "closeaccount"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"closureReason\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/closeaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "closeaccount"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"closureReason\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/closeaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "closeaccount"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"accountNumber\": \"1000000001\",\n  \"closureReason\": \"sample-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/closeaccount",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "closeaccount"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/postings/v1/posttransaction",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"debitAccount\": \"sample-value\",\n  \"creditAccount\": \"sample-value\",\n  \"amount\": 1,\n  \"feeCharge\": 1,\n  \"feeIncomeGL\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"narration\": \"sample-value\",\n  \"unplaceLienAfterPosting\": true,\n  \"lienReferenceNumber\": \"REF-001\",\n  \"merchant\": \"sample-value\",\n  \"postingsTransactionType\": 1,\n  \"additionalMetadata\": \"sample-value\",\n  \"entries\": \"sample-value\",\n  \"branchCode\": \"sample-value\",\n  \"entryCode\": \"sample-value\",\n  \"accountNumber\": \"1000000001\",\n  \"recordType\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"amlApprovalReference\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/postings/v1/posttransaction",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "postings",
                "v1",
                "posttransaction"
              ]
            },
            "description": "Post a debit and credit pair. When Fraud Copilot AML screening holds the request, retry the unchanged payload after staff approval with amlApprovalReference.\n\nAfter an AML_HOLD response, keep the original payload unchanged and send the approved amlApprovalReference. The release reference is one-time use."
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccount\": \"sample-value\",\n  \"creditAccount\": \"sample-value\",\n  \"amount\": 1,\n  \"feeCharge\": 1,\n  \"feeIncomeGL\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"narration\": \"sample-value\",\n  \"unplaceLienAfterPosting\": true,\n  \"lienReferenceNumber\": \"REF-001\",\n  \"merchant\": \"sample-value\",\n  \"postingsTransactionType\": 1,\n  \"additionalMetadata\": \"sample-value\",\n  \"entries\": \"sample-value\",\n  \"branchCode\": \"sample-value\",\n  \"entryCode\": \"sample-value\",\n  \"accountNumber\": \"1000000001\",\n  \"recordType\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/posttransaction",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "posttransaction"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "202 Fraud Copilot AML hold",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccount\": \"sample-value\",\n  \"creditAccount\": \"sample-value\",\n  \"amount\": 1,\n  \"feeCharge\": 1,\n  \"feeIncomeGL\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"narration\": \"sample-value\",\n  \"unplaceLienAfterPosting\": true,\n  \"lienReferenceNumber\": \"REF-001\",\n  \"merchant\": \"sample-value\",\n  \"postingsTransactionType\": 1,\n  \"additionalMetadata\": \"sample-value\",\n  \"entries\": \"sample-value\",\n  \"branchCode\": \"sample-value\",\n  \"entryCode\": \"sample-value\",\n  \"accountNumber\": \"1000000001\",\n  \"recordType\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/posttransaction",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "posttransaction"
                  ]
                },
                "description": "Post a debit and credit pair. When Fraud Copilot AML screening holds the request, retry the unchanged payload after staff approval with amlApprovalReference.\n\nAfter an AML_HOLD response, keep the original payload unchanged and send the approved amlApprovalReference. The release reference is one-time use."
              },
              "status": "Fraud Copilot AML hold",
              "code": 202,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": false,\n  \"message\": \"Transaction held for Fraud Copilot AML review. No funds moved.\",\n  \"data\": {\n    \"statusCode\": \"AML_HOLD\",\n    \"amlHold\": true,\n    \"approvalId\": 842,\n    \"amlApprovalReference\": \"AML-26caaadad76043d596bd\",\n    \"reason\": \"Fraud Copilot AML rule matched. Authorized staff approval is required.\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccount\": \"sample-value\",\n  \"creditAccount\": \"sample-value\",\n  \"amount\": 1,\n  \"feeCharge\": 1,\n  \"feeIncomeGL\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"narration\": \"sample-value\",\n  \"unplaceLienAfterPosting\": true,\n  \"lienReferenceNumber\": \"REF-001\",\n  \"merchant\": \"sample-value\",\n  \"postingsTransactionType\": 1,\n  \"additionalMetadata\": \"sample-value\",\n  \"entries\": \"sample-value\",\n  \"branchCode\": \"sample-value\",\n  \"entryCode\": \"sample-value\",\n  \"accountNumber\": \"1000000001\",\n  \"recordType\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/posttransaction",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "posttransaction"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccount\": \"sample-value\",\n  \"creditAccount\": \"sample-value\",\n  \"amount\": 1,\n  \"feeCharge\": 1,\n  \"feeIncomeGL\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"narration\": \"sample-value\",\n  \"unplaceLienAfterPosting\": true,\n  \"lienReferenceNumber\": \"REF-001\",\n  \"merchant\": \"sample-value\",\n  \"postingsTransactionType\": 1,\n  \"additionalMetadata\": \"sample-value\",\n  \"entries\": \"sample-value\",\n  \"branchCode\": \"sample-value\",\n  \"entryCode\": \"sample-value\",\n  \"accountNumber\": \"1000000001\",\n  \"recordType\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/posttransaction",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "posttransaction"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccount\": \"sample-value\",\n  \"creditAccount\": \"sample-value\",\n  \"amount\": 1,\n  \"feeCharge\": 1,\n  \"feeIncomeGL\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"narration\": \"sample-value\",\n  \"unplaceLienAfterPosting\": true,\n  \"lienReferenceNumber\": \"REF-001\",\n  \"merchant\": \"sample-value\",\n  \"postingsTransactionType\": 1,\n  \"additionalMetadata\": \"sample-value\",\n  \"entries\": \"sample-value\",\n  \"branchCode\": \"sample-value\",\n  \"entryCode\": \"sample-value\",\n  \"accountNumber\": \"1000000001\",\n  \"recordType\": 1,\n  \"referenceNumber\": \"REF-001\",\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/posttransaction",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "posttransaction"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/postings/v1/post",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/postings/v1/post",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "postings",
                "v1",
                "post"
              ]
            },
            "description": "Post balanced multi-entry transactions. When Fraud Copilot AML screening holds the request, retry the unchanged payload after staff approval with amlApprovalReference.\n\nAfter an AML_HOLD response, keep the original payload unchanged and send the approved amlApprovalReference. The release reference is one-time use."
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/post",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "post"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "202 Fraud Copilot AML hold",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/post",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "post"
                  ]
                },
                "description": "Post balanced multi-entry transactions. When Fraud Copilot AML screening holds the request, retry the unchanged payload after staff approval with amlApprovalReference.\n\nAfter an AML_HOLD response, keep the original payload unchanged and send the approved amlApprovalReference. The release reference is one-time use."
              },
              "status": "Fraud Copilot AML hold",
              "code": 202,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": false,\n  \"message\": \"Transaction held for Fraud Copilot AML review. No funds moved.\",\n  \"data\": {\n    \"statusCode\": \"AML_HOLD\",\n    \"amlHold\": true,\n    \"approvalId\": 842,\n    \"amlApprovalReference\": \"AML-26caaadad76043d596bd\",\n    \"reason\": \"Fraud Copilot AML rule matched. Authorized staff approval is required.\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/post",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "post"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/post",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "post"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/post",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "post"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/postings/v1/reversetransaction",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/postings/v1/reversetransaction",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "postings",
                "v1",
                "reversetransaction"
              ]
            },
            "description": "Postings endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/reversetransaction",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "reversetransaction"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/reversetransaction",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "reversetransaction"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/reversetransaction",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "reversetransaction"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/postings/v1/reversetransaction",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "postings",
                    "v1",
                    "reversetransaction"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Product",
      "description": "Product endpoints",
      "item": [
        {
          "name": "GET /api/product/v1/searchproducts",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/product/v1/searchproducts",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "product",
                "v1",
                "searchproducts"
              ]
            },
            "description": "Product endpoint\n\nSample Payload:\n{\n  \"code\": 1,\n  \"type\": \"sample-value\",\n  \"category\": \"sample-value\",\n  \"status\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/product/v1/searchproducts",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "product",
                    "v1",
                    "searchproducts"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/product/v1/searchproducts",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "product",
                    "v1",
                    "searchproducts"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/product/v1/searchproducts",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "product",
                    "v1",
                    "searchproducts"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Report",
      "description": "Report endpoints",
      "item": [
        {
          "name": "GET /api/report/v1/requestcustomeraccountstatement",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/report/v1/requestcustomeraccountstatement",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "report",
                "v1",
                "requestcustomeraccountstatement"
              ]
            },
            "description": "Report endpoint\n\nSample Payload:\n{\n  \"accountNumber\": \"1000000001\",\n  \"financialDateFrom\": \"2026-01-01\",\n  \"financialDateTo\": \"2026-01-01\",\n  \"fileExportFormat\": 1,\n  \"transactionID\": \"ID-001\",\n  \"postingReferenceNumber\": \"REF-001\",\n  \"reference\": \"REF-001\",\n  \"entryCode\": \"sample-value\",\n  \"batchCode\": \"sample-value\",\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"branchCode\": \"sample-value\",\n  \"accountOfficerCode\": \"sample-value\",\n  \"productCode\": \"sample-value\",\n  \"excludeClosedAccounts\": true,\n  \"excludeFullyPaidInstallments\": true,\n  \"repaymentStatus\": 1,\n  \"useCurrentFinancialDate\": true,\n  \"financialDate\": \"2026-01-01\",\n  \"loanAccountNumber\": \"1000000001\",\n  \"employeeID\": \"ID-001\",\n  \"accountOfficerStaffID\": \"ID-001\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/requestcustomeraccountstatement",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "requestcustomeraccountstatement"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/requestcustomeraccountstatement",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "requestcustomeraccountstatement"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/requestcustomeraccountstatement",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "requestcustomeraccountstatement"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/report/v1/exportcustomerstatement",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/report/v1/exportcustomerstatement",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "report",
                "v1",
                "exportcustomerstatement"
              ]
            },
            "description": "Report endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/exportcustomerstatement",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "exportcustomerstatement"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/exportcustomerstatement",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "exportcustomerstatement"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/exportcustomerstatement",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "exportcustomerstatement"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/report/v1/gettransactionreceipt",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/report/v1/gettransactionreceipt",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "report",
                "v1",
                "gettransactionreceipt"
              ]
            },
            "description": "Report endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/gettransactionreceipt",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "gettransactionreceipt"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/gettransactionreceipt",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "gettransactionreceipt"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/gettransactionreceipt",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "gettransactionreceipt"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/report/v1/requestcustomeraccounthistoryreport",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/report/v1/requestcustomeraccounthistoryreport",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "report",
                "v1",
                "requestcustomeraccounthistoryreport"
              ]
            },
            "description": "Report endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/requestcustomeraccounthistoryreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "requestcustomeraccounthistoryreport"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/requestcustomeraccounthistoryreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "requestcustomeraccounthistoryreport"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/requestcustomeraccounthistoryreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "requestcustomeraccounthistoryreport"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/report/v1/gettransactioncalloverreport",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/report/v1/gettransactioncalloverreport",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "report",
                "v1",
                "gettransactioncalloverreport"
              ]
            },
            "description": "Report endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/gettransactioncalloverreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "gettransactioncalloverreport"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/gettransactioncalloverreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "gettransactioncalloverreport"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/gettransactioncalloverreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "gettransactioncalloverreport"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/report/v1/getloanexpectationreport",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/report/v1/getloanexpectationreport",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "report",
                "v1",
                "getloanexpectationreport"
              ]
            },
            "description": "Report endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/getloanexpectationreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "getloanexpectationreport"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/getloanexpectationreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "getloanexpectationreport"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/getloanexpectationreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "getloanexpectationreport"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/report/v1/getloantrackingreport",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/report/v1/getloantrackingreport",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "report",
                "v1",
                "getloantrackingreport"
              ]
            },
            "description": "Report endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/getloantrackingreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "getloantrackingreport"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/getloantrackingreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "getloantrackingreport"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/getloantrackingreport",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "getloantrackingreport"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/report/v1/getsavingsaccrualhistory",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/report/v1/getsavingsaccrualhistory",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "report",
                "v1",
                "getsavingsaccrualhistory"
              ]
            },
            "description": "Report endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/getsavingsaccrualhistory",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "getsavingsaccrualhistory"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/getsavingsaccrualhistory",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "getsavingsaccrualhistory"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/report/v1/getsavingsaccrualhistory",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "report",
                    "v1",
                    "getsavingsaccrualhistory"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        }
      ]
    },
    {
      "name": "Transfer",
      "description": "Transfer endpoints",
      "item": [
        {
          "name": "GET /api/transfer/v1/banks",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/transfer/v1/banks",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "transfer",
                "v1",
                "banks"
              ]
            },
            "description": "Transfer endpoint\n\nSample Payload:\n{\n  \"provider\": \"ID-001\",\n  \"destinationAccountNumber\": \"1000000001\",\n  \"destinationInstitutionCode\": \"sample-value\",\n  \"amount\": 1,\n  \"sourceAccountNumber\": \"1000000001\",\n  \"accountNumber\": \"1000000001\",\n  \"debitAccount\": \"sample-value\",\n  \"creditAccount\": \"sample-value\",\n  \"feeCharge\": 1,\n  \"feeIncomeGL\": \"sample-value\",\n  \"reference\": \"REF-001\",\n  \"narration\": \"sample-value\",\n  \"unplaceLienAfterPosting\": true,\n  \"lienReferenceNumber\": \"REF-001\",\n  \"merchant\": \"sample-value\",\n  \"postingsTransactionType\": 1,\n  \"additionalMetadata\": \"sample-value\",\n  \"targetAccountNumber\": \"1000000001\",\n  \"targetAccountName\": \"sample-value\",\n  \"targetBankVerificationNumber\": \"sample-value\",\n  \"authorizationCode\": \"sample-value\",\n  \"billerId\": \"ID-001\",\n  \"transactionId\": \"ID-001\",\n  \"channelCode\": \"sample-value\",\n  \"nameEnquiryRef\": \"sample-value\",\n  \"originatorAccountNumber\": \"1000000001\",\n  \"originatorAccountName\": \"sample-value\",\n  \"originatorBankVerificationNumber\": \"sample-value\",\n  \"originatorKycLevel\": 1,\n  \"beneficiaryAccountNumber\": \"1000000001\",\n  \"beneficiaryAccountName\": \"sample-value\",\n  \"beneficiaryBankVerificationNumber\": \"sample-value\",\n  \"beneficiaryBankName\": \"sample-value\",\n  \"beneficiaryKycLevel\": 1,\n  \"transactionReference\": \"REF-001\",\n  \"fee\": 1,\n  \"originatorNarration\": \"sample-value\",\n  \"transactionLocation\": \"sample-value\",\n  \"beneficiaryNarration\": \"sample-value\",\n  \"transactionRef\": \"sample-value\",\n  \"apiRequestRef\": \"sample-value\",\n  \"referenceNumber\": \"REF-001\",\n  \"requestingAccountNumber\": \"1000000001\",\n  \"paymentReference\": \"REF-001\",\n  \"postingReference\": \"REF-001\",\n  \"transferStatus\": 1,\n  \"startDate\": \"2026-01-01\",\n  \"endDate\": \"2026-01-01\",\n  \"pageNumber\": 1,\n  \"pageSize\": 1,\n  \"sortColumn\": \"sample-value\",\n  \"direction\": \"sample-value\"\n}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/banks",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "banks"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/banks",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "banks"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/banks",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "banks"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/transfer/v1/nameenquiry",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/transfer/v1/nameenquiry",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "transfer",
                "v1",
                "nameenquiry"
              ]
            },
            "description": "Transfer endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/nameenquiry",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "nameenquiry"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/nameenquiry",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "nameenquiry"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/nameenquiry",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "nameenquiry"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "GET /api/transfer/v1/nameenquiry/local",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/transfer/v1/nameenquiry/local",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "transfer",
                "v1",
                "nameenquiry",
                "local"
              ]
            },
            "description": "Transfer endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/nameenquiry/local",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "nameenquiry",
                    "local"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/nameenquiry/local",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "nameenquiry",
                    "local"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/nameenquiry/local",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "nameenquiry",
                    "local"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        },
        {
          "name": "POST /api/transfer/v1/balanceenquiry",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/transfer/v1/balanceenquiry",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "transfer",
                "v1",
                "balanceenquiry"
              ]
            },
            "description": "Transfer endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/balanceenquiry",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "balanceenquiry"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/balanceenquiry",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "balanceenquiry"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/balanceenquiry",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "balanceenquiry"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/balanceenquiry",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "balanceenquiry"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/transfer/v1/localfundtransfer",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"debitAccount\": \"1000000001\",\n  \"creditAccount\": \"1000000002\",\n  \"amount\": 5000,\n  \"narration\": \"Local transfer\",\n  \"postingsTransactionType\": 3,\n  \"amlApprovalReference\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/transfer/v1/localfundtransfer",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "transfer",
                "v1",
                "localfundtransfer"
              ]
            },
            "description": "Local transfer. When Fraud Copilot AML screening holds the request, retry the unchanged payload after staff approval with amlApprovalReference.\n\nAfter an AML_HOLD response, keep the original payload unchanged and send the approved amlApprovalReference. The release reference is one-time use."
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccount\": \"1000000001\",\n  \"creditAccount\": \"1000000002\",\n  \"amount\": 5000,\n  \"narration\": \"Local transfer\",\n  \"postingsTransactionType\": 3,\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/localfundtransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "localfundtransfer"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "202 Fraud Copilot AML hold",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccount\": \"1000000001\",\n  \"creditAccount\": \"1000000002\",\n  \"amount\": 5000,\n  \"narration\": \"Local transfer\",\n  \"postingsTransactionType\": 3,\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/localfundtransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "localfundtransfer"
                  ]
                },
                "description": "Local transfer. When Fraud Copilot AML screening holds the request, retry the unchanged payload after staff approval with amlApprovalReference.\n\nAfter an AML_HOLD response, keep the original payload unchanged and send the approved amlApprovalReference. The release reference is one-time use."
              },
              "status": "Fraud Copilot AML hold",
              "code": 202,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": false,\n  \"message\": \"Transaction held for Fraud Copilot AML review. No funds moved.\",\n  \"data\": {\n    \"statusCode\": \"AML_HOLD\",\n    \"amlHold\": true,\n    \"approvalId\": 842,\n    \"amlApprovalReference\": \"AML-26caaadad76043d596bd\",\n    \"reason\": \"Fraud Copilot AML rule matched. Authorized staff approval is required.\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccount\": \"1000000001\",\n  \"creditAccount\": \"1000000002\",\n  \"amount\": 5000,\n  \"narration\": \"Local transfer\",\n  \"postingsTransactionType\": 3,\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/localfundtransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "localfundtransfer"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccount\": \"1000000001\",\n  \"creditAccount\": \"1000000002\",\n  \"amount\": 5000,\n  \"narration\": \"Local transfer\",\n  \"postingsTransactionType\": 3,\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/localfundtransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "localfundtransfer"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"debitAccount\": \"1000000001\",\n  \"creditAccount\": \"1000000002\",\n  \"amount\": 5000,\n  \"narration\": \"Local transfer\",\n  \"postingsTransactionType\": 3,\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/localfundtransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "localfundtransfer"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/transfer/v1/outwardtransfer",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"nameEnquiryRef\": \"NE-123\",\n  \"originatorAccountNumber\": \"1000000001\",\n  \"originatorAccountName\": \"John Doe\",\n  \"beneficiaryAccountNumber\": \"0000014575\",\n  \"beneficiaryAccountName\": \"Test Beneficiary\",\n  \"destinationInstitutionCode\": \"TSTBNK\",\n  \"beneficiaryBankName\": \"Test Bank\",\n  \"transactionReference\": \"TX-123-UNIQUE\",\n  \"amount\": 1000,\n  \"originatorNarration\": \"Transfer\",\n  \"beneficiaryNarration\": \"Transfer\",\n  \"amlApprovalReference\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/transfer/v1/outwardtransfer",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "transfer",
                "v1",
                "outwardtransfer"
              ]
            },
            "description": "Outward transfer. When Fraud Copilot AML screening holds the request, the gateway is not called. Retry the unchanged payload after staff approval with amlApprovalReference.\n\nAfter an AML_HOLD response, keep the original payload unchanged and send the approved amlApprovalReference. The release reference is one-time use."
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"nameEnquiryRef\": \"NE-123\",\n  \"originatorAccountNumber\": \"1000000001\",\n  \"originatorAccountName\": \"John Doe\",\n  \"beneficiaryAccountNumber\": \"0000014575\",\n  \"beneficiaryAccountName\": \"Test Beneficiary\",\n  \"destinationInstitutionCode\": \"TSTBNK\",\n  \"beneficiaryBankName\": \"Test Bank\",\n  \"transactionReference\": \"TX-123-UNIQUE\",\n  \"amount\": 1000,\n  \"originatorNarration\": \"Transfer\",\n  \"beneficiaryNarration\": \"Transfer\",\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/outwardtransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "outwardtransfer"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "202 Fraud Copilot AML hold",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"nameEnquiryRef\": \"NE-123\",\n  \"originatorAccountNumber\": \"1000000001\",\n  \"originatorAccountName\": \"John Doe\",\n  \"beneficiaryAccountNumber\": \"0000014575\",\n  \"beneficiaryAccountName\": \"Test Beneficiary\",\n  \"destinationInstitutionCode\": \"TSTBNK\",\n  \"beneficiaryBankName\": \"Test Bank\",\n  \"transactionReference\": \"TX-123-UNIQUE\",\n  \"amount\": 1000,\n  \"originatorNarration\": \"Transfer\",\n  \"beneficiaryNarration\": \"Transfer\",\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/outwardtransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "outwardtransfer"
                  ]
                },
                "description": "Outward transfer. When Fraud Copilot AML screening holds the request, the gateway is not called. Retry the unchanged payload after staff approval with amlApprovalReference.\n\nAfter an AML_HOLD response, keep the original payload unchanged and send the approved amlApprovalReference. The release reference is one-time use."
              },
              "status": "Fraud Copilot AML hold",
              "code": 202,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": false,\n  \"message\": \"Transaction held for Fraud Copilot AML review. No funds moved.\",\n  \"data\": {\n    \"statusCode\": \"AML_HOLD\",\n    \"amlHold\": true,\n    \"approvalId\": 842,\n    \"amlApprovalReference\": \"AML-26caaadad76043d596bd\",\n    \"reason\": \"Fraud Copilot AML rule matched. Authorized staff approval is required.\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"nameEnquiryRef\": \"NE-123\",\n  \"originatorAccountNumber\": \"1000000001\",\n  \"originatorAccountName\": \"John Doe\",\n  \"beneficiaryAccountNumber\": \"0000014575\",\n  \"beneficiaryAccountName\": \"Test Beneficiary\",\n  \"destinationInstitutionCode\": \"TSTBNK\",\n  \"beneficiaryBankName\": \"Test Bank\",\n  \"transactionReference\": \"TX-123-UNIQUE\",\n  \"amount\": 1000,\n  \"originatorNarration\": \"Transfer\",\n  \"beneficiaryNarration\": \"Transfer\",\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/outwardtransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "outwardtransfer"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"nameEnquiryRef\": \"NE-123\",\n  \"originatorAccountNumber\": \"1000000001\",\n  \"originatorAccountName\": \"John Doe\",\n  \"beneficiaryAccountNumber\": \"0000014575\",\n  \"beneficiaryAccountName\": \"Test Beneficiary\",\n  \"destinationInstitutionCode\": \"TSTBNK\",\n  \"beneficiaryBankName\": \"Test Bank\",\n  \"transactionReference\": \"TX-123-UNIQUE\",\n  \"amount\": 1000,\n  \"originatorNarration\": \"Transfer\",\n  \"beneficiaryNarration\": \"Transfer\",\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/outwardtransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "outwardtransfer"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"nameEnquiryRef\": \"NE-123\",\n  \"originatorAccountNumber\": \"1000000001\",\n  \"originatorAccountName\": \"John Doe\",\n  \"beneficiaryAccountNumber\": \"0000014575\",\n  \"beneficiaryAccountName\": \"Test Beneficiary\",\n  \"destinationInstitutionCode\": \"TSTBNK\",\n  \"beneficiaryBankName\": \"Test Bank\",\n  \"transactionReference\": \"TX-123-UNIQUE\",\n  \"amount\": 1000,\n  \"originatorNarration\": \"Transfer\",\n  \"beneficiaryNarration\": \"Transfer\",\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/outwardtransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "outwardtransfer"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "POST /api/transfer/v1/fundstransfer",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://{{baseUrl}}/api/transfer/v1/fundstransfer",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "transfer",
                "v1",
                "fundstransfer"
              ]
            },
            "description": "Outward transfer alias. When Fraud Copilot AML screening holds the request, the gateway is not called. Retry the unchanged payload after staff approval with amlApprovalReference.\n\nAfter an AML_HOLD response, keep the original payload unchanged and send the approved amlApprovalReference. The release reference is one-time use."
          },
          "response": [
            {
              "name": "200 Request processed successfully",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/fundstransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "fundstransfer"
                  ]
                }
              },
              "status": "Request processed successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "202 Fraud Copilot AML hold",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/fundstransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "fundstransfer"
                  ]
                },
                "description": "Outward transfer alias. When Fraud Copilot AML screening holds the request, the gateway is not called. Retry the unchanged payload after staff approval with amlApprovalReference.\n\nAfter an AML_HOLD response, keep the original payload unchanged and send the approved amlApprovalReference. The release reference is one-time use."
              },
              "status": "Fraud Copilot AML hold",
              "code": 202,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": false,\n  \"message\": \"Transaction held for Fraud Copilot AML review. No funds moved.\",\n  \"data\": {\n    \"statusCode\": \"AML_HOLD\",\n    \"amlHold\": true,\n    \"approvalId\": 842,\n    \"amlApprovalReference\": \"AML-26caaadad76043d596bd\",\n    \"reason\": \"Fraud Copilot AML rule matched. Authorized staff approval is required.\"\n  }\n}"
            },
            {
              "name": "401 Unauthorized (authenticate first)",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/fundstransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "fundstransfer"
                  ]
                }
              },
              "status": "Unauthorized (authenticate first)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "400 Validation error or invalid payload",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/fundstransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "fundstransfer"
                  ]
                }
              },
              "status": "Validation error or invalid payload",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            },
            {
              "name": "500 Unexpected server error",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amlApprovalReference\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/fundstransfer",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "fundstransfer"
                  ]
                }
              },
              "status": "Unexpected server error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"id\": \"sample-id\",\n    \"referenceNumber\": \"REF-001\",\n    \"createdAt\": \"2026-03-01T12:00:00Z\"\n  }\n}"
            }
          ]
        },
        {
          "name": "GET /api/transfer/v1/tsq",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/transfer/v1/tsq",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "transfer",
                "v1",
                "tsq"
              ]
            },
            "description": "Transfer endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
          },
          "response": [
            {
              "name": "200 Status retrieved",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/tsq",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "tsq"
                  ]
                }
              },
              "status": "Status retrieved",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
            },
            {
              "name": "404 Record not found",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/tsq",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "tsq"
                  ]
                }
              },
              "status": "Record not found",
              "code": 404,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
            },
            {
              "name": "400 Missing/invalid query reference",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/tsq",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "tsq"
                  ]
                }
              },
              "status": "Missing/invalid query reference",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
            }
          ]
        },
        {
          "name": "GET /api/transfer/v1/tsq/local",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/transfer/v1/tsq/local",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "transfer",
                "v1",
                "tsq",
                "local"
              ]
            },
            "description": "Transfer endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
          },
          "response": [
            {
              "name": "200 Status retrieved",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/tsq/local",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "tsq",
                    "local"
                  ]
                }
              },
              "status": "Status retrieved",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
            },
            {
              "name": "404 Record not found",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/tsq/local",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "tsq",
                    "local"
                  ]
                }
              },
              "status": "Record not found",
              "code": 404,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
            },
            {
              "name": "400 Missing/invalid query reference",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/tsq/local",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "tsq",
                    "local"
                  ]
                }
              },
              "status": "Missing/invalid query reference",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": {\n    \"referenceNumber\": \"TX-123-UNIQUE\",\n    \"processingStatus\": \"Processed\",\n    \"isSuccessful\": true\n  }\n}"
            }
          ]
        },
        {
          "name": "GET /api/transfer/v1/search",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{bearerToken}}",
                "type": "text"
              },
              {
                "key": "request-reference",
                "value": "{{requestReference}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{baseUrl}}/api/transfer/v1/search",
              "protocol": "https",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "transfer",
                "v1",
                "search"
              ]
            },
            "description": "Transfer endpoint\n\nSample Payload:\n{}\n\nSample Response:\n{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
          },
          "response": [
            {
              "name": "200 Data returned successfully",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Data returned successfully",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "401 Unauthorized (missing/invalid bearer token)",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Unauthorized (missing/invalid bearer token)",
              "code": 401,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            },
            {
              "name": "400 Validation error or invalid query",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{bearerToken}}",
                    "type": "text"
                  },
                  {
                    "key": "request-reference",
                    "value": "{{requestReference}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{baseUrl}}/api/transfer/v1/search",
                  "protocol": "https",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "api",
                    "transfer",
                    "v1",
                    "search"
                  ]
                }
              },
              "status": "Validation error or invalid query",
              "code": 400,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "body": "{\n  \"status\": true,\n  \"message\": \"Request successful\",\n  \"data\": [\n    {\n      \"id\": \"sample-id\",\n      \"referenceNumber\": \"REF-001\"\n    }\n  ]\n}"
            }
          ]
        }
      ]
    }
  ]
}
