{
  "info": {
    "name": "YembiPay API",
    "description": "Universal payment settlement infrastructure for the Caribbean diaspora. Accepts any payment method \u2014 USDC, USDT, ACH, wire, credit/debit cards \u2014 and settles to local Caribbean bank accounts with real-time OFAC screening, GENIUS Act compliance, AML monitoring, and per-transaction compliance certificates.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "base_url",
      "value": "https://sandbox.yembipay.com"
    },
    {
      "key": "api_key",
      "value": "your-api-key-here"
    },
    {
      "key": "idempotency_key",
      "value": "replace-with-a-unique-key-per-settlement"
    }
  ],
  "auth": {
    "type": "apikey",
    "apikey": [
      {
        "key": "key",
        "value": "X-API-Key"
      },
      {
        "key": "value",
        "value": "{{api_key}}"
      },
      {
        "key": "in",
        "value": "header"
      }
    ]
  },
  "item": [
    {
      "name": "KYC Webhooks",
      "item": [
        {
          "name": "Sumsub Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/kyc/sumsub/webhook",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kyc",
                "sumsub",
                "webhook"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "KYC/KYB",
      "item": [
        {
          "name": "Start Verification",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/kyc/verify",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kyc",
                "verify"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Complete Verification Endpoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/kyc/{verification_id}/complete",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kyc",
                "{verification_id}",
                "complete"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Check Verification",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/kyc/status/{recipient_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kyc",
                "status",
                "{recipient_id}"
              ]
            }
          }
        },
        {
          "name": "Create Sumsub Applicant",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/kyc/sumsub/applicant",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kyc",
                "sumsub",
                "applicant"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "OFAC SDN",
      "item": [
        {
          "name": "Ingest Sdn List",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/ofac/ingest",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "ofac",
                "ingest"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Sdn Stats",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/ofac/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "ofac",
                "stats"
              ]
            }
          }
        },
        {
          "name": "Screen Name",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/ofac/screen/name",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "ofac",
                "screen",
                "name"
              ]
            }
          }
        },
        {
          "name": "Deep Screen Wallet",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/ofac/screen/wallet/{wallet_address}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "ofac",
                "screen",
                "wallet",
                "{wallet_address}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "Other",
      "item": [
        {
          "name": "Health",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "health"
              ]
            }
          }
        },
        {
          "name": "Deep Health",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/health/deep",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "health",
                "deep"
              ]
            }
          }
        },
        {
          "name": "Worker Health",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/health/workers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "health",
                "workers"
              ]
            }
          }
        },
        {
          "name": "Reset Sandbox",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/sandbox/reset",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "sandbox",
                "reset"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "System Version V1",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/system/version",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "system",
                "version"
              ]
            }
          }
        },
        {
          "name": "System Metrics",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/system/metrics",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "system",
                "metrics"
              ]
            }
          }
        },
        {
          "name": "Public Certificate Verification",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/verify/{cert_hash}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "verify",
                "{cert_hash}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "ZK audit proofs",
      "item": [
        {
          "name": "Generate Proof",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/proofs/generate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "proofs",
                "generate"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Verify Proof Endpoint",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/proofs/verify/{proof_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "proofs",
                "verify",
                "{proof_id}"
              ]
            }
          }
        },
        {
          "name": "List Org Proofs",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/proofs/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "proofs",
                "{org_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "accounting",
      "item": [
        {
          "name": "Connect Accounting",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/accounting/connect",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "accounting",
                "connect"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get Accounting Connection",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/accounting/connection/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "accounting",
                "connection",
                "{org_id}"
              ]
            }
          }
        },
        {
          "name": "Sync Invoices Endpoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/accounting/invoices/sync",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "accounting",
                "invoices",
                "sync"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Reconcile Endpoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/accounting/reconcile/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "accounting",
                "reconcile",
                "{org_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Reconciliation Status",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/accounting/reconciliation/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "accounting",
                "reconciliation",
                "{org_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "aml",
      "item": [
        {
          "name": "Run Aml Check",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/aml/check",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "aml",
                "check"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Alerts",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/aml/alerts/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "aml",
                "alerts",
                "{org_id}"
              ]
            }
          }
        },
        {
          "name": "Review Alert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/aml/alerts/{alert_id}/review",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "aml",
                "alerts",
                "{alert_id}",
                "review"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create Sar Filing",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/aml/sar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "aml",
                "sar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Submit Sar Filing",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/aml/sar/{sar_id}/submit",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "aml",
                "sar",
                "{sar_id}",
                "submit"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Sar Filings",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/aml/sar/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "aml",
                "sar",
                "{org_id}"
              ]
            }
          }
        },
        {
          "name": "Set Velocity Limits",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/aml/velocity-limits",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "aml",
                "velocity-limits"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "approvals",
      "item": [
        {
          "name": "Create Approval",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/approvals",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "approvals"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Pending Approvals",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/approvals/pending/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "approvals",
                "pending",
                "{org_id}"
              ]
            }
          }
        },
        {
          "name": "List Votes",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/approvals/{request_id}/votes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "approvals",
                "{request_id}",
                "votes"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "audit-log",
      "item": [
        {
          "name": "Get Audit Log",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/audit-log/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "audit-log",
                "{org_id}"
              ]
            }
          }
        },
        {
          "name": "Count Audit Entries",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/audit-log/{org_id}/count",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "audit-log",
                "{org_id}",
                "count"
              ]
            }
          }
        },
        {
          "name": "Verify Audit Integrity",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/audit-log/{org_id}/integrity",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "audit-log",
                "{org_id}",
                "integrity"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "batch payroll",
      "item": [
        {
          "name": "Run Batch Payroll",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Idempotency-Key",
                "value": "{{idempotency_key}}",
                "description": "",
                "disabled": true
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/batch/payroll",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "batch",
                "payroll"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Batches",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/batch",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "batch"
              ]
            }
          }
        },
        {
          "name": "Get Batch",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/batch/{batch_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "batch",
                "{batch_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "billing",
      "item": [
        {
          "name": "Get Usage",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/billing/usage/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "usage",
                "{org_id}"
              ]
            }
          }
        },
        {
          "name": "Generate Invoice",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/invoices/generate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "invoices",
                "generate"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Issue Invoice",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/invoices/{invoice_id}/issue",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "invoices",
                "{invoice_id}",
                "issue"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Mark Paid",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/invoices/{invoice_id}/paid",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "invoices",
                "{invoice_id}",
                "paid"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Invoices",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/billing/invoices/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "invoices",
                "{org_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "caribbean-offramp",
      "item": [
        {
          "name": "Estimate Caribbean Offramp",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/caribbean/estimate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "caribbean",
                "estimate"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Settle Caribbean Offramp",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Idempotency-Key",
                "value": "{{idempotency_key}}",
                "description": "Unique key to prevent duplicate settlements",
                "disabled": true
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/caribbean/settle",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "caribbean",
                "settle"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Download Certificate",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/caribbean/certificate/{cert_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "caribbean",
                "certificate",
                "{cert_id}"
              ]
            }
          }
        },
        {
          "name": "Verify Certificate Endpoint",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/caribbean/certificate/{cert_id}/verify",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "caribbean",
                "certificate",
                "{cert_id}",
                "verify"
              ]
            }
          }
        },
        {
          "name": "List Supported Corridors",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/caribbean/corridors",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "caribbean",
                "corridors"
              ]
            }
          }
        },
        {
          "name": "List Settlements",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/caribbean/settlements",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "caribbean",
                "settlements"
              ]
            }
          }
        },
        {
          "name": "Get Settlement",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/caribbean/settlements/{settlement_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "caribbean",
                "settlements",
                "{settlement_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "compliance",
      "item": [
        {
          "name": "Get Compliance Status",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/compliance/{wallet_address}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "compliance",
                "{wallet_address}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "consumer-bff",
      "item": [
        {
          "name": "Request Otp Endpoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/consumer/auth/request-otp",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "consumer",
                "auth",
                "request-otp"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Verify Otp Endpoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/consumer/auth/verify-otp",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "consumer",
                "auth",
                "verify-otp"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Me",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "authorization",
                "value": "",
                "description": "",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{base_url}}/consumer/me",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "consumer",
                "me"
              ]
            }
          }
        },
        {
          "name": "List Recipients",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "authorization",
                "value": "",
                "description": "",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{base_url}}/consumer/recipients",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "consumer",
                "recipients"
              ]
            }
          }
        },
        {
          "name": "Add Recipient",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "authorization",
                "value": "",
                "description": "",
                "disabled": true
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/consumer/recipients",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "consumer",
                "recipients"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Quote",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "authorization",
                "value": "",
                "description": "",
                "disabled": true
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/consumer/quote",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "consumer",
                "quote"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create Transfer",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Idempotency-Key",
                "value": "{{idempotency_key}}",
                "description": "",
                "disabled": false
              },
              {
                "key": "authorization",
                "value": "",
                "description": "",
                "disabled": true
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/consumer/transfers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "consumer",
                "transfers"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Transfers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "authorization",
                "value": "",
                "description": "",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{base_url}}/consumer/transfers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "consumer",
                "transfers"
              ]
            }
          }
        },
        {
          "name": "Get Transfer",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "authorization",
                "value": "",
                "description": "",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{base_url}}/consumer/transfers/{transfer_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "consumer",
                "transfers",
                "{transfer_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "dashboard",
      "item": [
        {
          "name": "Org Summary",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/dashboard/{org_id}/summary",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "dashboard",
                "{org_id}",
                "summary"
              ]
            }
          }
        },
        {
          "name": "Compliance Report",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/dashboard/{org_id}/compliance-report",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "dashboard",
                "{org_id}",
                "compliance-report"
              ]
            }
          }
        },
        {
          "name": "Volume By Country",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/dashboard/{org_id}/volume-by-country",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "dashboard",
                "{org_id}",
                "volume-by-country"
              ]
            }
          }
        },
        {
          "name": "Rebate History",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/dashboard/{org_id}/rebates",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "dashboard",
                "{org_id}",
                "rebates"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "fees",
      "item": [
        {
          "name": "Get Fee Estimate",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/fees/estimate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "fees",
                "estimate"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "kill-switch",
      "item": [
        {
          "name": "Freeze Wallet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/kill-switch/freeze",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kill-switch",
                "freeze"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Lift Freeze",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/kill-switch/unfreeze/{freeze_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kill-switch",
                "unfreeze",
                "{freeze_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Check Wallet",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/kill-switch/check/{wallet_address}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kill-switch",
                "check",
                "{wallet_address}"
              ]
            }
          }
        },
        {
          "name": "List Freezes",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/kill-switch/freezes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kill-switch",
                "freezes"
              ]
            }
          }
        },
        {
          "name": "Activate Global Pause",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/kill-switch/pause",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kill-switch",
                "pause"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Deactivate Global Pause",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/kill-switch/resume/{pause_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kill-switch",
                "resume",
                "{pause_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "System Status",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/kill-switch/status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "kill-switch",
                "status"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "leads",
      "item": [
        {
          "name": "Create Lead",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/leads",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "leads"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "ledger",
      "item": [
        {
          "name": "Get Transfer Status",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/ledger/entry/{entry_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "ledger",
                "entry",
                "{entry_id}"
              ]
            }
          }
        },
        {
          "name": "Get Org Ledger",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/ledger/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "ledger",
                "{org_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "organizations",
      "item": [
        {
          "name": "Create Organization",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/orgs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "orgs"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get Organization",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/orgs/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "orgs",
                "{org_id}"
              ]
            }
          }
        },
        {
          "name": "Create Api Key",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/orgs/{org_id}/keys",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "orgs",
                "{org_id}",
                "keys"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Api Keys",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/orgs/{org_id}/keys",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "orgs",
                "{org_id}",
                "keys"
              ]
            }
          }
        },
        {
          "name": "Rotate Api Key",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/orgs/keys/{key_id}/rotate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "orgs",
                "keys",
                "{key_id}",
                "rotate"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Revoke Api Key",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/orgs/keys/{key_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "orgs",
                "keys",
                "{key_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "payroll schedules",
      "item": [
        {
          "name": "Create Payroll Schedule",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/schedules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "schedules"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get Schedules",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/schedules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "schedules"
              ]
            }
          }
        },
        {
          "name": "Pause Schedule",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/schedules/{schedule_id}/pause",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "schedules",
                "{schedule_id}",
                "pause"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Resume Schedule",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/schedules/{schedule_id}/resume",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "schedules",
                "{schedule_id}",
                "resume"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get Schedule",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/schedules/{schedule_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "schedules",
                "{schedule_id}"
              ]
            }
          }
        },
        {
          "name": "Update Schedule",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/schedules/{schedule_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "schedules",
                "{schedule_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Schedule",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/schedules/{schedule_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "schedules",
                "{schedule_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "plaid",
      "item": [
        {
          "name": "Create Plaid Link Token",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/plaid/link-token",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "plaid",
                "link-token"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Exchange Plaid Token",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/plaid/exchange",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "plaid",
                "exchange"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "recipient-portal",
      "item": [
        {
          "name": "Create Portal Token",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/portal/token",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "portal",
                "token"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Portal Me",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Portal-Token",
                "value": "",
                "description": "",
                "disabled": false
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/portal/me",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "portal",
                "me"
              ]
            }
          }
        },
        {
          "name": "Portal Payments",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Portal-Token",
                "value": "",
                "description": "",
                "disabled": false
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/portal/payments",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "portal",
                "payments"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "recipients",
      "item": [
        {
          "name": "Create Recipient",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/recipients",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "recipients"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Recipients",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/recipients",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "recipients"
              ]
            }
          }
        },
        {
          "name": "Get Recipient",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/recipients/{recipient_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "recipients",
                "{recipient_id}"
              ]
            }
          }
        },
        {
          "name": "Update Recipient",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/recipients/{recipient_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "recipients",
                "{recipient_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Deactivate Recipient",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/recipients/{recipient_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "recipients",
                "{recipient_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "regulatory",
      "item": [
        {
          "name": "Regulatory Report",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/regulatory/report",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "regulatory",
                "report"
              ]
            }
          }
        },
        {
          "name": "Volume Status",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/regulatory/volume-status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "regulatory",
                "volume-status"
              ]
            }
          }
        },
        {
          "name": "Client Asset Segregation",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/regulatory/client-assets",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "regulatory",
                "client-assets"
              ]
            }
          }
        },
        {
          "name": "Verify Asset Segregation",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/regulatory/client-assets/verify",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "regulatory",
                "client-assets",
                "verify"
              ]
            }
          }
        },
        {
          "name": "Corridor Compliance Summary",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/regulatory/corridors/compliance",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "regulatory",
                "corridors",
                "compliance"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "task-quarantine",
      "item": [
        {
          "name": "List Task Quarantine",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/task-quarantine",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "task-quarantine"
              ]
            }
          }
        },
        {
          "name": "Get Task Quarantine",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/task-quarantine/{task_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "task-quarantine",
                "{task_id}"
              ]
            }
          }
        },
        {
          "name": "Replay Task Quarantine",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/task-quarantine/{task_id}/replay",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "task-quarantine",
                "{task_id}",
                "replay"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "transfers",
      "item": [
        {
          "name": "Initiate Transfer",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Idempotency-Key",
                "value": "{{idempotency_key}}",
                "description": "",
                "disabled": true
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/transfers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "transfers"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Transfers",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/transfers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "transfers"
              ]
            }
          }
        },
        {
          "name": "Get Transfer",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/transfers/{transfer_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "transfers",
                "{transfer_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "treasury",
      "item": [
        {
          "name": "Get Balance",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/treasury/balance/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "treasury",
                "balance",
                "{org_id}"
              ]
            }
          }
        },
        {
          "name": "Check Funds",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/treasury/check-funds/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "treasury",
                "check-funds",
                "{org_id}"
              ]
            }
          }
        },
        {
          "name": "List Transactions",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/treasury/transactions/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "treasury",
                "transactions",
                "{org_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "users",
      "item": [
        {
          "name": "Invite User",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/users/invite",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "users",
                "invite"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Users",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/users/{org_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "users",
                "{org_id}"
              ]
            }
          }
        },
        {
          "name": "Update Role",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/users/{user_id}/role",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "users",
                "{user_id}",
                "role"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Deactivate User",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/users/{user_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "users",
                "{user_id}"
              ]
            }
          }
        },
        {
          "name": "Login",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/users/login",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "users",
                "login"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Check Permission",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/users/check-permission",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "users",
                "check-permission"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "v2-settlements",
      "item": [
        {
          "name": "Initiate a universal settlement",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Idempotency-Key",
                "value": "{{idempotency_key}}",
                "description": "A caller-generated key that permanently identifies this settlement request within the authenticated organization.",
                "disabled": false
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/settle",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "settle"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Poll settlement status",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v2/settle/{settlement_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "settle",
                "{settlement_id}"
              ]
            }
          }
        },
        {
          "name": "Get fee + FX breakdown",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/estimate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "estimate"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List supported payment methods",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v2/payment-methods",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "payment-methods"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "wallets",
      "item": [
        {
          "name": "Create Wallet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/wallets",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "wallets"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Wallets",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/wallets",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "wallets"
              ]
            }
          }
        },
        {
          "name": "Get Wallet",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/wallets/{wallet_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "wallets",
                "{wallet_id}"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "webhooks",
      "item": [
        {
          "name": "List Webhooks",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/webhooks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks"
              ]
            }
          }
        },
        {
          "name": "Register Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhooks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get Webhook",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/webhooks/{webhook_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks",
                "{webhook_id}"
              ]
            }
          }
        },
        {
          "name": "Update Webhook",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhooks/{webhook_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks",
                "{webhook_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Webhook",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/webhooks/{webhook_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks",
                "{webhook_id}"
              ]
            }
          }
        },
        {
          "name": "List Deliveries",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/v1/webhooks/{webhook_id}/deliveries",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks",
                "{webhook_id}",
                "deliveries"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "webhooks-inbound",
      "item": [
        {
          "name": "Stripe Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/webhooks/stripe",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "webhooks",
                "stripe"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Modern Treasury Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v2/webhooks/modern-treasury",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v2",
                "webhooks",
                "modern-treasury"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    }
  ]
}