{
  "info": {
    "name": "Infinia API",
    "description": "All Infinia API products in a single collection. Full documentation at https://docs.infiniaweb.com.\n\nSet `basicAuthUsername` / `basicAuthPassword` (e.g. via the Infinia Sandbox environment) to your API credentials. Requests target the sandbox by default; to use production, change the `baseUrl` collection variable to https://app2.infiniaweb.com/infinia_api.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "name": "Accounts",
      "item": [
        {
          "name": "Accounts",
          "description": "",
          "item": [
            {
              "id": "f3aba5e5-9a36-4507-9e42-bfd5b59003c1",
              "name": "Create Account",
              "request": {
                "name": "Create Account",
                "description": {
                  "content": "Create a new account.\n\n### Account status and lifecycle\n\nThe `status` field reflects where the account is in its lifecycle. Possible values are:\n\n- `PROVISIONING`: the account is being set up and is not yet operational.\n- `ACTIVE`: the account is operational.\n- `SUSPENDED`: operations are temporarily disabled (e.g. compliance, fraud, legal hold or review).\n- `CLOSED`: terminal state — the account has been closed.\n- `REJECTED`: terminal state — onboarding was deliberately denied (KYC/KYB/compliance).\n\nDepending on the rail, a new account may be returned as `ACTIVE` right away, or start in `PROVISIONING` and move to `ACTIVE` once setup finishes. The `status` in this endpoint's response is the account's initial state.\n\nEvery time the status changes afterwards, a webhook is sent as an HTTP `POST` to the `status_callback_url` provided in the request body. The body of that webhook is the account object, using the same schema as the [Get Account Details](ref:v1_2_get_account_) response. No webhook is sent for the initial state, nor when an update leaves the status unchanged.\n\n### Testing in sandbox\n\nAccount creation is currently synchronous: the account's status is returned directly in this endpoint's response. In the sandbox, create the account with `label` set to `SIMULATE_STATUS_<STATUS>` (e.g. `SIMULATE_STATUS_SUSPENDED`) to have it created directly in that status, or to `SIMULATE_PROVISIONING_FLOW` to simulate the `PROVISIONING` → `ACTIVE` transition and its webhook.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"currency\": \"EURC_ETH\",\n  \"country\": \"MX\",\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"status_callback_url\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"owner_id\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "a108fd15-f932-41d1-bd06-059dd55522d0",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"currency\": \"EURC_ETH\",\n  \"country\": \"MX\",\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"status_callback_url\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"owner_id\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<integer>\",\n    \"bank\": \"<string>\",\n    \"currency\": \"EURC_BASE\",\n    \"country\": \"BR\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"status\": \"ACTIVE\",\n    \"label\": \"<string>\",\n    \"idempotency_key\": \"<string>\",\n    \"company_id\": \"<integer>\",\n    \"account_number\": \"<string>\",\n    \"enabled\": true,\n    \"account_type\": \"<string>\",\n    \"document_number\": \"<string>\",\n    \"document_type\": \"<string>\",\n    \"funding_instructions\": {\n      \"type\": \"fiat\",\n      \"account_number\": \"<string>\",\n      \"bank_name\": \"<string>\",\n      \"bank_code\": \"<string>\",\n      \"br_code\": \"<string>\",\n      \"breb_key\": \"<string>\",\n      \"ted_brl\": {\n        \"bank_code\": \"<string>\",\n        \"branch_number\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"account_type\": \"<string>\",\n        \"beneficiary_name\": \"<string>\",\n        \"beneficiary_document\": \"<string>\"\n      },\n      \"pix_key_brl\": {\n        \"pix_key\": \"<string>\"\n      },\n      \"br_code_brl\": {\n        \"br_code\": \"<string>\"\n      },\n      \"fps_gbp\": {\n        \"account_number\": \"<string>\",\n        \"sort_code\": \"<string>\",\n        \"account_holder_name\": \"<string>\"\n      },\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\"\n    },\n    \"balance_details\": {\n      \"total\": \"<number>\",\n      \"available\": \"<number>\",\n      \"last_update\": \"<dateTime>\"\n    },\n    \"is_virtual_account\": false,\n    \"webhook_url\": \"<string>\",\n    \"status_callback_url\": \"<string>\",\n    \"owner_id\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "baea01d8-bdac-4a70-9b17-84e1a7d4283d",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"currency\": \"EURC_ETH\",\n  \"country\": \"MX\",\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"status_callback_url\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"owner_id\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "720d2945-81d1-4ae1-b145-1225bddf706e",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"currency\": \"EURC_ETH\",\n  \"country\": \"MX\",\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"status_callback_url\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"owner_id\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "d34fc3c5-dff3-4398-a83b-3f6bd9c40429",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"currency\": \"EURC_ETH\",\n  \"country\": \"MX\",\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"status_callback_url\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"owner_id\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "6d44f3c6-c47a-4e4a-980d-057b29256431",
              "name": "List Accounts",
              "request": {
                "name": "List Accounts",
                "description": {
                  "content": "Retrieves a paginated list of accounts.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "country",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "currency",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Default: 1",
                        "type": "text/plain"
                      },
                      "key": "page_number",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Default: 50",
                        "type": "text/plain"
                      },
                      "key": "page_size",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "include_child_companies",
                      "value": "false"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Idempotency key",
                        "type": "text/plain"
                      },
                      "key": "idempotency_key",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Search using the account ID; ignores other parameters",
                        "type": "text/plain"
                      },
                      "key": "account_id",
                      "value": "<integer>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Search using the account owner ID",
                        "type": "text/plain"
                      },
                      "key": "owner_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Search across account label, alias, and num_cta. If the value is an integer, also matches the account ID exactly.",
                        "type": "text/plain"
                      },
                      "key": "query",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "b0982a8d-3c98-43a3-b049-f1c6a004ce1f",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search using the account ID; ignores other parameters",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search using the account owner ID",
                            "type": "text/plain"
                          },
                          "key": "owner_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search across account label, alias, and num_cta. If the value is an integer, also matches the account ID exactly.",
                            "type": "text/plain"
                          },
                          "key": "query",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<integer>\",\n      \"bank\": \"<string>\",\n      \"currency\": \"CLP\",\n      \"country\": \"UY\",\n      \"created_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\",\n      \"status\": \"ACTIVE\",\n      \"label\": \"<string>\",\n      \"idempotency_key\": \"<string>\",\n      \"company_id\": \"<integer>\",\n      \"account_number\": \"<string>\",\n      \"enabled\": true,\n      \"account_type\": \"<string>\",\n      \"document_number\": \"<string>\",\n      \"document_type\": \"<string>\",\n      \"funding_instructions\": {\n        \"type\": \"fiat\",\n        \"account_number\": \"<string>\",\n        \"bank_name\": \"<string>\",\n        \"bank_code\": \"<string>\",\n        \"br_code\": \"<string>\",\n        \"breb_key\": \"<string>\",\n        \"ted_brl\": {\n          \"bank_code\": \"<string>\",\n          \"branch_number\": \"<string>\",\n          \"account_number\": \"<string>\",\n          \"account_type\": \"<string>\",\n          \"beneficiary_name\": \"<string>\",\n          \"beneficiary_document\": \"<string>\"\n        },\n        \"pix_key_brl\": {\n          \"pix_key\": \"<string>\"\n        },\n        \"br_code_brl\": {\n          \"br_code\": \"<string>\"\n        },\n        \"fps_gbp\": {\n          \"account_number\": \"<string>\",\n          \"sort_code\": \"<string>\",\n          \"account_holder_name\": \"<string>\"\n        },\n        \"iban\": \"<string>\",\n        \"bic\": \"<string>\"\n      },\n      \"balance_details\": {\n        \"total\": \"<number>\",\n        \"available\": \"<number>\",\n        \"last_update\": \"<dateTime>\"\n      },\n      \"is_virtual_account\": false,\n      \"webhook_url\": \"<string>\",\n      \"status_callback_url\": \"<string>\",\n      \"owner_id\": \"<string>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"bank\": \"<string>\",\n      \"currency\": \"SGD\",\n      \"country\": \"PY\",\n      \"created_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\",\n      \"status\": \"ACTIVE\",\n      \"label\": \"<string>\",\n      \"idempotency_key\": \"<string>\",\n      \"company_id\": \"<integer>\",\n      \"account_number\": \"<string>\",\n      \"enabled\": true,\n      \"account_type\": \"<string>\",\n      \"document_number\": \"<string>\",\n      \"document_type\": \"<string>\",\n      \"funding_instructions\": {\n        \"type\": \"fiat\",\n        \"account_number\": \"<string>\",\n        \"bank_name\": \"<string>\",\n        \"bank_code\": \"<string>\",\n        \"br_code\": \"<string>\",\n        \"breb_key\": \"<string>\",\n        \"ted_brl\": {\n          \"bank_code\": \"<string>\",\n          \"branch_number\": \"<string>\",\n          \"account_number\": \"<string>\",\n          \"account_type\": \"<string>\",\n          \"beneficiary_name\": \"<string>\",\n          \"beneficiary_document\": \"<string>\"\n        },\n        \"pix_key_brl\": {\n          \"pix_key\": \"<string>\"\n        },\n        \"br_code_brl\": {\n          \"br_code\": \"<string>\"\n        },\n        \"fps_gbp\": {\n          \"account_number\": \"<string>\",\n          \"sort_code\": \"<string>\",\n          \"account_holder_name\": \"<string>\"\n        },\n        \"iban\": \"<string>\",\n        \"bic\": \"<string>\"\n      },\n      \"balance_details\": {\n        \"total\": \"<number>\",\n        \"available\": \"<number>\",\n        \"last_update\": \"<dateTime>\"\n      },\n      \"is_virtual_account\": false,\n      \"webhook_url\": \"<string>\",\n      \"status_callback_url\": \"<string>\",\n      \"owner_id\": \"<string>\"\n    }\n  ],\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "380dd166-a3ae-45eb-9fb2-130d9b885fae",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search using the account ID; ignores other parameters",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search using the account owner ID",
                            "type": "text/plain"
                          },
                          "key": "owner_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search across account label, alias, and num_cta. If the value is an integer, also matches the account ID exactly.",
                            "type": "text/plain"
                          },
                          "key": "query",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "91e550b5-559c-4ac8-b947-2a37786b24c5",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search using the account ID; ignores other parameters",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search using the account owner ID",
                            "type": "text/plain"
                          },
                          "key": "owner_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search across account label, alias, and num_cta. If the value is an integer, also matches the account ID exactly.",
                            "type": "text/plain"
                          },
                          "key": "query",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "1299b1db-fccc-4237-b301-d5e7298e5679",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search using the account ID; ignores other parameters",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search using the account owner ID",
                            "type": "text/plain"
                          },
                          "key": "owner_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search across account label, alias, and num_cta. If the value is an integer, also matches the account ID exactly.",
                            "type": "text/plain"
                          },
                          "key": "query",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "b254df54-3cb5-44e6-bc45-ae90aa44eede",
              "name": "Get Account Details",
              "request": {
                "name": "Get Account Details",
                "description": {
                  "content": "Retrieve details of an account.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    ":account_id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "account_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "e5338662-8a96-4ddd-bd46-adf635b80ca4",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<integer>\",\n    \"bank\": \"<string>\",\n    \"currency\": \"EURC_BASE\",\n    \"country\": \"BR\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"status\": \"ACTIVE\",\n    \"label\": \"<string>\",\n    \"idempotency_key\": \"<string>\",\n    \"company_id\": \"<integer>\",\n    \"account_number\": \"<string>\",\n    \"enabled\": true,\n    \"account_type\": \"<string>\",\n    \"document_number\": \"<string>\",\n    \"document_type\": \"<string>\",\n    \"funding_instructions\": {\n      \"type\": \"fiat\",\n      \"account_number\": \"<string>\",\n      \"bank_name\": \"<string>\",\n      \"bank_code\": \"<string>\",\n      \"br_code\": \"<string>\",\n      \"breb_key\": \"<string>\",\n      \"ted_brl\": {\n        \"bank_code\": \"<string>\",\n        \"branch_number\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"account_type\": \"<string>\",\n        \"beneficiary_name\": \"<string>\",\n        \"beneficiary_document\": \"<string>\"\n      },\n      \"pix_key_brl\": {\n        \"pix_key\": \"<string>\"\n      },\n      \"br_code_brl\": {\n        \"br_code\": \"<string>\"\n      },\n      \"fps_gbp\": {\n        \"account_number\": \"<string>\",\n        \"sort_code\": \"<string>\",\n        \"account_holder_name\": \"<string>\"\n      },\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\"\n    },\n    \"balance_details\": {\n      \"total\": \"<number>\",\n      \"available\": \"<number>\",\n      \"last_update\": \"<dateTime>\"\n    },\n    \"is_virtual_account\": false,\n    \"webhook_url\": \"<string>\",\n    \"status_callback_url\": \"<string>\",\n    \"owner_id\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "af4590ee-d6af-4477-8f99-1e85ebaf7265",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "70477313-6467-4aaf-8baf-05f3e747c82d",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "58e5bccb-e88f-44c8-8cba-bddfe5633dd3",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "659f0f45-b93c-46f6-9268-87404a976c07",
              "name": "Update Account",
              "request": {
                "name": "Update Account",
                "description": {
                  "content": "Partially update an existing account. \n\nOnly the fields provided in the request body will be modified; all other fields will remain unchanged.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    ":account_id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "account_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "PATCH",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"enabled\": \"<boolean>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "7634e33a-c56b-4810-b314-214878c9f9f6",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"enabled\": \"<boolean>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<integer>\",\n    \"bank\": \"<string>\",\n    \"currency\": \"EURC_BASE\",\n    \"country\": \"BR\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"status\": \"ACTIVE\",\n    \"label\": \"<string>\",\n    \"idempotency_key\": \"<string>\",\n    \"company_id\": \"<integer>\",\n    \"account_number\": \"<string>\",\n    \"enabled\": true,\n    \"account_type\": \"<string>\",\n    \"document_number\": \"<string>\",\n    \"document_type\": \"<string>\",\n    \"funding_instructions\": {\n      \"type\": \"fiat\",\n      \"account_number\": \"<string>\",\n      \"bank_name\": \"<string>\",\n      \"bank_code\": \"<string>\",\n      \"br_code\": \"<string>\",\n      \"breb_key\": \"<string>\",\n      \"ted_brl\": {\n        \"bank_code\": \"<string>\",\n        \"branch_number\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"account_type\": \"<string>\",\n        \"beneficiary_name\": \"<string>\",\n        \"beneficiary_document\": \"<string>\"\n      },\n      \"pix_key_brl\": {\n        \"pix_key\": \"<string>\"\n      },\n      \"br_code_brl\": {\n        \"br_code\": \"<string>\"\n      },\n      \"fps_gbp\": {\n        \"account_number\": \"<string>\",\n        \"sort_code\": \"<string>\",\n        \"account_holder_name\": \"<string>\"\n      },\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\"\n    },\n    \"balance_details\": {\n      \"total\": \"<number>\",\n      \"available\": \"<number>\",\n      \"last_update\": \"<dateTime>\"\n    },\n    \"is_virtual_account\": false,\n    \"webhook_url\": \"<string>\",\n    \"status_callback_url\": \"<string>\",\n    \"owner_id\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "72978760-9f36-4847-8931-dceb3043b8ca",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"enabled\": \"<boolean>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "efc5e5dd-9ce6-473e-9236-14314ff514f9",
                  "name": "Not Found",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"enabled\": \"<boolean>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "a53bcede-3424-496a-a235-f17f4f0c82fe",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"enabled\": \"<boolean>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "f98b3e36-7fdc-4f92-9eae-7bbf472e3996",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"label\": \"<string>\",\n  \"products\": [\n    \"INTERNAL_TRANSFER\",\n    \"PAYOUTS\"\n  ],\n  \"webhook_url\": \"<string>\",\n  \"enabled\": \"<boolean>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "b7f4af65-53e6-4361-883c-a3232e43212a",
              "name": "Get Account Limits & Usage",
              "request": {
                "name": "Get Account Limits & Usage",
                "description": {
                  "content": "Returns the current monthly volume used and configured limit for the account.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    ":account_id",
                    "limits",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<integer>",
                      "key": "account_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "9561f63d-5f36-4933-bf18-95455cd82e61",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        "limits",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<integer>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"monthly\": {\n      \"used\": \"<number>\",\n      \"resets_at\": \"<dateTime>\",\n      \"limit\": \"<number>\",\n      \"remaining\": \"<number>\"\n    }\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "54bc221b-d602-44ce-af9f-f71b8d8db329",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        "limits",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<integer>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "efd1df6d-0429-4768-8392-9fbd0e367a0b",
                  "name": "Not Found",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        "limits",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<integer>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Not Found",
                  "code": 404,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "1eea4cd9-5476-488a-989c-63aa09a5a46a",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        "limits",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<integer>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "30504900-86ec-4811-864f-378fb05bd7ce",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":account_id",
                        "limits",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<integer>",
                          "key": "account_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "cba2a588-091f-4ab7-97e0-261d52490985",
              "name": "List Account Movements",
              "request": {
                "name": "List Account Movements",
                "description": {
                  "content": "Retrieves a paginated list of debit/credit movements.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "movements",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "If provided, only return movements for this specific account ID.",
                        "type": "text/plain"
                      },
                      "key": "account_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If set to true, include movements from accounts owned by any child companies of the authenticated company. Default: false.",
                        "type": "text/plain"
                      },
                      "key": "include_child_companies",
                      "value": "false"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "ISO 8601 timestamp (UTC). Only include movements on or after this time.",
                        "type": "text/plain"
                      },
                      "key": "date_from",
                      "value": "4306-46-25T26:49:91"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "ISO 8601 timestamp (UTC). Only include movements on or before this time.",
                        "type": "text/plain"
                      },
                      "key": "date_to",
                      "value": "0906-45-37T61:14:10"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Page index (1-based). Results start from page 1 by default.",
                        "type": "text/plain"
                      },
                      "key": "page_number",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Maximum number of movements to return per page. Defaults to 50.",
                        "type": "text/plain"
                      },
                      "key": "page_size",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If provided, only return the movement with this ID.",
                        "type": "text/plain"
                      },
                      "key": "movement_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If provided, filter movements by this company ID.",
                        "type": "text/plain"
                      },
                      "key": "company_id",
                      "value": "<integer>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If provided, only return movements with this operation type. (This can only be one of PAYOUT,PAYOUT_REFUND,INTERNAL_TRANSFER,INTERNAL_TRANSFER_REFUND,PAYIN,PAYIN_REFUND,PAYIN_REFUND_BOUNCE,CREDIT,CREDIT_REFUND,CREDIT_REFUND_BOUNCE,DEBIT,FEE,TAX)",
                        "type": "text/plain"
                      },
                      "key": "operation_type",
                      "value": "PAYOUT"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If provided, only return movements with this operation ID.",
                        "type": "text/plain"
                      },
                      "key": "operation_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If provided, only return movements with this voucher ID.",
                        "type": "text/plain"
                      },
                      "key": "voucher_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": " (This can only be one of BRL,BRLA,MXN,ARS,COP,CLP,BOB,PYG,SGD,PEN,EUR,GBP,USD,USDT,USDC,UYU,USDC_POL,USDT_POL,EURC_BASE,USDC_BASE,USDT_BASE,USDC_ETH,USDT_ETH,EURC_ETH,USDC_TEMPO,USDT_TEMPO,EURC_TEMPO,BRLA_ETH,BRLA_POL,BRLA_BASE,TGBP_ETH,TGBP_POL,TGBP_BASE)",
                        "type": "text/plain"
                      },
                      "key": "currency",
                      "value": "USDT_BASE"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": " (This can only be one of BR,AR,CO,CL,BO,PY,SG,PE,MX,UY,US,EU,XX,GB)",
                        "type": "text/plain"
                      },
                      "key": "country",
                      "value": "GB"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "6464865b-b088-4802-b88c-e04f19ef0035",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements for this specific account ID.",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include movements from accounts owned by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or after this time.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "4306-46-25T26:49:91"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or before this time.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "0906-45-37T61:14:10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of movements to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return the movement with this ID.",
                            "type": "text/plain"
                          },
                          "key": "movement_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, filter movements by this company ID.",
                            "type": "text/plain"
                          },
                          "key": "company_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation type. (This can only be one of PAYOUT,PAYOUT_REFUND,INTERNAL_TRANSFER,INTERNAL_TRANSFER_REFUND,PAYIN,PAYIN_REFUND,PAYIN_REFUND_BOUNCE,CREDIT,CREDIT_REFUND,CREDIT_REFUND_BOUNCE,DEBIT,FEE,TAX)",
                            "type": "text/plain"
                          },
                          "key": "operation_type",
                          "value": "PAYOUT"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation ID.",
                            "type": "text/plain"
                          },
                          "key": "operation_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this voucher ID.",
                            "type": "text/plain"
                          },
                          "key": "voucher_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BRL,BRLA,MXN,ARS,COP,CLP,BOB,PYG,SGD,PEN,EUR,GBP,USD,USDT,USDC,UYU,USDC_POL,USDT_POL,EURC_BASE,USDC_BASE,USDT_BASE,USDC_ETH,USDT_ETH,EURC_ETH,USDC_TEMPO,USDT_TEMPO,EURC_TEMPO,BRLA_ETH,BRLA_POL,BRLA_BASE,TGBP_ETH,TGBP_POL,TGBP_BASE)",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "USDT_BASE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BR,AR,CO,CL,BO,PY,SG,PE,MX,UY,US,EU,XX,GB)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "GB"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"account_id\": \"<string>\",\n      \"company_id\": \"<string>\",\n      \"amount\": \"<number>\",\n      \"created_at\": \"<dateTime>\",\n      \"currency\": \"<string>\",\n      \"country\": \"<string>\",\n      \"balance\": \"<number>\",\n      \"description\": \"<string>\",\n      \"updated_at\": \"<dateTime>\",\n      \"third_party\": {\n        \"type\": \"FIAT\",\n        \"voucher_id\": \"<string>\",\n        \"source_reference\": \"<string>\",\n        \"bank_code\": \"<string>\",\n        \"bank_name\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"full_name\": \"<string>\",\n        \"document_number\": \"<string>\",\n        \"document_type\": \"<string>\"\n      },\n      \"operation\": {\n        \"type\": \"FEE\",\n        \"operation_id\": \"<string>\",\n        \"product\": \"PAYINS\"\n      },\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      },\n      \"claim_id\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"account_id\": \"<string>\",\n      \"company_id\": \"<string>\",\n      \"amount\": \"<number>\",\n      \"created_at\": \"<dateTime>\",\n      \"currency\": \"<string>\",\n      \"country\": \"<string>\",\n      \"balance\": \"<number>\",\n      \"description\": \"<string>\",\n      \"updated_at\": \"<dateTime>\",\n      \"third_party\": {\n        \"type\": \"FIAT\",\n        \"voucher_id\": \"<string>\",\n        \"source_reference\": \"<string>\",\n        \"bank_code\": \"<string>\",\n        \"bank_name\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"full_name\": \"<string>\",\n        \"document_number\": \"<string>\",\n        \"document_type\": \"<string>\"\n      },\n      \"operation\": {\n        \"type\": \"CREDIT\",\n        \"operation_id\": \"<string>\",\n        \"product\": \"ACCOUNTS\"\n      },\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      },\n      \"claim_id\": \"<string>\"\n    }\n  ],\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "dfd7596e-799f-425f-954c-13b1538a2a52",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements for this specific account ID.",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include movements from accounts owned by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or after this time.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "4306-46-25T26:49:91"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or before this time.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "0906-45-37T61:14:10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of movements to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return the movement with this ID.",
                            "type": "text/plain"
                          },
                          "key": "movement_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, filter movements by this company ID.",
                            "type": "text/plain"
                          },
                          "key": "company_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation type. (This can only be one of PAYOUT,PAYOUT_REFUND,INTERNAL_TRANSFER,INTERNAL_TRANSFER_REFUND,PAYIN,PAYIN_REFUND,PAYIN_REFUND_BOUNCE,CREDIT,CREDIT_REFUND,CREDIT_REFUND_BOUNCE,DEBIT,FEE,TAX)",
                            "type": "text/plain"
                          },
                          "key": "operation_type",
                          "value": "PAYOUT"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation ID.",
                            "type": "text/plain"
                          },
                          "key": "operation_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this voucher ID.",
                            "type": "text/plain"
                          },
                          "key": "voucher_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BRL,BRLA,MXN,ARS,COP,CLP,BOB,PYG,SGD,PEN,EUR,GBP,USD,USDT,USDC,UYU,USDC_POL,USDT_POL,EURC_BASE,USDC_BASE,USDT_BASE,USDC_ETH,USDT_ETH,EURC_ETH,USDC_TEMPO,USDT_TEMPO,EURC_TEMPO,BRLA_ETH,BRLA_POL,BRLA_BASE,TGBP_ETH,TGBP_POL,TGBP_BASE)",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "USDT_BASE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BR,AR,CO,CL,BO,PY,SG,PE,MX,UY,US,EU,XX,GB)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "GB"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "32d1de2b-87f0-43e9-a494-ec8a44bc3d10",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements for this specific account ID.",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include movements from accounts owned by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or after this time.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "4306-46-25T26:49:91"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or before this time.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "0906-45-37T61:14:10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of movements to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return the movement with this ID.",
                            "type": "text/plain"
                          },
                          "key": "movement_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, filter movements by this company ID.",
                            "type": "text/plain"
                          },
                          "key": "company_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation type. (This can only be one of PAYOUT,PAYOUT_REFUND,INTERNAL_TRANSFER,INTERNAL_TRANSFER_REFUND,PAYIN,PAYIN_REFUND,PAYIN_REFUND_BOUNCE,CREDIT,CREDIT_REFUND,CREDIT_REFUND_BOUNCE,DEBIT,FEE,TAX)",
                            "type": "text/plain"
                          },
                          "key": "operation_type",
                          "value": "PAYOUT"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation ID.",
                            "type": "text/plain"
                          },
                          "key": "operation_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this voucher ID.",
                            "type": "text/plain"
                          },
                          "key": "voucher_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BRL,BRLA,MXN,ARS,COP,CLP,BOB,PYG,SGD,PEN,EUR,GBP,USD,USDT,USDC,UYU,USDC_POL,USDT_POL,EURC_BASE,USDC_BASE,USDT_BASE,USDC_ETH,USDT_ETH,EURC_ETH,USDC_TEMPO,USDT_TEMPO,EURC_TEMPO,BRLA_ETH,BRLA_POL,BRLA_BASE,TGBP_ETH,TGBP_POL,TGBP_BASE)",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "USDT_BASE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BR,AR,CO,CL,BO,PY,SG,PE,MX,UY,US,EU,XX,GB)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "GB"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "3c858bfb-1807-4bb7-b71c-31f1e9a86fb9",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements for this specific account ID.",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include movements from accounts owned by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or after this time.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "4306-46-25T26:49:91"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or before this time.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "0906-45-37T61:14:10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of movements to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return the movement with this ID.",
                            "type": "text/plain"
                          },
                          "key": "movement_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, filter movements by this company ID.",
                            "type": "text/plain"
                          },
                          "key": "company_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation type. (This can only be one of PAYOUT,PAYOUT_REFUND,INTERNAL_TRANSFER,INTERNAL_TRANSFER_REFUND,PAYIN,PAYIN_REFUND,PAYIN_REFUND_BOUNCE,CREDIT,CREDIT_REFUND,CREDIT_REFUND_BOUNCE,DEBIT,FEE,TAX)",
                            "type": "text/plain"
                          },
                          "key": "operation_type",
                          "value": "PAYOUT"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation ID.",
                            "type": "text/plain"
                          },
                          "key": "operation_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this voucher ID.",
                            "type": "text/plain"
                          },
                          "key": "voucher_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BRL,BRLA,MXN,ARS,COP,CLP,BOB,PYG,SGD,PEN,EUR,GBP,USD,USDT,USDC,UYU,USDC_POL,USDT_POL,EURC_BASE,USDC_BASE,USDT_BASE,USDC_ETH,USDT_ETH,EURC_ETH,USDC_TEMPO,USDT_TEMPO,EURC_TEMPO,BRLA_ETH,BRLA_POL,BRLA_BASE,TGBP_ETH,TGBP_POL,TGBP_BASE)",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "USDT_BASE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BR,AR,CO,CL,BO,PY,SG,PE,MX,UY,US,EU,XX,GB)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "GB"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "caf6986f-168d-4c76-8503-bcfc9731dc59",
              "name": "[Sandbox] Create Deposit",
              "request": {
                "name": "[Sandbox] Create Deposit",
                "description": {
                  "content": "Create a deposit. \nThis endpoint is only for testing purposes and works only in the sandbox environment.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "movements",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"account_id\": \"<string>\",\n  \"amount\": \"<number>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "3c5cabd6-88de-479f-93f5-1eb5fd1df050",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"account_id\": \"<string>\",\n  \"amount\": \"<number>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"account_id\": \"<string>\",\n    \"company_id\": \"<string>\",\n    \"amount\": \"<number>\",\n    \"created_at\": \"<dateTime>\",\n    \"currency\": \"<string>\",\n    \"country\": \"<string>\",\n    \"balance\": \"<number>\",\n    \"description\": \"<string>\",\n    \"updated_at\": \"<dateTime>\",\n    \"third_party\": {\n      \"type\": \"FIAT\",\n      \"voucher_id\": \"<string>\",\n      \"source_reference\": \"<string>\",\n      \"bank_code\": \"<string>\",\n      \"bank_name\": \"<string>\",\n      \"account_number\": \"<string>\",\n      \"full_name\": \"<string>\",\n      \"document_number\": \"<string>\",\n      \"document_type\": \"<string>\"\n    },\n    \"operation\": {\n      \"type\": \"PAYOUT\",\n      \"operation_id\": \"<string>\",\n      \"product\": \"ACCOUNTS\"\n    },\n    \"company\": {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"claim_id\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "d17425ce-469d-42ee-9d73-5142b4ad355b",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"account_id\": \"<string>\",\n  \"amount\": \"<number>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e3a0649a-2674-48f6-9107-f998330bda86",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"account_id\": \"<string>\",\n  \"amount\": \"<number>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "32d9adcb-7a48-4a56-9252-ef82956bc0b1",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"account_id\": \"<string>\",\n  \"amount\": \"<number>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "d5eb43e1-d758-4418-8096-3647448a35f8",
              "name": "Refund Deposit",
              "request": {
                "name": "Refund Deposit",
                "description": {
                  "content": "Create a refund for a deposit. Only deposit movements with `operation_type = CREDIT` are eligible. \n\nA refund may still fail after being initially marked as `SUCCESS`; in such cases, you'll receive a callback with `status = FAILED`. \n\nTo simulate a failed refund in the sandbox, create a deposit with `amount = 101` (see the `Create Deposit` endpoint for details).\n\nTo refund a Payin, use the `Create Refund` endpoint from Payins.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "movements",
                    "refund",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"movement_id\": \"<integer>\",\n  \"idempotency_key\": \"<string>\",\n  \"description\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "1a262f74-94b7-4524-a210-73c3f76d610c",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"movement_id\": \"<integer>\",\n  \"idempotency_key\": \"<string>\",\n  \"description\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"status\": \"PENDING\",\n    \"movement_id\": \"<integer>\",\n    \"updated_at\": \"<dateTime>\",\n    \"idempotency_key\": \"<string>\",\n    \"description\": \"<string>\",\n    \"debit_movement_id\": \"<integer>\",\n    \"bounce_movement_id\": \"<integer>\",\n    \"company\": {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"voucher_id\": \"<string>\",\n    \"failure_reason\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "5b6cc63b-3b53-4097-a045-f5d15dd7751c",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"movement_id\": \"<integer>\",\n  \"idempotency_key\": \"<string>\",\n  \"description\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8cb9c30c-0c59-418b-a80d-038aa9dd549a",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"movement_id\": \"<integer>\",\n  \"idempotency_key\": \"<string>\",\n  \"description\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "f4b74c0a-e216-4fc4-87d7-1e2c0f16fe86",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"movement_id\": \"<integer>\",\n  \"idempotency_key\": \"<string>\",\n  \"description\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "ad768ff0-fde1-4333-abcb-50a6437a670d",
              "name": "List Deposit Refunds",
              "request": {
                "name": "List Deposit Refunds",
                "description": {
                  "content": "Retrieve a list of deposit refunds.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "movements",
                    "refund",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "refund_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "date_from",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "date_to",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "page_number",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "page_size",
                      "value": "10"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "movement_id",
                      "value": "<integer>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "idempotency_key",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "include_child_companies",
                      "value": "false"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "cd2c54b4-3610-4891-b994-0e296dcde26d",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "refund_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "movement_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"status\": \"PENDING\",\n      \"movement_id\": \"<integer>\",\n      \"updated_at\": \"<dateTime>\",\n      \"idempotency_key\": \"<string>\",\n      \"description\": \"<string>\",\n      \"debit_movement_id\": \"<integer>\",\n      \"bounce_movement_id\": \"<integer>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      },\n      \"voucher_id\": \"<string>\",\n      \"failure_reason\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"status\": \"PENDING\",\n      \"movement_id\": \"<integer>\",\n      \"updated_at\": \"<dateTime>\",\n      \"idempotency_key\": \"<string>\",\n      \"description\": \"<string>\",\n      \"debit_movement_id\": \"<integer>\",\n      \"bounce_movement_id\": \"<integer>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      },\n      \"voucher_id\": \"<string>\",\n      \"failure_reason\": \"<string>\"\n    }\n  ],\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "cc06d92f-eaa9-47c8-85f3-1f15c782a915",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "refund_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "movement_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "f9687b84-29e3-4ae0-9552-f14b250e91e1",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "refund_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "movement_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "29063ee8-7ce1-4fa3-9cf8-11376ec3b3f9",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "movements",
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "refund_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "movement_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "FX Quotes",
          "description": "",
          "item": [
            {
              "id": "d4593daf-8d33-489c-852c-358087a4f818",
              "name": "List Quotes",
              "request": {
                "name": "List Quotes",
                "description": {
                  "content": "Retrieve a list of quote requests.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "internal-transfer",
                    "quote",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "Page index (1-based). Results start from page 1 by default.",
                        "type": "text/plain"
                      },
                      "key": "page_number",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Maximum number of quotes to return per page. Defaults to 50.",
                        "type": "text/plain"
                      },
                      "key": "page_size",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Only include quotes created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).",
                        "type": "text/plain"
                      },
                      "key": "date_from",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Only include quotes created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).",
                        "type": "text/plain"
                      },
                      "key": "date_to",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If set to true, include quotes initiated by any child companies of the authenticated company. Default: false.",
                        "type": "text/plain"
                      },
                      "key": "include_child_companies",
                      "value": "false"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "6c9eb8bf-a577-4153-9ff3-0dd3ec783412",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of quotes to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include quotes created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include quotes created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include quotes initiated by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"company_id\": \"<string>\",\n      \"source_amount\": \"<number>\",\n      \"status\": \"<string>\",\n      \"source_account_id\": \"<string>\",\n      \"target_account_id\": \"<string>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      },\n      \"source_account\": {\n        \"id\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"country\": \"<string>\",\n        \"company\": {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\"\n        }\n      },\n      \"target_account\": {\n        \"id\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"country\": \"<string>\",\n        \"company\": {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\"\n        }\n      },\n      \"external_id\": \"<string>\",\n      \"target_amount\": \"<number>\",\n      \"failure_reason\": \"<string>\",\n      \"rate\": \"<number>\",\n      \"expire_at\": \"<dateTime>\",\n      \"created_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\",\n      \"callback_url\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"company_id\": \"<string>\",\n      \"source_amount\": \"<number>\",\n      \"status\": \"<string>\",\n      \"source_account_id\": \"<string>\",\n      \"target_account_id\": \"<string>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      },\n      \"source_account\": {\n        \"id\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"country\": \"<string>\",\n        \"company\": {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\"\n        }\n      },\n      \"target_account\": {\n        \"id\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"country\": \"<string>\",\n        \"company\": {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\"\n        }\n      },\n      \"external_id\": \"<string>\",\n      \"target_amount\": \"<number>\",\n      \"failure_reason\": \"<string>\",\n      \"rate\": \"<number>\",\n      \"expire_at\": \"<dateTime>\",\n      \"created_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\",\n      \"callback_url\": \"<string>\"\n    }\n  ],\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "7e103161-51cc-4628-95f8-909e15626cd9",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of quotes to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include quotes created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include quotes created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include quotes initiated by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "de00b188-de10-4f1f-921b-43341cd7fb1b",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of quotes to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include quotes created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include quotes created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include quotes initiated by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "ca3018d8-c8d7-4a73-8a38-35fac39ac689",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of quotes to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include quotes created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include quotes created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `createdAt` field).",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include quotes initiated by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "92ae418e-6adf-420f-9c95-43afabc54bd6",
              "name": "Request FX Quote for Internal Transfer",
              "request": {
                "name": "Request FX Quote for Internal Transfer",
                "description": {
                  "content": "Create a quote for an internal transfer between different currencies. \n\nThe quote will be valid for a limited time. \n\nYou can then use the quote ID to execute the internal transfer.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "internal-transfer",
                    "quote",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"source_account_id\": \"<string>\",\n  \"target_account_id\": \"<string>\",\n  \"external_id\": \"<string>\",\n  \"source_amount\": \"<number>\",\n  \"target_amount\": \"<number>\",\n  \"requested_lock_time\": \"<integer>\",\n  \"callback_url\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "24640c36-3916-496a-aa13-34745dd68c4b",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"source_account_id\": \"<string>\",\n  \"target_account_id\": \"<string>\",\n  \"external_id\": \"<string>\",\n  \"source_amount\": \"<number>\",\n  \"target_amount\": \"<number>\",\n  \"requested_lock_time\": \"<integer>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"company_id\": \"<string>\",\n    \"source_amount\": \"<number>\",\n    \"status\": \"<string>\",\n    \"source_account_id\": \"<string>\",\n    \"target_account_id\": \"<string>\",\n    \"company\": {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"source_account\": {\n      \"id\": \"<string>\",\n      \"account_number\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"country\": \"<string>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      }\n    },\n    \"target_account\": {\n      \"id\": \"<string>\",\n      \"account_number\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"country\": \"<string>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      }\n    },\n    \"external_id\": \"<string>\",\n    \"target_amount\": \"<number>\",\n    \"failure_reason\": \"<string>\",\n    \"rate\": \"<number>\",\n    \"expire_at\": \"<dateTime>\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"callback_url\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "c0878cd7-9ab2-4738-aa67-fa9c445bf430",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"source_account_id\": \"<string>\",\n  \"target_account_id\": \"<string>\",\n  \"external_id\": \"<string>\",\n  \"source_amount\": \"<number>\",\n  \"target_amount\": \"<number>\",\n  \"requested_lock_time\": \"<integer>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "97f6ebd7-4dbb-4a0b-9fbd-0e5d786721be",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"source_account_id\": \"<string>\",\n  \"target_account_id\": \"<string>\",\n  \"external_id\": \"<string>\",\n  \"source_amount\": \"<number>\",\n  \"target_amount\": \"<number>\",\n  \"requested_lock_time\": \"<integer>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e9963070-6a93-4d6d-a53b-a97865bcebba",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"source_account_id\": \"<string>\",\n  \"target_account_id\": \"<string>\",\n  \"external_id\": \"<string>\",\n  \"source_amount\": \"<number>\",\n  \"target_amount\": \"<number>\",\n  \"requested_lock_time\": \"<integer>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "b469c506-8909-4421-b97e-41cae8395d4b",
              "name": "Get FX Quote Details for Internal Transfer",
              "request": {
                "name": "Get FX Quote Details for Internal Transfer",
                "description": {
                  "content": "Retrieve the details of a requested quote.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "internal-transfer",
                    "quote",
                    ":quote_id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "quote_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "bf50fca9-ea7b-46ab-b765-b2183bd4fe8c",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ":quote_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "quote_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"company_id\": \"<string>\",\n    \"source_amount\": \"<number>\",\n    \"status\": \"<string>\",\n    \"source_account_id\": \"<string>\",\n    \"target_account_id\": \"<string>\",\n    \"company\": {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"source_account\": {\n      \"id\": \"<string>\",\n      \"account_number\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"country\": \"<string>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      }\n    },\n    \"target_account\": {\n      \"id\": \"<string>\",\n      \"account_number\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"country\": \"<string>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      }\n    },\n    \"external_id\": \"<string>\",\n    \"target_amount\": \"<number>\",\n    \"failure_reason\": \"<string>\",\n    \"rate\": \"<number>\",\n    \"expire_at\": \"<dateTime>\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"callback_url\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "02f835f9-7652-44c6-b30c-e59b6a1f57e7",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ":quote_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "quote_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "5d00a51d-48ce-4517-9829-65d294069afb",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ":quote_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "quote_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "5fcec6e3-0def-4a84-8d9e-9a3755c05954",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        "quote",
                        ":quote_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "quote_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "Internal Transfers",
          "description": "",
          "item": [
            {
              "id": "e5ff9ff2-5c41-419b-a6fa-69d5a1f2d38a",
              "name": "List Internal Transfers",
              "request": {
                "name": "List Internal Transfers",
                "description": {
                  "content": "Retrieves a list of internal transfers.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "internal-transfer",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "Page index (1-based). Results start from page 1 by default.",
                        "type": "text/plain"
                      },
                      "key": "page_number",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Maximum number of transfers to return per page. Defaults to 50.",
                        "type": "text/plain"
                      },
                      "key": "page_size",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Only include transfers created on or after this timestamp. Must be ISO 8601 (UTC).",
                        "type": "text/plain"
                      },
                      "key": "date_from",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Only include transfers created on or before this timestamp. Must be ISO 8601 (UTC).",
                        "type": "text/plain"
                      },
                      "key": "date_to",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If set to true, also return transfers belonging to any child companies of the authenticated company. Default: false.",
                        "type": "text/plain"
                      },
                      "key": "include_child_companies",
                      "value": "false"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Source account currency",
                        "type": "text/plain"
                      },
                      "key": "source_currency",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Target account currency",
                        "type": "text/plain"
                      },
                      "key": "target_currency",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Filter by transfer status (PENDING, PROCESSING, SETTLING, COMPLETED, FAILED). (This can only be one of PENDING,PROCESSING,SETTLING,COMPLETED,FAILED)",
                        "type": "text/plain"
                      },
                      "key": "status",
                      "value": "FAILED"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Idempotency key.",
                        "type": "text/plain"
                      },
                      "key": "idempotency_key",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Internal tranfer ID. If passed it will ignore the rest of theparameters, except for 'include_child_companies'.",
                        "type": "text/plain"
                      },
                      "key": "internal_transfer_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "151e93e3-744a-4cc0-a0c6-2d4ec5824e7c",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of transfers to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include transfers created on or after this timestamp. Must be ISO 8601 (UTC).",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include transfers created on or before this timestamp. Must be ISO 8601 (UTC).",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, also return transfers belonging to any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Source account currency",
                            "type": "text/plain"
                          },
                          "key": "source_currency",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Target account currency",
                            "type": "text/plain"
                          },
                          "key": "target_currency",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by transfer status (PENDING, PROCESSING, SETTLING, COMPLETED, FAILED). (This can only be one of PENDING,PROCESSING,SETTLING,COMPLETED,FAILED)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "FAILED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Idempotency key.",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Internal tranfer ID. If passed it will ignore the rest of theparameters, except for 'include_child_companies'.",
                            "type": "text/plain"
                          },
                          "key": "internal_transfer_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"company_id\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\",\n      \"source_account_id\": \"<string>\",\n      \"target_account_id\": \"<string>\",\n      \"status\": \"PENDING\",\n      \"source_account\": {\n        \"id\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"country\": \"<string>\",\n        \"company\": {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\"\n        }\n      },\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      },\n      \"idempotency_key\": \"<string>\",\n      \"quote_id\": \"<string>\",\n      \"rate\": \"<number>\",\n      \"source_amount\": \"<number>\",\n      \"destination_amount\": \"<number>\",\n      \"failure_reason\": \"<string>\",\n      \"callback_url\": \"<string>\",\n      \"voucher_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"target_account\": {\n        \"id\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"country\": \"<string>\",\n        \"company\": {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\"\n        }\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"company_id\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\",\n      \"source_account_id\": \"<string>\",\n      \"target_account_id\": \"<string>\",\n      \"status\": \"SETTLING\",\n      \"source_account\": {\n        \"id\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"country\": \"<string>\",\n        \"company\": {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\"\n        }\n      },\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      },\n      \"idempotency_key\": \"<string>\",\n      \"quote_id\": \"<string>\",\n      \"rate\": \"<number>\",\n      \"source_amount\": \"<number>\",\n      \"destination_amount\": \"<number>\",\n      \"failure_reason\": \"<string>\",\n      \"callback_url\": \"<string>\",\n      \"voucher_ids\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"target_account\": {\n        \"id\": \"<string>\",\n        \"account_number\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"country\": \"<string>\",\n        \"company\": {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "45d68a16-7457-4d20-84e5-1a0b7fe36427",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of transfers to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include transfers created on or after this timestamp. Must be ISO 8601 (UTC).",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include transfers created on or before this timestamp. Must be ISO 8601 (UTC).",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, also return transfers belonging to any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Source account currency",
                            "type": "text/plain"
                          },
                          "key": "source_currency",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Target account currency",
                            "type": "text/plain"
                          },
                          "key": "target_currency",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by transfer status (PENDING, PROCESSING, SETTLING, COMPLETED, FAILED). (This can only be one of PENDING,PROCESSING,SETTLING,COMPLETED,FAILED)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "FAILED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Idempotency key.",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Internal tranfer ID. If passed it will ignore the rest of theparameters, except for 'include_child_companies'.",
                            "type": "text/plain"
                          },
                          "key": "internal_transfer_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "a62ef0d3-86e7-45f8-a7da-fba70f13440f",
              "name": "Make Internal Transfer",
              "request": {
                "name": "Make Internal Transfer",
                "description": {
                  "content": "Make an internal transfer between accounts of the same family of companies. An internal transfer can have the following statuses:\n\n* PENDING: The transfer has been created.\n* PROCESSING: The transfer has started to be processed and funds have been debited.\n* SETTLING: The transfer is being settled.\n* COMPLETED: The funds have been sent to the destination account (but not necessarily received yet).\n* FAILED: The transfer failed.\n\n### Testing in sandbox\n\nIn the sandbox, transfer the magic amount `302` to get a transfer that is accepted, debits the source\naccount and then fails, refunding it and notifying the `callback_url`, or `303` to get one that fails in\nthis endpoint's response. Any other amount follows the normal (successful) flow.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "internal-transfer",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"source_account_id\": \"<string>\",\n  \"target_account_id\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"source_amount\": \"<number>\",\n  \"target_amount\": \"<number>\",\n  \"quote_id\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "f0a25e93-99ed-434e-ac45-1d8b33c1e0dd",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"source_account_id\": \"<string>\",\n  \"target_account_id\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"source_amount\": \"<number>\",\n  \"target_amount\": \"<number>\",\n  \"quote_id\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"company_id\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"source_account_id\": \"<string>\",\n    \"target_account_id\": \"<string>\",\n    \"status\": \"PROCESSING\",\n    \"source_account\": {\n      \"id\": \"<string>\",\n      \"account_number\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"country\": \"<string>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      }\n    },\n    \"company\": {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"idempotency_key\": \"<string>\",\n    \"quote_id\": \"<string>\",\n    \"rate\": \"<number>\",\n    \"source_amount\": \"<number>\",\n    \"destination_amount\": \"<number>\",\n    \"failure_reason\": \"<string>\",\n    \"callback_url\": \"<string>\",\n    \"voucher_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"target_account\": {\n      \"id\": \"<string>\",\n      \"account_number\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"country\": \"<string>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      }\n    }\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "fd987b3a-f8fc-4f8c-8f2c-e6c09c3080b1",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"source_account_id\": \"<string>\",\n  \"target_account_id\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"source_amount\": \"<number>\",\n  \"target_amount\": \"<number>\",\n  \"quote_id\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e08a0bfa-48d7-47a1-9bbc-5bbbf1674694",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"source_account_id\": \"<string>\",\n  \"target_account_id\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"source_amount\": \"<number>\",\n  \"target_amount\": \"<number>\",\n  \"quote_id\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "5c84a649-2919-45dd-bf4e-bf2f7b6d1610",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"source_account_id\": \"<string>\",\n  \"target_account_id\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"source_amount\": \"<number>\",\n  \"target_amount\": \"<number>\",\n  \"quote_id\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "be96925a-e0f3-45bc-ac29-2967ca30d00a",
              "name": "Get Internal Transfer Details",
              "request": {
                "name": "Get Internal Transfer Details",
                "description": {
                  "content": "Retrieve details of an internal transfer.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "internal-transfer",
                    ":transfer_id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "transfer_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "10283166-ee95-4aa1-99e5-74728c489d66",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        ":transfer_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "transfer_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"company_id\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"source_account_id\": \"<string>\",\n    \"target_account_id\": \"<string>\",\n    \"status\": \"PROCESSING\",\n    \"source_account\": {\n      \"id\": \"<string>\",\n      \"account_number\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"country\": \"<string>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      }\n    },\n    \"company\": {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"idempotency_key\": \"<string>\",\n    \"quote_id\": \"<string>\",\n    \"rate\": \"<number>\",\n    \"source_amount\": \"<number>\",\n    \"destination_amount\": \"<number>\",\n    \"failure_reason\": \"<string>\",\n    \"callback_url\": \"<string>\",\n    \"voucher_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"target_account\": {\n      \"id\": \"<string>\",\n      \"account_number\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"country\": \"<string>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      }\n    }\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "ebbda219-e445-4d31-8805-2bfd8e529149",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        ":transfer_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "transfer_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "2c59f6b9-856d-4541-b43e-66ae81093ab4",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        ":transfer_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "transfer_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "bf640d11-c5c5-4a80-9b24-6793d59ed867",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "internal-transfer",
                        ":transfer_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "transfer_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        },
        {
          "name": "Account Owners",
          "description": "",
          "item": [
            {
              "id": "6d4f43ad-356a-4771-8557-e27905deaa3a",
              "name": "Create Account Owner",
              "request": {
                "name": "Create Account Owner",
                "description": {
                  "content": "Create a new account owner for KYC purposes.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "owners",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"type\": \"INDIVIDUAL\",\n  \"kyc_mode\": \"SELF_DECLARED\",\n  \"idempotency_key\": \"<string>\",\n  \"external\": {\n    \"sumsub_share_token\": \"<string>\"\n  },\n  \"individual\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"additional_tax_id\": \"<string>\",\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  }\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "819816b2-4ceb-4df6-baae-417d8ed19c45",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"type\": \"INDIVIDUAL\",\n  \"kyc_mode\": \"SELF_DECLARED\",\n  \"idempotency_key\": \"<string>\",\n  \"external\": {\n    \"sumsub_share_token\": \"<string>\"\n  },\n  \"individual\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"additional_tax_id\": \"<string>\",\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  }\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"type\": \"INDIVIDUAL\",\n    \"kyc_mode\": \"SELF_DECLARED\",\n    \"status\": \"COMPLETED\",\n    \"level\": \"ENHANCED\",\n    \"failure_reason\": \"<string>\",\n    \"individual\": {\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"date_of_birth\": \"<string>\",\n      \"tax_id\": \"<string>\",\n      \"tax_id_country\": \"<string>\",\n      \"email\": \"<string>\",\n      \"phone_number\": \"<string>\",\n      \"address\": {\n        \"line_1\": \"<string>\",\n        \"city\": \"<string>\",\n        \"state\": \"<string>\",\n        \"postal_code\": \"<string>\",\n        \"country\": \"<string>\",\n        \"line_2\": \"<string>\"\n      },\n      \"additional_tax_id\": \"<string>\",\n      \"identity_document_id\": \"<string>\",\n      \"selfie_document_id\": \"<string>\",\n      \"proof_of_address_document_id\": \"<string>\",\n      \"source_of_funds_document_id\": \"<string>\",\n      \"other_documents\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"expected_monthly_volume_usd\": \"<number>\"\n    },\n    \"organization\": {\n      \"name\": \"<string>\",\n      \"date_of_incorporation\": \"<string>\",\n      \"tax_id\": \"<string>\",\n      \"tax_id_country\": \"<string>\",\n      \"email\": \"<string>\",\n      \"phone_number\": \"<string>\",\n      \"address\": {\n        \"line_1\": \"<string>\",\n        \"city\": \"<string>\",\n        \"state\": \"<string>\",\n        \"postal_code\": \"<string>\",\n        \"country\": \"<string>\",\n        \"line_2\": \"<string>\"\n      },\n      \"incorporation_document_id\": \"<string>\",\n      \"source_of_funds_document_id\": \"<string>\",\n      \"proof_of_address_document_id\": \"<string>\",\n      \"ownership_structure_document_id\": \"<string>\",\n      \"tax_registration_document_id\": \"<string>\",\n      \"corporate_org_chart_document_id\": \"<string>\",\n      \"other_documents\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"expected_monthly_volume_usd\": \"<number>\"\n    },\n    \"hosted\": {\n      \"verification_url\": \"<string>\",\n      \"verification_url_expires_at\": \"<dateTime>\"\n    },\n    \"documents\": [\n      {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"CURRENT\",\n        \"created_at\": \"<dateTime>\",\n        \"superseded_at\": \"<dateTime>\",\n        \"superseded_by_id\": \"<string>\"\n      },\n      {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"CURRENT\",\n        \"created_at\": \"<dateTime>\",\n        \"superseded_at\": \"<dateTime>\",\n        \"superseded_by_id\": \"<string>\"\n      }\n    ],\n    \"change_log\": [\n      {\n        \"action\": \"DOCUMENT_ADDED\",\n        \"document_type\": \"<string>\",\n        \"created_at\": \"<dateTime>\",\n        \"previous_document_id\": \"<string>\",\n        \"new_document_id\": \"<string>\"\n      },\n      {\n        \"action\": \"DOCUMENT_REPLACED\",\n        \"document_type\": \"<string>\",\n        \"created_at\": \"<dateTime>\",\n        \"previous_document_id\": \"<string>\",\n        \"new_document_id\": \"<string>\"\n      }\n    ],\n    \"versions\": [\n      {\n        \"version\": \"<integer>\",\n        \"created_at\": \"<dateTime>\",\n        \"individual\": {\n          \"key_0\": false,\n          \"key_1\": \"string\"\n        },\n        \"organization\": {\n          \"key_0\": true,\n          \"key_1\": false,\n          \"key_2\": \"string\"\n        }\n      },\n      {\n        \"version\": \"<integer>\",\n        \"created_at\": \"<dateTime>\",\n        \"individual\": {\n          \"key_0\": 1772.5422218996623,\n          \"key_1\": \"string\"\n        },\n        \"organization\": {\n          \"key_0\": false,\n          \"key_1\": 1867.9180670827034\n        }\n      }\n    ]\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "f18ab1b4-6820-4991-8501-3a0591a4458f",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"type\": \"INDIVIDUAL\",\n  \"kyc_mode\": \"SELF_DECLARED\",\n  \"idempotency_key\": \"<string>\",\n  \"external\": {\n    \"sumsub_share_token\": \"<string>\"\n  },\n  \"individual\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"additional_tax_id\": \"<string>\",\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  }\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "bc5c3f4d-87c4-467e-a755-7ad66ced5847",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"type\": \"INDIVIDUAL\",\n  \"kyc_mode\": \"SELF_DECLARED\",\n  \"idempotency_key\": \"<string>\",\n  \"external\": {\n    \"sumsub_share_token\": \"<string>\"\n  },\n  \"individual\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"additional_tax_id\": \"<string>\",\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  }\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8319259d-4f19-43c5-8e73-74b963010180",
                  "name": "Unprocessable Entity",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"type\": \"INDIVIDUAL\",\n  \"kyc_mode\": \"SELF_DECLARED\",\n  \"idempotency_key\": \"<string>\",\n  \"external\": {\n    \"sumsub_share_token\": \"<string>\"\n  },\n  \"individual\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"additional_tax_id\": \"<string>\",\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  }\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "72fced7d-df34-4d85-8874-24783b53c0d0",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"type\": \"INDIVIDUAL\",\n  \"kyc_mode\": \"SELF_DECLARED\",\n  \"idempotency_key\": \"<string>\",\n  \"external\": {\n    \"sumsub_share_token\": \"<string>\"\n  },\n  \"individual\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"additional_tax_id\": \"<string>\",\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"expected_monthly_volume_usd\": \"<number>\"\n  }\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "9be3260b-f961-4084-8fea-f00bb0ba175e",
              "name": "List Account Owners",
              "request": {
                "name": "List Account Owners",
                "description": {
                  "content": "Retrieves a paginated list of account owners with optional filters.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "owners",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "ID",
                        "type": "text/plain"
                      },
                      "key": "uuid",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Name",
                        "type": "text/plain"
                      },
                      "key": "name",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Tax ID",
                        "type": "text/plain"
                      },
                      "key": "tax_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Search in both tax_id and additional_tax_id",
                        "type": "text/plain"
                      },
                      "key": "combined_tax_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Page index (1-based). Default: 1",
                        "type": "text/plain"
                      },
                      "key": "page_number",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Maximum number of results per page. Default: 50",
                        "type": "text/plain"
                      },
                      "key": "page_size",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If true, include account owners from child companies. Default: false",
                        "type": "text/plain"
                      },
                      "key": "include_child_companies",
                      "value": "false"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Filter by idempotency key",
                        "type": "text/plain"
                      },
                      "key": "idempotency_key",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Filter by account ID. Returns the owner linked to that account.",
                        "type": "text/plain"
                      },
                      "key": "account_id",
                      "value": "<integer>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "6e9d5291-3577-4aca-8b49-bd520e84e384",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "ID",
                            "type": "text/plain"
                          },
                          "key": "uuid",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Name",
                            "type": "text/plain"
                          },
                          "key": "name",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Tax ID",
                            "type": "text/plain"
                          },
                          "key": "tax_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search in both tax_id and additional_tax_id",
                            "type": "text/plain"
                          },
                          "key": "combined_tax_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of results per page. Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If true, include account owners from child companies. Default: false",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by account ID. Returns the owner linked to that account.",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\",\n      \"type\": \"ORGANIZATION\",\n      \"kyc_mode\": \"HOSTED\",\n      \"status\": \"COMPLETED\",\n      \"level\": \"BASIC\",\n      \"failure_reason\": \"<string>\",\n      \"individual\": {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      },\n      \"organization\": {\n        \"name\": \"<string>\",\n        \"date_of_incorporation\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"incorporation_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"ownership_structure_document_id\": \"<string>\",\n        \"tax_registration_document_id\": \"<string>\",\n        \"corporate_org_chart_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      },\n      \"hosted\": {\n        \"verification_url\": \"<string>\",\n        \"verification_url_expires_at\": \"<dateTime>\"\n      },\n      \"documents\": [\n        {\n          \"id\": \"<string>\",\n          \"type\": \"<string>\",\n          \"status\": \"SUPERSEDED\",\n          \"created_at\": \"<dateTime>\",\n          \"superseded_at\": \"<dateTime>\",\n          \"superseded_by_id\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"type\": \"<string>\",\n          \"status\": \"CURRENT\",\n          \"created_at\": \"<dateTime>\",\n          \"superseded_at\": \"<dateTime>\",\n          \"superseded_by_id\": \"<string>\"\n        }\n      ],\n      \"change_log\": [\n        {\n          \"action\": \"DOCUMENT_REPLACED\",\n          \"document_type\": \"<string>\",\n          \"created_at\": \"<dateTime>\",\n          \"previous_document_id\": \"<string>\",\n          \"new_document_id\": \"<string>\"\n        },\n        {\n          \"action\": \"DOCUMENT_REPLACED\",\n          \"document_type\": \"<string>\",\n          \"created_at\": \"<dateTime>\",\n          \"previous_document_id\": \"<string>\",\n          \"new_document_id\": \"<string>\"\n        }\n      ],\n      \"versions\": [\n        {\n          \"version\": \"<integer>\",\n          \"created_at\": \"<dateTime>\",\n          \"individual\": {\n            \"key_0\": 2286.824625541215\n          },\n          \"organization\": {\n            \"key_0\": 454.7177245159073,\n            \"key_1\": 3578.7453286225455\n          }\n        },\n        {\n          \"version\": \"<integer>\",\n          \"created_at\": \"<dateTime>\",\n          \"individual\": {\n            \"key_0\": true,\n            \"key_1\": 1275\n          },\n          \"organization\": {\n            \"key_0\": 3417.761920123974,\n            \"key_1\": 8265.811044238137\n          }\n        }\n      ]\n    },\n    {\n      \"id\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\",\n      \"type\": \"INDIVIDUAL\",\n      \"kyc_mode\": \"EXTERNAL\",\n      \"status\": \"PENDING\",\n      \"level\": \"BASIC\",\n      \"failure_reason\": \"<string>\",\n      \"individual\": {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      },\n      \"organization\": {\n        \"name\": \"<string>\",\n        \"date_of_incorporation\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"incorporation_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"ownership_structure_document_id\": \"<string>\",\n        \"tax_registration_document_id\": \"<string>\",\n        \"corporate_org_chart_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      },\n      \"hosted\": {\n        \"verification_url\": \"<string>\",\n        \"verification_url_expires_at\": \"<dateTime>\"\n      },\n      \"documents\": [\n        {\n          \"id\": \"<string>\",\n          \"type\": \"<string>\",\n          \"status\": \"CURRENT\",\n          \"created_at\": \"<dateTime>\",\n          \"superseded_at\": \"<dateTime>\",\n          \"superseded_by_id\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"type\": \"<string>\",\n          \"status\": \"CURRENT\",\n          \"created_at\": \"<dateTime>\",\n          \"superseded_at\": \"<dateTime>\",\n          \"superseded_by_id\": \"<string>\"\n        }\n      ],\n      \"change_log\": [\n        {\n          \"action\": \"DOCUMENT_ADDED\",\n          \"document_type\": \"<string>\",\n          \"created_at\": \"<dateTime>\",\n          \"previous_document_id\": \"<string>\",\n          \"new_document_id\": \"<string>\"\n        },\n        {\n          \"action\": \"DOCUMENT_REPLACED\",\n          \"document_type\": \"<string>\",\n          \"created_at\": \"<dateTime>\",\n          \"previous_document_id\": \"<string>\",\n          \"new_document_id\": \"<string>\"\n        }\n      ],\n      \"versions\": [\n        {\n          \"version\": \"<integer>\",\n          \"created_at\": \"<dateTime>\",\n          \"individual\": {\n            \"key_0\": \"string\"\n          },\n          \"organization\": {\n            \"key_0\": true,\n            \"key_1\": \"string\",\n            \"key_2\": \"string\"\n          }\n        },\n        {\n          \"version\": \"<integer>\",\n          \"created_at\": \"<dateTime>\",\n          \"individual\": {\n            \"key_0\": false,\n            \"key_1\": true\n          },\n          \"organization\": {\n            \"key_0\": 4633,\n            \"key_1\": 7342.56889911024,\n            \"key_2\": true\n          }\n        }\n      ]\n    }\n  ],\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "13a321b2-54fa-4c2b-838e-b3c37c9877ba",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "ID",
                            "type": "text/plain"
                          },
                          "key": "uuid",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Name",
                            "type": "text/plain"
                          },
                          "key": "name",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Tax ID",
                            "type": "text/plain"
                          },
                          "key": "tax_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search in both tax_id and additional_tax_id",
                            "type": "text/plain"
                          },
                          "key": "combined_tax_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of results per page. Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If true, include account owners from child companies. Default: false",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by account ID. Returns the owner linked to that account.",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "74c981d9-7413-4273-aa81-ee0a22c5c210",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "ID",
                            "type": "text/plain"
                          },
                          "key": "uuid",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Name",
                            "type": "text/plain"
                          },
                          "key": "name",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Tax ID",
                            "type": "text/plain"
                          },
                          "key": "tax_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search in both tax_id and additional_tax_id",
                            "type": "text/plain"
                          },
                          "key": "combined_tax_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of results per page. Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If true, include account owners from child companies. Default: false",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by account ID. Returns the owner linked to that account.",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "53121c74-cfcf-4e8d-b40e-2a635d688904",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "ID",
                            "type": "text/plain"
                          },
                          "key": "uuid",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Name",
                            "type": "text/plain"
                          },
                          "key": "name",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Tax ID",
                            "type": "text/plain"
                          },
                          "key": "tax_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search in both tax_id and additional_tax_id",
                            "type": "text/plain"
                          },
                          "key": "combined_tax_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of results per page. Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If true, include account owners from child companies. Default: false",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by account ID. Returns the owner linked to that account.",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "ad5aaa2a-5f0f-4fa2-8d3f-545e56b4cae8",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "ID",
                            "type": "text/plain"
                          },
                          "key": "uuid",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Name",
                            "type": "text/plain"
                          },
                          "key": "name",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Tax ID",
                            "type": "text/plain"
                          },
                          "key": "tax_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Search in both tax_id and additional_tax_id",
                            "type": "text/plain"
                          },
                          "key": "combined_tax_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of results per page. Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If true, include account owners from child companies. Default: false",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by account ID. Returns the owner linked to that account.",
                            "type": "text/plain"
                          },
                          "key": "account_id",
                          "value": "<integer>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "6a0c0779-dc84-4c53-9ea3-c559aea41953",
              "name": "Get Account Owner",
              "request": {
                "name": "Get Account Owner",
                "description": {
                  "content": "Retrieves a specific account owner by its UUID.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "owners",
                    ":uuid",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "uuid",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "ad11f752-8be6-45b1-935d-662ccec0dfa7",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"type\": \"INDIVIDUAL\",\n    \"kyc_mode\": \"SELF_DECLARED\",\n    \"status\": \"COMPLETED\",\n    \"level\": \"ENHANCED\",\n    \"failure_reason\": \"<string>\",\n    \"individual\": {\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"date_of_birth\": \"<string>\",\n      \"tax_id\": \"<string>\",\n      \"tax_id_country\": \"<string>\",\n      \"email\": \"<string>\",\n      \"phone_number\": \"<string>\",\n      \"address\": {\n        \"line_1\": \"<string>\",\n        \"city\": \"<string>\",\n        \"state\": \"<string>\",\n        \"postal_code\": \"<string>\",\n        \"country\": \"<string>\",\n        \"line_2\": \"<string>\"\n      },\n      \"additional_tax_id\": \"<string>\",\n      \"identity_document_id\": \"<string>\",\n      \"selfie_document_id\": \"<string>\",\n      \"proof_of_address_document_id\": \"<string>\",\n      \"source_of_funds_document_id\": \"<string>\",\n      \"other_documents\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"expected_monthly_volume_usd\": \"<number>\"\n    },\n    \"organization\": {\n      \"name\": \"<string>\",\n      \"date_of_incorporation\": \"<string>\",\n      \"tax_id\": \"<string>\",\n      \"tax_id_country\": \"<string>\",\n      \"email\": \"<string>\",\n      \"phone_number\": \"<string>\",\n      \"address\": {\n        \"line_1\": \"<string>\",\n        \"city\": \"<string>\",\n        \"state\": \"<string>\",\n        \"postal_code\": \"<string>\",\n        \"country\": \"<string>\",\n        \"line_2\": \"<string>\"\n      },\n      \"incorporation_document_id\": \"<string>\",\n      \"source_of_funds_document_id\": \"<string>\",\n      \"proof_of_address_document_id\": \"<string>\",\n      \"ownership_structure_document_id\": \"<string>\",\n      \"tax_registration_document_id\": \"<string>\",\n      \"corporate_org_chart_document_id\": \"<string>\",\n      \"other_documents\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"expected_monthly_volume_usd\": \"<number>\"\n    },\n    \"hosted\": {\n      \"verification_url\": \"<string>\",\n      \"verification_url_expires_at\": \"<dateTime>\"\n    },\n    \"documents\": [\n      {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"CURRENT\",\n        \"created_at\": \"<dateTime>\",\n        \"superseded_at\": \"<dateTime>\",\n        \"superseded_by_id\": \"<string>\"\n      },\n      {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"CURRENT\",\n        \"created_at\": \"<dateTime>\",\n        \"superseded_at\": \"<dateTime>\",\n        \"superseded_by_id\": \"<string>\"\n      }\n    ],\n    \"change_log\": [\n      {\n        \"action\": \"DOCUMENT_ADDED\",\n        \"document_type\": \"<string>\",\n        \"created_at\": \"<dateTime>\",\n        \"previous_document_id\": \"<string>\",\n        \"new_document_id\": \"<string>\"\n      },\n      {\n        \"action\": \"DOCUMENT_REPLACED\",\n        \"document_type\": \"<string>\",\n        \"created_at\": \"<dateTime>\",\n        \"previous_document_id\": \"<string>\",\n        \"new_document_id\": \"<string>\"\n      }\n    ],\n    \"versions\": [\n      {\n        \"version\": \"<integer>\",\n        \"created_at\": \"<dateTime>\",\n        \"individual\": {\n          \"key_0\": false,\n          \"key_1\": \"string\"\n        },\n        \"organization\": {\n          \"key_0\": true,\n          \"key_1\": false,\n          \"key_2\": \"string\"\n        }\n      },\n      {\n        \"version\": \"<integer>\",\n        \"created_at\": \"<dateTime>\",\n        \"individual\": {\n          \"key_0\": 1772.5422218996623,\n          \"key_1\": \"string\"\n        },\n        \"organization\": {\n          \"key_0\": false,\n          \"key_1\": 1867.9180670827034\n        }\n      }\n    ]\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "3b699c7c-5a37-459a-9411-50ad7f62c55c",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "4bcacc66-e5e4-4960-83a1-32562c6ab9fd",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "3b5c3457-b5db-427f-a35c-8a6a8fdf953e",
                  "name": "Not Found",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Not Found",
                  "code": 404,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "52404d58-8fbc-4c03-9b8d-1874ac9fd6bd",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8658b78b-62d0-4f44-91f7-2c7f229c0057",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "53624832-6e66-4412-b055-a9b508fb2673",
              "name": "Update Account Owner",
              "request": {
                "name": "Update Account Owner",
                "description": {
                  "content": "Update an existing account owner. Every data field can be updated except tax_id. Documents can be added or replaced: a replaced document is kept and marked superseded, never modified or deleted. Every change is recorded: data snapshots in versions, document changes in change_log.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "owners",
                    ":uuid",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "uuid",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "PATCH",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"individual\": {\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"additional_tax_id\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\",\n    \"ultimate_beneficial_owners\": [\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      },\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "51db598f-def9-4498-b569-4d36324fb334",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"individual\": {\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"additional_tax_id\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\",\n    \"ultimate_beneficial_owners\": [\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      },\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      }\n    ]\n  }\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"type\": \"INDIVIDUAL\",\n    \"kyc_mode\": \"SELF_DECLARED\",\n    \"status\": \"COMPLETED\",\n    \"level\": \"ENHANCED\",\n    \"failure_reason\": \"<string>\",\n    \"individual\": {\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"date_of_birth\": \"<string>\",\n      \"tax_id\": \"<string>\",\n      \"tax_id_country\": \"<string>\",\n      \"email\": \"<string>\",\n      \"phone_number\": \"<string>\",\n      \"address\": {\n        \"line_1\": \"<string>\",\n        \"city\": \"<string>\",\n        \"state\": \"<string>\",\n        \"postal_code\": \"<string>\",\n        \"country\": \"<string>\",\n        \"line_2\": \"<string>\"\n      },\n      \"additional_tax_id\": \"<string>\",\n      \"identity_document_id\": \"<string>\",\n      \"selfie_document_id\": \"<string>\",\n      \"proof_of_address_document_id\": \"<string>\",\n      \"source_of_funds_document_id\": \"<string>\",\n      \"other_documents\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"expected_monthly_volume_usd\": \"<number>\"\n    },\n    \"organization\": {\n      \"name\": \"<string>\",\n      \"date_of_incorporation\": \"<string>\",\n      \"tax_id\": \"<string>\",\n      \"tax_id_country\": \"<string>\",\n      \"email\": \"<string>\",\n      \"phone_number\": \"<string>\",\n      \"address\": {\n        \"line_1\": \"<string>\",\n        \"city\": \"<string>\",\n        \"state\": \"<string>\",\n        \"postal_code\": \"<string>\",\n        \"country\": \"<string>\",\n        \"line_2\": \"<string>\"\n      },\n      \"incorporation_document_id\": \"<string>\",\n      \"source_of_funds_document_id\": \"<string>\",\n      \"proof_of_address_document_id\": \"<string>\",\n      \"ownership_structure_document_id\": \"<string>\",\n      \"tax_registration_document_id\": \"<string>\",\n      \"corporate_org_chart_document_id\": \"<string>\",\n      \"other_documents\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"expected_monthly_volume_usd\": \"<number>\"\n    },\n    \"hosted\": {\n      \"verification_url\": \"<string>\",\n      \"verification_url_expires_at\": \"<dateTime>\"\n    },\n    \"documents\": [\n      {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"CURRENT\",\n        \"created_at\": \"<dateTime>\",\n        \"superseded_at\": \"<dateTime>\",\n        \"superseded_by_id\": \"<string>\"\n      },\n      {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"CURRENT\",\n        \"created_at\": \"<dateTime>\",\n        \"superseded_at\": \"<dateTime>\",\n        \"superseded_by_id\": \"<string>\"\n      }\n    ],\n    \"change_log\": [\n      {\n        \"action\": \"DOCUMENT_ADDED\",\n        \"document_type\": \"<string>\",\n        \"created_at\": \"<dateTime>\",\n        \"previous_document_id\": \"<string>\",\n        \"new_document_id\": \"<string>\"\n      },\n      {\n        \"action\": \"DOCUMENT_REPLACED\",\n        \"document_type\": \"<string>\",\n        \"created_at\": \"<dateTime>\",\n        \"previous_document_id\": \"<string>\",\n        \"new_document_id\": \"<string>\"\n      }\n    ],\n    \"versions\": [\n      {\n        \"version\": \"<integer>\",\n        \"created_at\": \"<dateTime>\",\n        \"individual\": {\n          \"key_0\": false,\n          \"key_1\": \"string\"\n        },\n        \"organization\": {\n          \"key_0\": true,\n          \"key_1\": false,\n          \"key_2\": \"string\"\n        }\n      },\n      {\n        \"version\": \"<integer>\",\n        \"created_at\": \"<dateTime>\",\n        \"individual\": {\n          \"key_0\": 1772.5422218996623,\n          \"key_1\": \"string\"\n        },\n        \"organization\": {\n          \"key_0\": false,\n          \"key_1\": 1867.9180670827034\n        }\n      }\n    ]\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "cdf4f6f8-4bb2-43b2-ae9c-a598a573face",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"individual\": {\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"additional_tax_id\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\",\n    \"ultimate_beneficial_owners\": [\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      },\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      }\n    ]\n  }\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "64bd8491-7bc4-4984-8249-8412808dd65c",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"individual\": {\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"additional_tax_id\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\",\n    \"ultimate_beneficial_owners\": [\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      },\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      }\n    ]\n  }\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "84eae170-2c1a-4ceb-91bc-235cfa5247de",
                  "name": "Unprocessable Entity",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"individual\": {\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"additional_tax_id\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\",\n    \"ultimate_beneficial_owners\": [\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      },\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      }\n    ]\n  }\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "38ef7091-cdea-4d9c-9738-b5ec1ec9fe15",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        ":uuid",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "uuid"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"individual\": {\n    \"identity_document_id\": \"<string>\",\n    \"selfie_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"additional_tax_id\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\"\n  },\n  \"organization\": {\n    \"incorporation_document_id\": \"<string>\",\n    \"source_of_funds_document_id\": \"<string>\",\n    \"proof_of_address_document_id\": \"<string>\",\n    \"ownership_structure_document_id\": \"<string>\",\n    \"tax_registration_document_id\": \"<string>\",\n    \"corporate_org_chart_document_id\": \"<string>\",\n    \"other_documents\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"name\": \"<string>\",\n    \"date_of_incorporation\": \"<string>\",\n    \"tax_id_country\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phone_number\": \"<string>\",\n    \"address\": {\n      \"line_1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"state\": \"<string>\",\n      \"postal_code\": \"<string>\",\n      \"country\": \"<string>\",\n      \"line_2\": \"<string>\"\n    },\n    \"expected_monthly_volume_usd\": \"<number>\",\n    \"ultimate_beneficial_owners\": [\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      },\n      {\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"date_of_birth\": \"<string>\",\n        \"tax_id\": \"<string>\",\n        \"tax_id_country\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phone_number\": \"<string>\",\n        \"address\": {\n          \"line_1\": \"<string>\",\n          \"city\": \"<string>\",\n          \"state\": \"<string>\",\n          \"postal_code\": \"<string>\",\n          \"country\": \"<string>\",\n          \"line_2\": \"<string>\"\n        },\n        \"additional_tax_id\": \"<string>\",\n        \"identity_document_id\": \"<string>\",\n        \"selfie_document_id\": \"<string>\",\n        \"proof_of_address_document_id\": \"<string>\",\n        \"source_of_funds_document_id\": \"<string>\",\n        \"other_documents\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"expected_monthly_volume_usd\": \"<number>\"\n      }\n    ]\n  }\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "7c7e5f32-f9fc-4db1-8d63-4e64d162ebcc",
              "name": "Initiate Document Upload",
              "request": {
                "name": "Initiate Document Upload",
                "description": {
                  "content": "Generate pre-signed URLs for uploading account owner documents.One of 'individual', 'organization', or 'external' is required depending on 'type' and 'kyc_mode'.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "accounts",
                    "owners",
                    "documents",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"document_type\": \"OWNERSHIP_STRUCTURE\",\n  \"double_sided\": false\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "42f4a52c-3de4-4896-b02d-cf642cfff0ca",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        "documents",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"document_type\": \"OWNERSHIP_STRUCTURE\",\n  \"double_sided\": false\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"upload_front_url\": \"<string>\",\n    \"upload_back_url\": \"<string>\",\n    \"expires_at\": \"<dateTime>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "d43fc8bc-12f2-4c21-bf82-b3226635ae92",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        "documents",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"document_type\": \"OWNERSHIP_STRUCTURE\",\n  \"double_sided\": false\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "ef453b9a-1ae6-4a50-91bf-f11c20813b46",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        "documents",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"document_type\": \"OWNERSHIP_STRUCTURE\",\n  \"double_sided\": false\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "c0282ac3-5e83-4e89-9072-eece8d33c590",
                  "name": "Unprocessable Entity",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        "documents",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"document_type\": \"OWNERSHIP_STRUCTURE\",\n  \"double_sided\": false\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "be7536d5-32e2-44b6-80bb-e04a840d608c",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "owners",
                        "documents",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"document_type\": \"OWNERSHIP_STRUCTURE\",\n  \"double_sided\": false\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ],
      "description": {
        "content": "Manage your virtual accounts and movements",
        "type": "text/plain"
      },
      "event": []
    },
    {
      "name": "Audits",
      "item": [
        {
          "name": "Audits",
          "description": "",
          "item": [
            {
              "id": "4dfce7e8-c276-4e9e-b7d1-ccc619c4e877",
              "name": "List User Audits",
              "request": {
                "name": "List User Audits",
                "description": {
                  "content": "Retrieve a list of user audits.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "audits",
                    "users",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "Only include user audits created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `created_at` field).",
                        "type": "text/plain"
                      },
                      "key": "date_from",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Only include user audits created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `created_at` field).",
                        "type": "text/plain"
                      },
                      "key": "date_to",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": " (This can only be one of USER_LOGIN,USER_LOGIN_FAILED,USER_UPDATE,USER_LOGOUT)",
                        "type": "text/plain"
                      },
                      "key": "action",
                      "value": "USER_LOGIN"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "c835b23b-8575-4e49-b688-666bcecd1838",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "users",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include user audits created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `created_at` field).",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include user audits created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `created_at` field).",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of USER_LOGIN,USER_LOGIN_FAILED,USER_UPDATE,USER_LOGOUT)",
                            "type": "text/plain"
                          },
                          "key": "action",
                          "value": "USER_LOGIN"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<integer>\",\n      \"created_at\": \"<dateTime>\",\n      \"action\": \"USER_LOGIN\",\n      \"description\": \"<string>\",\n      \"ip_address\": \"<string>\",\n      \"user\": {\n        \"id\": \"<integer>\",\n        \"username\": \"<string>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"email\": \"<string>\"\n      }\n    },\n    {\n      \"id\": \"<integer>\",\n      \"created_at\": \"<dateTime>\",\n      \"action\": \"USER_UPDATE\",\n      \"description\": \"<string>\",\n      \"ip_address\": \"<string>\",\n      \"user\": {\n        \"id\": \"<integer>\",\n        \"username\": \"<string>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"email\": \"<string>\"\n      }\n    }\n  ],\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "a2a300c9-a80c-45d7-97fa-a0f4932fe28a",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "users",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include user audits created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `created_at` field).",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include user audits created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `created_at` field).",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of USER_LOGIN,USER_LOGIN_FAILED,USER_UPDATE,USER_LOGOUT)",
                            "type": "text/plain"
                          },
                          "key": "action",
                          "value": "USER_LOGIN"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "64046467-c22e-46a1-b872-ea763c2c49b2",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "users",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include user audits created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `created_at` field).",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include user audits created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `created_at` field).",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of USER_LOGIN,USER_LOGIN_FAILED,USER_UPDATE,USER_LOGOUT)",
                            "type": "text/plain"
                          },
                          "key": "action",
                          "value": "USER_LOGIN"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e62f2657-c70b-40b0-abfb-6a224486338e",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "users",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include user audits created on or after this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `created_at` field).",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Only include user audits created on or before this timestamp. Must be an ISO 8601 datetime in UTC (applied to the `created_at` field).",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of USER_LOGIN,USER_LOGIN_FAILED,USER_UPDATE,USER_LOGOUT)",
                            "type": "text/plain"
                          },
                          "key": "action",
                          "value": "USER_LOGIN"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ],
      "description": {
        "content": "API for managing audits",
        "type": "text/plain"
      },
      "event": []
    },
    {
      "name": "Bank Account Validation",
      "item": [
        {
          "name": "Bank Account Validation",
          "description": "",
          "item": [
            {
              "id": "00e9bfe7-8099-47c8-825f-6d914591621c",
              "name": "Create Bank Account Validation",
              "request": {
                "name": "Create Bank Account Validation",
                "description": {
                  "content": "Create a bank account validation request. The response will contain the validation request ID which you can use later to retrieve the result. The validation process may take a few seconds.<br><br>If you are interested in any other country kindly reach out to us as we're continuosly expanding our coverage.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "bank-account-validation",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"country\": \"AR\",\n  \"account\": {\n    \"dataType\": \"ALIAS\",\n    \"alias\": \"<string>\"\n  },\n  \"callbackUrl\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "560801fe-8923-4f57-ac67-8d3b04e112c7",
                  "name": "The validation request was created successfully.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"country\": \"AR\",\n  \"account\": {\n    \"dataType\": \"ALIAS\",\n    \"alias\": \"<string>\"\n  },\n  \"callbackUrl\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Created",
                  "code": 201,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"country\": \"PK\",\n    \"createdAt\": \"<dateTime>\",\n    \"updatedAt\": \"<dateTime>\",\n    \"inputData\": {\n      \"key_0\": false,\n      \"key_1\": 9586,\n      \"key_2\": \"string\",\n      \"key_3\": false,\n      \"key_4\": \"string\"\n    },\n    \"status\": \"IN_PROGRESS\",\n    \"statusDescription\": \"<string>\",\n    \"countryData\": {\n      \"account\": {\n        \"number\": \"<string>\",\n        \"currency\": \"ARS\",\n        \"type\": \"WALLET\"\n      },\n      \"owners\": [\n        {\n          \"documentType\": \"CUIT\",\n          \"documentNumber\": \"<string>\",\n          \"name\": \"<string>\",\n          \"type\": \"LEGAL\"\n        },\n        {\n          \"documentType\": \"DNI\",\n          \"documentNumber\": \"<string>\",\n          \"name\": \"<string>\",\n          \"type\": \"NATURAL\"\n        }\n      ]\n    }\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "49ce15dd-a40d-4b20-874d-e5002bafb797",
                  "name": "Unauthorized. The request is missing the required authentication credentials.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"country\": \"AR\",\n  \"account\": {\n    \"dataType\": \"ALIAS\",\n    \"alias\": \"<string>\"\n  },\n  \"callbackUrl\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "0897eb30-cf9c-4815-a861-6735c9d1bb1d",
                  "name": "Forbidden. The endpoint is not allowed to be accessed in this environment.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"country\": \"AR\",\n  \"account\": {\n    \"dataType\": \"ALIAS\",\n    \"alias\": \"<string>\"\n  },\n  \"callbackUrl\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "a4ed6ffc-5a8f-4e42-b99e-63c11c0a2e9d",
                  "name": "A validation request could not be created due to invalid data.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"country\": \"AR\",\n  \"account\": {\n    \"dataType\": \"ALIAS\",\n    \"alias\": \"<string>\"\n  },\n  \"callbackUrl\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "eab0021a-aeb2-469b-8395-6271e6f53cbe",
                  "name": "Internal server error.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"country\": \"AR\",\n  \"account\": {\n    \"dataType\": \"ALIAS\",\n    \"alias\": \"<string>\"\n  },\n  \"callbackUrl\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "6ba4d136-c811-4755-90ce-829d14d6feb1",
              "name": "List Bank Account Validations",
              "request": {
                "name": "List Bank Account Validations",
                "description": {
                  "content": "Retrieve a paginated list of bank account validation requests.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "bank-account-validation",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "Page number",
                        "type": "text/plain"
                      },
                      "key": "pageNumber",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Page size",
                        "type": "text/plain"
                      },
                      "key": "pageSize",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Start date",
                        "type": "text/plain"
                      },
                      "key": "dateFrom",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "End date",
                        "type": "text/plain"
                      },
                      "key": "dateTo",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Status (This can only be one of SUCCESSFUL,IN_PROGRESS,TEMPORARY_FAILURE,ERROR)",
                        "type": "text/plain"
                      },
                      "key": "status",
                      "value": "IN_PROGRESS"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Country code in ISO 3166-1 alpha-2 format (This can only be one of UY,BR,CO,MX,US,GB,ES,AR,IN,PK,CN,BD,VN,NG,ID,KR,NP,INTL)",
                        "type": "text/plain"
                      },
                      "key": "country",
                      "value": "IN"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "380aadce-6463-4edf-85f0-34cbc7057b41",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page number",
                            "type": "text/plain"
                          },
                          "key": "pageNumber",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page size",
                            "type": "text/plain"
                          },
                          "key": "pageSize",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Start date",
                            "type": "text/plain"
                          },
                          "key": "dateFrom",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "End date",
                            "type": "text/plain"
                          },
                          "key": "dateTo",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Status (This can only be one of SUCCESSFUL,IN_PROGRESS,TEMPORARY_FAILURE,ERROR)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "IN_PROGRESS"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Country code in ISO 3166-1 alpha-2 format (This can only be one of UY,BR,CO,MX,US,GB,ES,AR,IN,PK,CN,BD,VN,NG,ID,KR,NP,INTL)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "IN"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"country\": \"IN\",\n      \"createdAt\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"inputData\": {\n        \"key_0\": \"string\",\n        \"key_1\": true\n      },\n      \"status\": \"IN_PROGRESS\",\n      \"statusDescription\": \"<string>\",\n      \"countryData\": {\n        \"account\": {\n          \"number\": \"<string>\",\n          \"currency\": \"USD\",\n          \"type\": \"CA\"\n        },\n        \"owners\": [\n          {\n            \"documentType\": \"DNI\",\n            \"documentNumber\": \"<string>\",\n            \"name\": \"<string>\",\n            \"type\": \"NATURAL\"\n          },\n          {\n            \"documentType\": \"CUIT\",\n            \"documentNumber\": \"<string>\",\n            \"name\": \"<string>\",\n            \"type\": \"LEGAL\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"country\": \"PK\",\n      \"createdAt\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"inputData\": {\n        \"key_0\": 5559.003418169366\n      },\n      \"status\": \"SUCCESSFUL\",\n      \"statusDescription\": \"<string>\",\n      \"countryData\": {\n        \"account\": {\n          \"number\": \"<string>\",\n          \"currency\": \"ARS\",\n          \"type\": \"CC\"\n        },\n        \"owners\": [\n          {\n            \"documentType\": \"CUIT\",\n            \"documentNumber\": \"<string>\",\n            \"name\": \"<string>\",\n            \"type\": \"NATURAL\"\n          },\n          {\n            \"documentType\": \"DNI\",\n            \"documentNumber\": \"<string>\",\n            \"name\": \"<string>\",\n            \"type\": \"NATURAL\"\n          }\n        ]\n      }\n    }\n  ],\n  \"pagination\": {\n    \"total\": 0,\n    \"page\": 1,\n    \"perPage\": 50\n  },\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "7ac0f4e4-8121-4770-9e47-14c8128ce58e",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page number",
                            "type": "text/plain"
                          },
                          "key": "pageNumber",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page size",
                            "type": "text/plain"
                          },
                          "key": "pageSize",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Start date",
                            "type": "text/plain"
                          },
                          "key": "dateFrom",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "End date",
                            "type": "text/plain"
                          },
                          "key": "dateTo",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Status (This can only be one of SUCCESSFUL,IN_PROGRESS,TEMPORARY_FAILURE,ERROR)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "IN_PROGRESS"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Country code in ISO 3166-1 alpha-2 format (This can only be one of UY,BR,CO,MX,US,GB,ES,AR,IN,PK,CN,BD,VN,NG,ID,KR,NP,INTL)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "IN"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "4237f7f9-9d79-4529-b591-9e825566c760",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page number",
                            "type": "text/plain"
                          },
                          "key": "pageNumber",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page size",
                            "type": "text/plain"
                          },
                          "key": "pageSize",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Start date",
                            "type": "text/plain"
                          },
                          "key": "dateFrom",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "End date",
                            "type": "text/plain"
                          },
                          "key": "dateTo",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Status (This can only be one of SUCCESSFUL,IN_PROGRESS,TEMPORARY_FAILURE,ERROR)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "IN_PROGRESS"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Country code in ISO 3166-1 alpha-2 format (This can only be one of UY,BR,CO,MX,US,GB,ES,AR,IN,PK,CN,BD,VN,NG,ID,KR,NP,INTL)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "IN"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "bb46e882-90d0-4f44-b97b-c9ff0a42c23e",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page number",
                            "type": "text/plain"
                          },
                          "key": "pageNumber",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page size",
                            "type": "text/plain"
                          },
                          "key": "pageSize",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Start date",
                            "type": "text/plain"
                          },
                          "key": "dateFrom",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "End date",
                            "type": "text/plain"
                          },
                          "key": "dateTo",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Status (This can only be one of SUCCESSFUL,IN_PROGRESS,TEMPORARY_FAILURE,ERROR)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "IN_PROGRESS"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Country code in ISO 3166-1 alpha-2 format (This can only be one of UY,BR,CO,MX,US,GB,ES,AR,IN,PK,CN,BD,VN,NG,ID,KR,NP,INTL)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "IN"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "f1e064b5-d435-447d-b4fe-64fdb177d042",
              "name": "Get Bank Account Validation Details",
              "request": {
                "name": "Get Bank Account Validation Details",
                "description": {
                  "content": "Retrieve the validation information using the validation request ID previously obtained from the Create Bank Account Validation endpoint.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "bank-account-validation",
                    ":id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "150cdc2c-3042-4d82-9b41-881e5b9ffb93",
                  "name": "The validation request was found and the response is returned.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"country\": \"PK\",\n    \"createdAt\": \"<dateTime>\",\n    \"updatedAt\": \"<dateTime>\",\n    \"inputData\": {\n      \"key_0\": false,\n      \"key_1\": 9586,\n      \"key_2\": \"string\",\n      \"key_3\": false,\n      \"key_4\": \"string\"\n    },\n    \"status\": \"IN_PROGRESS\",\n    \"statusDescription\": \"<string>\",\n    \"countryData\": {\n      \"account\": {\n        \"number\": \"<string>\",\n        \"currency\": \"ARS\",\n        \"type\": \"WALLET\"\n      },\n      \"owners\": [\n        {\n          \"documentType\": \"CUIT\",\n          \"documentNumber\": \"<string>\",\n          \"name\": \"<string>\",\n          \"type\": \"LEGAL\"\n        },\n        {\n          \"documentType\": \"DNI\",\n          \"documentNumber\": \"<string>\",\n          \"name\": \"<string>\",\n          \"type\": \"NATURAL\"\n        }\n      ]\n    }\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "9cec45c6-a76c-4916-87e4-2513bba3bbed",
                  "name": "Unauthorized. The request is missing the required authentication credentials.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unauthorized",
                  "code": 401,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "de128409-03c1-41a0-98e9-e7009a472dad",
                  "name": "Forbidden. The endpoint is not allowed to be accessed in this environment.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "c2f0a363-5892-4793-9bad-5394c8cf13e9",
                  "name": "Validation request not found.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Not Found",
                  "code": 404,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "41a69fd0-b59a-4a58-9379-437753f22071",
                  "name": "The validation request ID is invalid.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "99380c7d-a453-490b-9302-87d7f6cbd5df",
                  "name": "Internal server error.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ],
      "description": {
        "content": "Easily verify bank accounts globally with our single API solution.",
        "type": "text/plain"
      },
      "event": []
    },
    {
      "name": "Claims",
      "item": [
        {
          "name": "Claims",
          "description": "",
          "item": [
            {
              "id": "7fa9dda1-509b-40c8-b3da-1753f92a3ff3",
              "name": "List Claims",
              "request": {
                "name": "List Claims",
                "description": {
                  "content": "Returns a paginated list of claims.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "claims",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "Page index (1-based). Results start from page 1 by default.",
                        "type": "text/plain"
                      },
                      "key": "page_number",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Maximum number of claims to return per page. Defaults to 50.",
                        "type": "text/plain"
                      },
                      "key": "page_size",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "7286e10a-6cae-4fb5-9fdd-377e320db8ce",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of claims to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"company_id\": \"<integer>\",\n      \"account_id\": \"<integer>\",\n      \"status\": \"PENDING\",\n      \"type\": \"MISTAKE\",\n      \"external_claim_id\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"company_id\": \"<integer>\",\n      \"account_id\": \"<integer>\",\n      \"status\": \"PENDING\",\n      \"type\": \"MISTAKE\",\n      \"external_claim_id\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\"\n    }\n  ],\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "73f7a5f0-56f4-4a4b-adb2-c4d7f0b72771",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of claims to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "c0937acc-b216-4f4c-ad0f-0c051db30bbd",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of claims to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "83326dcb-e39d-4dde-92a8-b1e1cfe565cd",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of claims to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "7424553c-7832-4420-9e8d-6bd168a446f3",
              "name": "Get Claim Details",
              "request": {
                "name": "Get Claim Details",
                "description": {
                  "content": "Retrieve details of a claim.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "claims",
                    ":claim_id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "claim_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "80bf1edd-1d2e-47bc-b482-5e8c86775172",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":claim_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "claim_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"company_id\": \"<integer>\",\n    \"account_id\": \"<integer>\",\n    \"status\": \"PENDING\",\n    \"type\": \"MISTAKE\",\n    \"external_claim_id\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "0d20c43a-5714-4807-8c6f-1ec09757f9c8",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":claim_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "claim_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e1415168-1dfb-44a5-b37f-bd0998fafad5",
                  "name": "Not Found",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":claim_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "claim_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Not Found",
                  "code": 404,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "a40c4387-8404-47e9-ae1e-d7d0cbc0c162",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":claim_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "claim_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "c8ef3559-d3d4-4fd7-9fc2-d3ae75898ce7",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":claim_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "claim_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ],
      "description": {
        "content": "Manage your claims",
        "type": "text/plain"
      },
      "event": []
    },
    {
      "name": "Identity Validation",
      "item": [
        {
          "name": "Identity Validation",
          "description": "",
          "item": [
            {
              "id": "b7c7d0b6-5918-42b7-a606-d3e1f64907fa",
              "name": "Create Identity Validation",
              "request": {
                "name": "Create Identity Validation",
                "description": {
                  "content": "Create an identity validation request to verify the identity of a user. The response carries the full validation; when the result is not available yet, the status is IN_PROGRESS and the country data is empty until the validation finishes.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "identity-validation",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"country\": {\n    \"code\": \"AR\",\n    \"validation\": {\n      \"type\": \"AR_DNI\",\n      \"dni\": \"<string>\"\n    }\n  },\n  \"callbackUrl\": \"<string>\",\n  \"freshnessLimit\": \"<integer>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "44e14d23-ef09-43fc-a459-75604e3b0425",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"country\": {\n    \"code\": \"AR\",\n    \"validation\": {\n      \"type\": \"AR_DNI\",\n      \"dni\": \"<string>\"\n    }\n  },\n  \"callbackUrl\": \"<string>\",\n  \"freshnessLimit\": \"<integer>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"createdAt\": \"<dateTime>\",\n    \"updatedAt\": \"<dateTime>\",\n    \"status\": \"IN_PROGRESS\",\n    \"validatedAt\": \"<dateTime>\",\n    \"statusDescription\": \"<string>\",\n    \"callbackUrl\": \"<string>\",\n    \"freshnessLimit\": 2592000,\n    \"country\": {\n      \"code\": \"AR\",\n      \"validation\": {\n        \"type\": \"AR_DNI\",\n        \"dni\": \"<string>\",\n        \"fullName\": \"<string>\",\n        \"deceased\": \"<boolean>\",\n        \"dateOfBirth\": \"<string>\",\n        \"activityDescription\": \"<string>\",\n        \"activityCode\": \"<string>\"\n      }\n    }\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "45dbcc59-ed0a-4d61-9167-49ca08e840ab",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"country\": {\n    \"code\": \"AR\",\n    \"validation\": {\n      \"type\": \"AR_DNI\",\n      \"dni\": \"<string>\"\n    }\n  },\n  \"callbackUrl\": \"<string>\",\n  \"freshnessLimit\": \"<integer>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "6917a0d4-ef9f-4480-a665-4dad7081d031",
              "name": "List Identity Validation Requests",
              "request": {
                "name": "List Identity Validation Requests",
                "description": {
                  "content": "Retrieve a paginated list of identity validation requests.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "identity-validation",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "Page number",
                        "type": "text/plain"
                      },
                      "key": "pageNumber",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Page size",
                        "type": "text/plain"
                      },
                      "key": "pageSize",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Start date",
                        "type": "text/plain"
                      },
                      "key": "dateFrom",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "End date",
                        "type": "text/plain"
                      },
                      "key": "dateTo",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Status (This can only be one of SUCCESSFUL,FAILED,IN_PROGRESS,TEMPORARY_FAILURE)",
                        "type": "text/plain"
                      },
                      "key": "status",
                      "value": "FAILED"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "b7354f8a-4bcb-47ff-b56f-600bb2480cc1",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page number",
                            "type": "text/plain"
                          },
                          "key": "pageNumber",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page size",
                            "type": "text/plain"
                          },
                          "key": "pageSize",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Start date",
                            "type": "text/plain"
                          },
                          "key": "dateFrom",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "End date",
                            "type": "text/plain"
                          },
                          "key": "dateTo",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Status (This can only be one of SUCCESSFUL,FAILED,IN_PROGRESS,TEMPORARY_FAILURE)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "FAILED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"createdAt\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"status\": \"IN_PROGRESS\",\n      \"validatedAt\": \"<dateTime>\",\n      \"statusDescription\": \"<string>\",\n      \"callbackUrl\": \"<string>\",\n      \"freshnessLimit\": 2592000,\n      \"country\": {\n        \"code\": \"AR\",\n        \"validation\": {\n          \"type\": \"AR_DNI\",\n          \"dni\": \"<string>\",\n          \"fullName\": \"<string>\",\n          \"deceased\": \"<boolean>\",\n          \"dateOfBirth\": \"<string>\",\n          \"activityDescription\": \"<string>\",\n          \"activityCode\": \"<string>\"\n        }\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"createdAt\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"status\": \"IN_PROGRESS\",\n      \"validatedAt\": \"<dateTime>\",\n      \"statusDescription\": \"<string>\",\n      \"callbackUrl\": \"<string>\",\n      \"freshnessLimit\": 2592000,\n      \"country\": {\n        \"code\": \"AR\",\n        \"validation\": {\n          \"type\": \"AR_DNI\",\n          \"dni\": \"<string>\",\n          \"fullName\": \"<string>\",\n          \"deceased\": \"<boolean>\",\n          \"dateOfBirth\": \"<string>\",\n          \"activityDescription\": \"<string>\",\n          \"activityCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"pagination\": {\n    \"total\": 0,\n    \"page\": 1,\n    \"perPage\": 50\n  },\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "3526c439-f4f6-4d1f-b2b8-a7513ededf31",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page number",
                            "type": "text/plain"
                          },
                          "key": "pageNumber",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page size",
                            "type": "text/plain"
                          },
                          "key": "pageSize",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Start date",
                            "type": "text/plain"
                          },
                          "key": "dateFrom",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "End date",
                            "type": "text/plain"
                          },
                          "key": "dateTo",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Status (This can only be one of SUCCESSFUL,FAILED,IN_PROGRESS,TEMPORARY_FAILURE)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "FAILED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "b1e74406-7811-40f4-b124-a4406ae6288b",
              "name": "Get Identity Validation Details",
              "request": {
                "name": "Get Identity Validation Details",
                "description": {
                  "content": "Retrieve an identity validation information using the validation request ID previously obtained from the Create Identity Validation endpoint.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "identity-validation",
                    ":id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "d68d35aa-9000-494c-8b5f-3650e64d40c6",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"createdAt\": \"<dateTime>\",\n    \"updatedAt\": \"<dateTime>\",\n    \"status\": \"IN_PROGRESS\",\n    \"validatedAt\": \"<dateTime>\",\n    \"statusDescription\": \"<string>\",\n    \"callbackUrl\": \"<string>\",\n    \"freshnessLimit\": 2592000,\n    \"country\": {\n      \"code\": \"AR\",\n      \"validation\": {\n        \"type\": \"AR_DNI\",\n        \"dni\": \"<string>\",\n        \"fullName\": \"<string>\",\n        \"deceased\": \"<boolean>\",\n        \"dateOfBirth\": \"<string>\",\n        \"activityDescription\": \"<string>\",\n        \"activityCode\": \"<string>\"\n      }\n    }\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "f2a3995b-300a-4841-8f38-534053375b6f",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ],
      "description": {
        "content": "An Identity Validation API provides a secure way to verify users' identities by cross-checking provided personal information against trusted data sources. It allows businesses to validate key details such as name, address, date of birth, and government-issued identification (e.g., SSN, passport). This API helps prevent fraud, comply with KYC (Know Your Customer) regulations, and streamline onboarding processes by ensuring that only verified users gain access to services. By integrating identity validation, organizations can improve security, reduce risk, and enhance user trust.",
        "type": "text/plain"
      },
      "event": []
    },
    {
      "name": "Onboarding",
      "item": [
        {
          "name": "Onboarding",
          "description": "",
          "item": [
            {
              "id": "990c64a6-87c0-49c9-bbaf-4c968e0ec322",
              "name": "Create Company",
              "request": {
                "name": "Create Company",
                "description": {
                  "content": "Create a company.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "onboarding",
                    "company",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"business_name\": \"<string>\",\n  \"friendly_name\": \"<string>\",\n  \"country_of_registration\": \"AB\",\n  \"registration_number\": \"<string>\",\n  \"entity_type\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"acc_default_webhook_url\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "bfabc04e-35ac-4e51-9595-461e933e6e0c",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"business_name\": \"<string>\",\n  \"friendly_name\": \"<string>\",\n  \"country_of_registration\": \"AB\",\n  \"registration_number\": \"<string>\",\n  \"entity_type\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"acc_default_webhook_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"idempotency_key\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"business_name\": \"<string>\",\n    \"friendly_name\": \"<string>\",\n    \"country_of_registration\": \"<string>\",\n    \"registration_number\": \"<string>\",\n    \"entity_type\": \"<string>\",\n    \"acc_default_webhook_url\": \"<string>\",\n    \"parent_company_id\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "d98c618b-1147-4750-90c7-c43e9bccdfc6",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"business_name\": \"<string>\",\n  \"friendly_name\": \"<string>\",\n  \"country_of_registration\": \"AB\",\n  \"registration_number\": \"<string>\",\n  \"entity_type\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"acc_default_webhook_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "adacddab-4e10-4fcf-8dae-c77c19983f04",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"business_name\": \"<string>\",\n  \"friendly_name\": \"<string>\",\n  \"country_of_registration\": \"AB\",\n  \"registration_number\": \"<string>\",\n  \"entity_type\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"acc_default_webhook_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "90164d7c-add8-4222-8533-a6e6a1ccc905",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"business_name\": \"<string>\",\n  \"friendly_name\": \"<string>\",\n  \"country_of_registration\": \"AB\",\n  \"registration_number\": \"<string>\",\n  \"entity_type\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"acc_default_webhook_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "ccdc3777-d860-4214-a05e-076fc238c560",
              "name": "List Companies",
              "request": {
                "name": "List Companies",
                "description": {
                  "content": "Retrieve a list of companies and child companies.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "onboarding",
                    "company",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "Idempotency key",
                        "type": "text/plain"
                      },
                      "key": "idempotency_key",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "b21d6bfa-c147-43a0-906f-cbf73a67c810",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"idempotency_key\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"business_name\": \"<string>\",\n      \"friendly_name\": \"<string>\",\n      \"country_of_registration\": \"<string>\",\n      \"registration_number\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"acc_default_webhook_url\": \"<string>\",\n      \"parent_company_id\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"idempotency_key\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"business_name\": \"<string>\",\n      \"friendly_name\": \"<string>\",\n      \"country_of_registration\": \"<string>\",\n      \"registration_number\": \"<string>\",\n      \"entity_type\": \"<string>\",\n      \"acc_default_webhook_url\": \"<string>\",\n      \"parent_company_id\": \"<string>\"\n    }\n  ],\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "b09dd336-c782-4182-8d70-7b9914af902d",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "9cdc0573-23ef-48ba-977e-2f19f184bf18",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "4548000c-a354-4477-9818-e05a459bcbc0",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "Idempotency key",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "329b52b2-7f19-4bdd-ae66-94bb55f61b71",
              "name": "Get Company Details",
              "request": {
                "name": "Get Company Details",
                "description": {
                  "content": "Retrieve the details of a company.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "onboarding",
                    "company",
                    ":company_id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "company_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "5f43fd8f-75e3-40f8-b9ff-fdc362ed2a39",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"idempotency_key\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"business_name\": \"<string>\",\n    \"friendly_name\": \"<string>\",\n    \"country_of_registration\": \"<string>\",\n    \"registration_number\": \"<string>\",\n    \"entity_type\": \"<string>\",\n    \"acc_default_webhook_url\": \"<string>\",\n    \"parent_company_id\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "20bf02ed-f5b0-4cfe-813d-26549e2a973e",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8e309d53-c676-4b0a-b52c-fdce19eb9619",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "6c733395-4554-418b-b825-1ef1e5ab107a",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "3b0b95fc-1b93-48a0-8861-9247ded30d4c",
              "name": "Enable Product and Geography",
              "request": {
                "name": "Enable Product and Geography",
                "description": {
                  "content": "Request enablement of a product and geography for a company. \n\nThis action is required for all companies created via the Create Company endpoint. \n\nProducts and geographies for primary companies are enabled by Infinia staff.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "onboarding",
                    "company",
                    ":company_id",
                    "product",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "company_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"product\": \"IDENTITY_VALIDATION\",\n  \"geography\": \"WR\",\n  \"callback_url\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "f63a63d5-a276-43b3-85aa-f220a592c7ef",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        "product",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"product\": \"IDENTITY_VALIDATION\",\n  \"geography\": \"WR\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"company_id\": \"<string>\",\n    \"requested_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"status\": \"APPROVED\",\n    \"product\": \"PAYOUTS\",\n    \"geography\": \"GB\",\n    \"callback_url\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e3030c08-e234-41a5-9ed8-8af76992e98f",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        "product",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"product\": \"IDENTITY_VALIDATION\",\n  \"geography\": \"WR\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "2f534797-ffa2-4fc2-8ee2-80c0da0a4cda",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        "product",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"product\": \"IDENTITY_VALIDATION\",\n  \"geography\": \"WR\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "dc170371-4aa9-4b3f-b264-99d2194612f1",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        "product",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"product\": \"IDENTITY_VALIDATION\",\n  \"geography\": \"WR\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "ba384b87-496c-4cd3-92b7-d2925356cbfa",
              "name": "Get Company Products",
              "request": {
                "name": "Get Company Products",
                "description": {
                  "content": "Retrieve enabled products for a company.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "onboarding",
                    "company",
                    ":company_id",
                    "product",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "company_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "0334c71f-2f6a-4c98-98e1-f40c34ceee0d",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        "product",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"company_id\": \"<string>\",\n      \"requested_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\",\n      \"status\": \"KYB_REQUIRED\",\n      \"product\": \"INTERNAL_TRANSFER\",\n      \"geography\": \"PY\",\n      \"callback_url\": \"<string>\"\n    },\n    {\n      \"company_id\": \"<string>\",\n      \"requested_at\": \"<dateTime>\",\n      \"updated_at\": \"<dateTime>\",\n      \"status\": \"APPROVED\",\n      \"product\": \"ACCOUNT_VALIDATION\",\n      \"geography\": \"US\",\n      \"callback_url\": \"<string>\"\n    }\n  ],\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "b0be48c2-4698-44e9-b311-97af899c5ecb",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        "product",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "71108b2c-e0c2-42f2-867a-07c0a604a490",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        "product",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "c0d62cf3-da36-4830-b341-64e9976db738",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "company",
                        ":company_id",
                        "product",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "company_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ],
      "description": {
        "content": "Create customers and enable products",
        "type": "text/plain"
      },
      "event": []
    },
    {
      "name": "Payins",
      "item": [
        {
          "name": "Payins",
          "description": "",
          "item": [
            {
              "id": "29c4e47b-58e9-4a15-9acd-42e84fda1496",
              "name": "List Payment Refunds",
              "request": {
                "name": "List Payment Refunds",
                "description": {
                  "content": "Retrieve a list of payin refunds.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "payments",
                    "refund",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "payment_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "refund_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "idempotency_key",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "date_from",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "date_to",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "page_number",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "page_size",
                      "value": "10"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "6339c234-0c52-4748-831c-2622166546f6",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "payment_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "refund_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"status\": \"SUCCESS\",\n      \"updated_at\": \"<dateTime>\",\n      \"idempotency_key\": \"<string>\",\n      \"description\": \"<string>\",\n      \"debit_movement_id\": \"<integer>\",\n      \"bounce_movement_id\": \"<integer>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      },\n      \"voucher_id\": \"<string>\",\n      \"failure_reason\": \"<string>\",\n      \"payment_id\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"status\": \"SUCCESS\",\n      \"updated_at\": \"<dateTime>\",\n      \"idempotency_key\": \"<string>\",\n      \"description\": \"<string>\",\n      \"debit_movement_id\": \"<integer>\",\n      \"bounce_movement_id\": \"<integer>\",\n      \"company\": {\n        \"id\": \"<string>\",\n        \"name\": \"<string>\"\n      },\n      \"voucher_id\": \"<string>\",\n      \"failure_reason\": \"<string>\",\n      \"payment_id\": \"<string>\"\n    }\n  ],\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "5d564ad7-06df-4881-9761-7ed4a128481d",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "payment_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "refund_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "9e0f7e1e-4a67-4194-a808-0adcb2bb12e5",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "payment_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "refund_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "9edecc4c-d967-46d7-bab3-a9cc06072042",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "payment_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "refund_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "idempotency_key",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "10"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "cebc835c-9de4-47e1-a488-90108de2e3b6",
              "name": "Refund Payment",
              "request": {
                "name": "Refund Payment",
                "description": {
                  "content": "Create a refund for a payin. Only completed payins are eligible for refunds. \n\nA refund may still fail after being initially marked as `SUCCESS`; in such cases, you'll receive a callback with `status = FAILED`. \n\nTo simulate a failed refund in the sandbox, create a payin with `amount = 101` (see the `Create Payment` endpoint for details).\n\nTo refund a deposit, use the `Create Refund` endpoint from Accounts.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "payments",
                    "refund",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"payment_id\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"description\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "de581f29-6704-4730-a001-5e9c77686887",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"payment_id\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"description\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"created_at\": \"<dateTime>\",\n    \"status\": \"SUCCESS\",\n    \"updated_at\": \"<dateTime>\",\n    \"idempotency_key\": \"<string>\",\n    \"description\": \"<string>\",\n    \"debit_movement_id\": \"<integer>\",\n    \"bounce_movement_id\": \"<integer>\",\n    \"company\": {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\"\n    },\n    \"voucher_id\": \"<string>\",\n    \"failure_reason\": \"<string>\",\n    \"payment_id\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8014a027-e667-4507-bdcb-ef778f46d5ea",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"payment_id\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"description\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "a6514072-35e0-4338-991b-1515851924b9",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"payment_id\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"description\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "2075cb10-431c-4476-80fe-6a304caae2e1",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        "refund",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"payment_id\": \"<string>\",\n  \"idempotency_key\": \"<string>\",\n  \"description\": \"<string>\",\n  \"callback_url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "51983f1e-878e-46fc-a2f2-5315ceaea0ea",
              "name": "Create Payment",
              "request": {
                "name": "Create Payment",
                "description": {
                  "content": "Create a one-time payment instruction with a fixed amount and expiration. \n\nTo test different scenarios for each market and payment rail, please refer to the Examples tab on the right side of the screen. \n\nEach market has a dedicated example. Use the following amounts to simulate specific statuses: \n\n100, 101 → COMPLETED, 102 → ERROR, any other amount → AWAITING.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "payments",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"<number>\",\n  \"expiryDate\": \"<dateTime>\",\n  \"accountId\": \"<string>\",\n  \"market\": \"AR\",\n  \"type\": \"OFFLINE\",\n  \"currency\": \"ARS\",\n  \"clientTaxId\": \"<string>\",\n  \"callbackUrl\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"redirectUrl\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "00175ff9-cc1a-4147-8d92-1617a8f7520d",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"amount\": \"<number>\",\n  \"expiryDate\": \"<dateTime>\",\n  \"accountId\": \"<string>\",\n  \"market\": \"AR\",\n  \"type\": \"OFFLINE\",\n  \"currency\": \"ARS\",\n  \"clientTaxId\": \"<string>\",\n  \"callbackUrl\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"redirectUrl\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"market\": \"BR\",\n      \"type\": \"OFFLINE\",\n      \"amount\": \"<number>\",\n      \"currency\": \"ARS\",\n      \"createdAt\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"attempts\": [\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"COMPLETED\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        },\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"PARTIALLY_REFUNDED\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        }\n      ],\n      \"company\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\"\n      },\n      \"status\": \"PARTIALLY_REFUNDED\",\n      \"retryable\": false,\n      \"expiryDate\": \"<dateTime>\",\n      \"callbackUrl\": \"<string>\",\n      \"redirectUrl\": \"<string>\",\n      \"startUrl\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"account\": {\n        \"country\": \"<string>\",\n        \"bank\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"number\": \"<string>\",\n        \"id\": \"<string>\"\n      },\n      \"accountId\": \"<string>\",\n      \"providerExternalId\": \"<string>\",\n      \"initData\": \"<string>\",\n      \"payerData\": {\n        \"name\": \"<string>\",\n        \"documentNumber\": \"<string>\",\n        \"documentType\": \"<string>\",\n        \"bankCode\": \"<string>\",\n        \"bankName\": \"<string>\",\n        \"accountNumber\": \"<string>\"\n      },\n      \"voucherId\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"market\": \"GB\",\n      \"type\": \"SPEI\",\n      \"amount\": \"<number>\",\n      \"currency\": \"BRL\",\n      \"createdAt\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"attempts\": [\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"ERROR\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        },\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"PARTIALLY_REFUNDED\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        }\n      ],\n      \"company\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\"\n      },\n      \"status\": \"REFUNDED\",\n      \"retryable\": false,\n      \"expiryDate\": \"<dateTime>\",\n      \"callbackUrl\": \"<string>\",\n      \"redirectUrl\": \"<string>\",\n      \"startUrl\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"account\": {\n        \"country\": \"<string>\",\n        \"bank\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"number\": \"<string>\",\n        \"id\": \"<string>\"\n      },\n      \"accountId\": \"<string>\",\n      \"providerExternalId\": \"<string>\",\n      \"initData\": \"<string>\",\n      \"payerData\": {\n        \"name\": \"<string>\",\n        \"documentNumber\": \"<string>\",\n        \"documentType\": \"<string>\",\n        \"bankCode\": \"<string>\",\n        \"bankName\": \"<string>\",\n        \"accountNumber\": \"<string>\"\n      },\n      \"voucherId\": \"<string>\"\n    }\n  ],\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e0d6ffbc-ee00-4d92-8653-05bf9e5ce1fd",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"amount\": \"<number>\",\n  \"expiryDate\": \"<dateTime>\",\n  \"accountId\": \"<string>\",\n  \"market\": \"AR\",\n  \"type\": \"OFFLINE\",\n  \"currency\": \"ARS\",\n  \"clientTaxId\": \"<string>\",\n  \"callbackUrl\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"redirectUrl\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "4a017683-1871-40d8-875a-216f89c9ef19",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"amount\": \"<number>\",\n  \"expiryDate\": \"<dateTime>\",\n  \"accountId\": \"<string>\",\n  \"market\": \"AR\",\n  \"type\": \"OFFLINE\",\n  \"currency\": \"ARS\",\n  \"clientTaxId\": \"<string>\",\n  \"callbackUrl\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"redirectUrl\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e2109e75-1640-46ad-bac3-27f2937b3ac3",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"amount\": \"<number>\",\n  \"expiryDate\": \"<dateTime>\",\n  \"accountId\": \"<string>\",\n  \"market\": \"AR\",\n  \"type\": \"OFFLINE\",\n  \"currency\": \"ARS\",\n  \"clientTaxId\": \"<string>\",\n  \"callbackUrl\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"redirectUrl\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "5cc4cd56-86d9-4c16-992b-47c39a23212f",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"amount\": \"<number>\",\n  \"expiryDate\": \"<dateTime>\",\n  \"accountId\": \"<string>\",\n  \"market\": \"AR\",\n  \"type\": \"OFFLINE\",\n  \"currency\": \"ARS\",\n  \"clientTaxId\": \"<string>\",\n  \"callbackUrl\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"redirectUrl\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "ef1498a0-790d-4c94-b436-dd8663e032bf",
              "name": "List Payments",
              "request": {
                "name": "List Payments",
                "description": {
                  "content": "Retrieve a paginated list of payins.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "payments",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "pageNumber",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "pageSize",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "dateFrom",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "dateTo",
                      "value": "<dateTime>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": " (This can only be one of AWAITING,EXPIRED,COMPLETED,ERROR,PARTIALLY_REFUNDED,REFUNDED)",
                        "type": "text/plain"
                      },
                      "key": "status",
                      "value": "PARTIALLY_REFUNDED"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": " (This can only be one of BR,AR,CO,CL,BO,PY,SG,PE,MX,UY,US,EU,XX,GB)",
                        "type": "text/plain"
                      },
                      "key": "market",
                      "value": "GB"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": " (This can only be one of ONLINE,OFFLINE,PULL,PIX,PIX_ITP,PLEXO)",
                        "type": "text/plain"
                      },
                      "key": "type",
                      "value": "ONLINE"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "includeChildCompanies",
                      "value": "false"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "reference",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "paymentId",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "b62b73bf-316d-454a-bab9-f07f38e1b31c",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "pageNumber",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "pageSize",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "dateFrom",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "dateTo",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of AWAITING,EXPIRED,COMPLETED,ERROR,PARTIALLY_REFUNDED,REFUNDED)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "PARTIALLY_REFUNDED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BR,AR,CO,CL,BO,PY,SG,PE,MX,UY,US,EU,XX,GB)",
                            "type": "text/plain"
                          },
                          "key": "market",
                          "value": "GB"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ONLINE,OFFLINE,PULL,PIX,PIX_ITP,PLEXO)",
                            "type": "text/plain"
                          },
                          "key": "type",
                          "value": "ONLINE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "includeChildCompanies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "reference",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "paymentId",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"market\": \"AR\",\n      \"type\": \"OFFLINE\",\n      \"amount\": \"<number>\",\n      \"currency\": \"BRLA\",\n      \"createdAt\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"attempts\": [\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"REFUNDED\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        },\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"PARTIALLY_REFUNDED\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        }\n      ],\n      \"company\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\"\n      },\n      \"status\": \"COMPLETED\",\n      \"retryable\": false,\n      \"expiryDate\": \"<dateTime>\",\n      \"callbackUrl\": \"<string>\",\n      \"redirectUrl\": \"<string>\",\n      \"startUrl\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"account\": {\n        \"country\": \"<string>\",\n        \"bank\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"number\": \"<string>\",\n        \"id\": \"<string>\"\n      },\n      \"accountId\": \"<string>\",\n      \"providerExternalId\": \"<string>\",\n      \"initData\": \"<string>\",\n      \"payerData\": {\n        \"name\": \"<string>\",\n        \"documentNumber\": \"<string>\",\n        \"documentType\": \"<string>\",\n        \"bankCode\": \"<string>\",\n        \"bankName\": \"<string>\",\n        \"accountNumber\": \"<string>\"\n      },\n      \"voucherId\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"market\": \"GB\",\n      \"type\": \"PULL\",\n      \"amount\": \"<number>\",\n      \"currency\": \"USD\",\n      \"createdAt\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"attempts\": [\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"REFUNDED\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        },\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"REFUNDED\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        }\n      ],\n      \"company\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\"\n      },\n      \"status\": \"REFUNDED\",\n      \"retryable\": false,\n      \"expiryDate\": \"<dateTime>\",\n      \"callbackUrl\": \"<string>\",\n      \"redirectUrl\": \"<string>\",\n      \"startUrl\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"account\": {\n        \"country\": \"<string>\",\n        \"bank\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"number\": \"<string>\",\n        \"id\": \"<string>\"\n      },\n      \"accountId\": \"<string>\",\n      \"providerExternalId\": \"<string>\",\n      \"initData\": \"<string>\",\n      \"payerData\": {\n        \"name\": \"<string>\",\n        \"documentNumber\": \"<string>\",\n        \"documentType\": \"<string>\",\n        \"bankCode\": \"<string>\",\n        \"bankName\": \"<string>\",\n        \"accountNumber\": \"<string>\"\n      },\n      \"voucherId\": \"<string>\"\n    }\n  ],\n  \"page_number\": \"<integer>\",\n  \"page_size\": \"<integer>\",\n  \"total_pages\": \"<integer>\",\n  \"total_payments\": \"<integer>\",\n  \"next_cursor\": \"<string>\",\n  \"has_more\": false,\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "ac074690-4df5-44cf-88df-291d1f87bca9",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "pageNumber",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "pageSize",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "dateFrom",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "dateTo",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of AWAITING,EXPIRED,COMPLETED,ERROR,PARTIALLY_REFUNDED,REFUNDED)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "PARTIALLY_REFUNDED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BR,AR,CO,CL,BO,PY,SG,PE,MX,UY,US,EU,XX,GB)",
                            "type": "text/plain"
                          },
                          "key": "market",
                          "value": "GB"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ONLINE,OFFLINE,PULL,PIX,PIX_ITP,PLEXO)",
                            "type": "text/plain"
                          },
                          "key": "type",
                          "value": "ONLINE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "includeChildCompanies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "reference",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "paymentId",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "b2b08736-5c24-40b3-b49f-6e9e7003c2dd",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "pageNumber",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "pageSize",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "dateFrom",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "dateTo",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of AWAITING,EXPIRED,COMPLETED,ERROR,PARTIALLY_REFUNDED,REFUNDED)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "PARTIALLY_REFUNDED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BR,AR,CO,CL,BO,PY,SG,PE,MX,UY,US,EU,XX,GB)",
                            "type": "text/plain"
                          },
                          "key": "market",
                          "value": "GB"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ONLINE,OFFLINE,PULL,PIX,PIX_ITP,PLEXO)",
                            "type": "text/plain"
                          },
                          "key": "type",
                          "value": "ONLINE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "includeChildCompanies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "reference",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "paymentId",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "0efabcae-484e-4e6f-93b2-669acf386bfa",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "pageNumber",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "pageSize",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "dateFrom",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "dateTo",
                          "value": "<dateTime>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of AWAITING,EXPIRED,COMPLETED,ERROR,PARTIALLY_REFUNDED,REFUNDED)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "PARTIALLY_REFUNDED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of BR,AR,CO,CL,BO,PY,SG,PE,MX,UY,US,EU,XX,GB)",
                            "type": "text/plain"
                          },
                          "key": "market",
                          "value": "GB"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ONLINE,OFFLINE,PULL,PIX,PIX_ITP,PLEXO)",
                            "type": "text/plain"
                          },
                          "key": "type",
                          "value": "ONLINE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "includeChildCompanies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "reference",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "paymentId",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "d0165037-cb8a-4372-94db-daac9dec7839",
              "name": "Get Payment Details",
              "request": {
                "name": "Get Payment Details",
                "description": {
                  "content": "Retrieve details of a payin.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "payments",
                    ":id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "78ee7fea-13b6-4efb-99dc-6ddd254d8f9e",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"market\": \"CO\",\n      \"type\": \"OFFLINE\",\n      \"amount\": \"<number>\",\n      \"currency\": \"PEN\",\n      \"createdAt\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"attempts\": [\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"PARTIALLY_REFUNDED\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        },\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"REFUNDED\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        }\n      ],\n      \"company\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\"\n      },\n      \"status\": \"ERROR\",\n      \"retryable\": false,\n      \"expiryDate\": \"<dateTime>\",\n      \"callbackUrl\": \"<string>\",\n      \"redirectUrl\": \"<string>\",\n      \"startUrl\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"account\": {\n        \"country\": \"<string>\",\n        \"bank\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"number\": \"<string>\",\n        \"id\": \"<string>\"\n      },\n      \"accountId\": \"<string>\",\n      \"providerExternalId\": \"<string>\",\n      \"initData\": \"<string>\",\n      \"payerData\": {\n        \"name\": \"<string>\",\n        \"documentNumber\": \"<string>\",\n        \"documentType\": \"<string>\",\n        \"bankCode\": \"<string>\",\n        \"bankName\": \"<string>\",\n        \"accountNumber\": \"<string>\"\n      },\n      \"voucherId\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"market\": \"US\",\n      \"type\": \"ONLINE\",\n      \"amount\": \"<number>\",\n      \"currency\": \"UYU\",\n      \"createdAt\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"attempts\": [\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"ERROR\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        },\n        {\n          \"createdAt\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"status\": \"EXPIRED\",\n          \"providerExternalId\": \"<string>\",\n          \"providerExternalId2\": \"<string>\",\n          \"payerData\": {\n            \"name\": \"<string>\",\n            \"documentNumber\": \"<string>\",\n            \"documentType\": \"<string>\",\n            \"bankCode\": \"<string>\",\n            \"bankName\": \"<string>\",\n            \"accountNumber\": \"<string>\"\n          }\n        }\n      ],\n      \"company\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\"\n      },\n      \"status\": \"COMPLETED\",\n      \"retryable\": false,\n      \"expiryDate\": \"<dateTime>\",\n      \"callbackUrl\": \"<string>\",\n      \"redirectUrl\": \"<string>\",\n      \"startUrl\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"account\": {\n        \"country\": \"<string>\",\n        \"bank\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"number\": \"<string>\",\n        \"id\": \"<string>\"\n      },\n      \"accountId\": \"<string>\",\n      \"providerExternalId\": \"<string>\",\n      \"initData\": \"<string>\",\n      \"payerData\": {\n        \"name\": \"<string>\",\n        \"documentNumber\": \"<string>\",\n        \"documentType\": \"<string>\",\n        \"bankCode\": \"<string>\",\n        \"bankName\": \"<string>\",\n        \"accountNumber\": \"<string>\"\n      },\n      \"voucherId\": \"<string>\"\n    }\n  ],\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "2831488a-387f-4e65-b1c4-11234c504f17",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "2f1c6352-ba82-424f-9e0c-22f502337f40",
                  "name": "Validation Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    },\n    {\n      \"loc\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"msg\": \"<string>\",\n      \"type\": \"<string>\"\n    }\n  ]\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "20b24f17-0253-4c66-a6f7-a0dbc7e5b086",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ],
      "description": {
        "content": "Initiate payments using a variety of payment methods in multiple markets.",
        "type": "text/plain"
      },
      "event": []
    },
    {
      "name": "Payouts",
      "item": [
        {
          "name": "Payouts",
          "description": "",
          "item": [
            {
              "id": "809904fc-a0f7-4224-9ad2-5774fcaa0fc3",
              "name": "Create Payout",
              "request": {
                "name": "Create Payout",
                "description": {
                  "content": "Create a new payout. \n\nTo test different scenarios for each market, please refer to the Examples tab on the right side of the screen. \n\nEach market has a dedicated example. Use the following amounts to simulate specific statuses: \n\n201 → IN_PROGRESS then COMPLETED, 202 → IN_PROGRESS then FAILED, 203 → immediate ERROR, any other amount → completes immediately.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v2",
                    "payouts",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "POST",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"originId\": \"<string>\",\n  \"amount\": \"<number>\",\n  \"destinationAccount\": {\n    \"country\": \"ARGENTINA\",\n    \"currency\": \"USD\",\n    \"destinationType\": {\n      \"type\": \"ALIAS\",\n      \"alias\": \"<string>\"\n    },\n    \"adultCheck\": \"<boolean>\"\n  },\n  \"sourceAccountId\": \"<string>\",\n  \"callbackUrl\": \"<uri>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "48ceeeea-e85c-41a2-9c84-161993e5c1c0",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"originId\": \"<string>\",\n  \"amount\": \"<number>\",\n  \"destinationAccount\": {\n    \"country\": \"ARGENTINA\",\n    \"currency\": \"USD\",\n    \"destinationType\": {\n      \"type\": \"ALIAS\",\n      \"alias\": \"<string>\"\n    },\n    \"adultCheck\": \"<boolean>\"\n  },\n  \"sourceAccountId\": \"<string>\",\n  \"callbackUrl\": \"<uri>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"country\": \"UNITED_KINGDOM\",\n    \"currency\": \"BRLA\",\n    \"createdAt\": \"<string>\",\n    \"amount\": \"<number>\",\n    \"status\": \"FAILED\",\n    \"company\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"transactionId\": \"<string>\",\n    \"originId\": \"<string>\",\n    \"voucherId\": \"<string>\",\n    \"bank\": \"INFINIA\",\n    \"updatedAt\": \"<string>\",\n    \"msgStatus\": \"<string>\",\n    \"sourceAccount\": {\n      \"country\": \"<string>\",\n      \"bank\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\"\n    },\n    \"destination\": {\n      \"key_0\": 285.05682529955,\n      \"key_1\": \"string\",\n      \"key_2\": false\n    },\n    \"creditorAccount\": {\n      \"number\": \"<string>\",\n      \"branch\": \"<string>\",\n      \"type\": \"<string>\",\n      \"bankCode\": \"<string>\",\n      \"bankName\": \"<string>\",\n      \"ownerName\": \"<string>\",\n      \"ownerDocument\": \"<string>\",\n      \"ownerDocumentType\": \"<string>\"\n    },\n    \"extraInfo\": {\n      \"key_0\": 2670,\n      \"key_1\": \"string\",\n      \"key_2\": \"string\"\n    },\n    \"callbackUrl\": \"<string>\",\n    \"createdAtIso\": \"<string>\",\n    \"updatedAtIso\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8b17b14b-26b9-47e5-bfb7-76642bfd5d6f",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"originId\": \"<string>\",\n  \"amount\": \"<number>\",\n  \"destinationAccount\": {\n    \"country\": \"ARGENTINA\",\n    \"currency\": \"USD\",\n    \"destinationType\": {\n      \"type\": \"ALIAS\",\n      \"alias\": \"<string>\"\n    },\n    \"adultCheck\": \"<boolean>\"\n  },\n  \"sourceAccountId\": \"<string>\",\n  \"callbackUrl\": \"<uri>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "4423f601-10f3-4b81-9ee9-fb2abf593b5f",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"originId\": \"<string>\",\n  \"amount\": \"<number>\",\n  \"destinationAccount\": {\n    \"country\": \"ARGENTINA\",\n    \"currency\": \"USD\",\n    \"destinationType\": {\n      \"type\": \"ALIAS\",\n      \"alias\": \"<string>\"\n    },\n    \"adultCheck\": \"<boolean>\"\n  },\n  \"sourceAccountId\": \"<string>\",\n  \"callbackUrl\": \"<uri>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8b07bdc1-1e0e-4bad-89e2-73441a31ec06",
                  "name": "Payout blocked by a risk/compliance rule. The `error_code` field identifies the outcome.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"originId\": \"<string>\",\n  \"amount\": \"<number>\",\n  \"destinationAccount\": {\n    \"country\": \"ARGENTINA\",\n    \"currency\": \"USD\",\n    \"destinationType\": {\n      \"type\": \"ALIAS\",\n      \"alias\": \"<string>\"\n    },\n    \"adultCheck\": \"<boolean>\"\n  },\n  \"sourceAccountId\": \"<string>\",\n  \"callbackUrl\": \"<uri>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Conflict",
                  "code": 409,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "a0e0c971-e1ad-44e2-846c-5d1a1a569cad",
                  "name": "The source account does not have enough available balance to cover the payout. A payout record is still created with status `ERROR`, and its data is returned in the `data` field.",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"originId\": \"<string>\",\n  \"amount\": \"<number>\",\n  \"destinationAccount\": {\n    \"country\": \"ARGENTINA\",\n    \"currency\": \"USD\",\n    \"destinationType\": {\n      \"type\": \"ALIAS\",\n      \"alias\": \"<string>\"\n    },\n    \"adultCheck\": \"<boolean>\"\n  },\n  \"sourceAccountId\": \"<string>\",\n  \"callbackUrl\": \"<uri>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Precondition Failed",
                  "code": 412,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\",\n  \"data\": {\n    \"id\": \"<string>\",\n    \"country\": \"ARGENTINA\",\n    \"currency\": \"PYG\",\n    \"createdAt\": \"<string>\",\n    \"amount\": \"<number>\",\n    \"status\": \"PARTIALLY_REFUNDED\",\n    \"company\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"transactionId\": \"<string>\",\n    \"originId\": \"<string>\",\n    \"voucherId\": \"<string>\",\n    \"bank\": \"INFINIA\",\n    \"updatedAt\": \"<string>\",\n    \"msgStatus\": \"<string>\",\n    \"sourceAccount\": {\n      \"country\": \"<string>\",\n      \"bank\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\"\n    },\n    \"destination\": {\n      \"key_0\": \"string\"\n    },\n    \"creditorAccount\": {\n      \"number\": \"<string>\",\n      \"branch\": \"<string>\",\n      \"type\": \"<string>\",\n      \"bankCode\": \"<string>\",\n      \"bankName\": \"<string>\",\n      \"ownerName\": \"<string>\",\n      \"ownerDocument\": \"<string>\",\n      \"ownerDocumentType\": \"<string>\"\n    },\n    \"extraInfo\": {\n      \"key_0\": 9827,\n      \"key_1\": \"string\"\n    },\n    \"callbackUrl\": \"<string>\",\n    \"createdAtIso\": \"<string>\",\n    \"updatedAtIso\": \"<string>\"\n  }\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e6d3a3a3-f4cb-4bb4-a543-beb525eabe6c",
                  "name": "Unprocessable Entity",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"originId\": \"<string>\",\n  \"amount\": \"<number>\",\n  \"destinationAccount\": {\n    \"country\": \"ARGENTINA\",\n    \"currency\": \"USD\",\n    \"destinationType\": {\n      \"type\": \"ALIAS\",\n      \"alias\": \"<string>\"\n    },\n    \"adultCheck\": \"<boolean>\"\n  },\n  \"sourceAccountId\": \"<string>\",\n  \"callbackUrl\": \"<uri>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "58f059b3-dc0d-4ac7-a33e-c32b57ad4955",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "POST",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"originId\": \"<string>\",\n  \"amount\": \"<number>\",\n  \"destinationAccount\": {\n    \"country\": \"ARGENTINA\",\n    \"currency\": \"USD\",\n    \"destinationType\": {\n      \"type\": \"ALIAS\",\n      \"alias\": \"<string>\"\n    },\n    \"adultCheck\": \"<boolean>\"\n  },\n  \"sourceAccountId\": \"<string>\",\n  \"callbackUrl\": \"<uri>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "b17b48df-8c85-4bb1-bf93-564290381638",
              "name": "List Payouts",
              "request": {
                "name": "List Payouts",
                "description": {
                  "content": "Retrieve a paginated list of payouts.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v2",
                    "payouts",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": " (This can only be one of ARGENTINA,BRAZIL,MEXICO,PARAGUAY,PERU,COLOMBIA,CHILE,EUROPE,GLOBAL,BOLIVIA,UNITED_KINGDOM)",
                        "type": "text/plain"
                      },
                      "key": "country",
                      "value": "CHILE"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Default: 1",
                        "type": "text/plain"
                      },
                      "key": "page_number",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Default: 50",
                        "type": "text/plain"
                      },
                      "key": "page_size",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Payout ID",
                        "type": "text/plain"
                      },
                      "key": "payout_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If set to true, include payouts by any child companies of the authenticated company. Default: false.",
                        "type": "text/plain"
                      },
                      "key": "include_child_companies",
                      "value": "false"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Format: YYYY-MM-DD HH:MM:SS. The filter is applied to the startDate field, and dates are considered in UTC.",
                        "type": "text/plain"
                      },
                      "key": "date_from",
                      "value": "9514-95-13 07:72:34"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Format: YYYY-MM-DD HH:MM:SS. The filter is applied to the startDate field, and dates are considered in UTC.",
                        "type": "text/plain"
                      },
                      "key": "date_to",
                      "value": "1425-01-88 81:75:21"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": " (This can only be one of COMPLETED,IN_PROGRESS,FAILED,REFUNDED,PARTIALLY_REFUNDED,ERROR)",
                        "type": "text/plain"
                      },
                      "key": "status",
                      "value": "REFUNDED"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": " (This can only be one of ARS,USD,BRL,MXN,PYG,CLP,PEN,EUR,GBP,USDT,USDC,BOB,EURC,COP,USDC_POL,USDT_POL,EURC_BASE,USDC_BASE,USDT_BASE,USDC_ETH,USDT_ETH,EURC_ETH,USDC_TEMPO,USDT_TEMPO,EURC_TEMPO,GBP,BRLA,BRLA_POL,BRLA_BASE,BRLA_ETH,TGBP,TGBP_POL,TGBP_BASE,TGBP_ETH)",
                        "type": "text/plain"
                      },
                      "key": "currency",
                      "value": "COP"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "amount_min",
                      "value": "<number>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "amount_max",
                      "value": "<number>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Origin ID to filter payouts.",
                        "type": "text/plain"
                      },
                      "key": "origin_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "50af2e17-2757-4191-8e36-716f9cd04470",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ARGENTINA,BRAZIL,MEXICO,PARAGUAY,PERU,COLOMBIA,CHILE,EUROPE,GLOBAL,BOLIVIA,UNITED_KINGDOM)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "CHILE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Payout ID",
                            "type": "text/plain"
                          },
                          "key": "payout_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include payouts by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Format: YYYY-MM-DD HH:MM:SS. The filter is applied to the startDate field, and dates are considered in UTC.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "9514-95-13 07:72:34"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Format: YYYY-MM-DD HH:MM:SS. The filter is applied to the startDate field, and dates are considered in UTC.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "1425-01-88 81:75:21"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of COMPLETED,IN_PROGRESS,FAILED,REFUNDED,PARTIALLY_REFUNDED,ERROR)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "REFUNDED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ARS,USD,BRL,MXN,PYG,CLP,PEN,EUR,GBP,USDT,USDC,BOB,EURC,COP,USDC_POL,USDT_POL,EURC_BASE,USDC_BASE,USDT_BASE,USDC_ETH,USDT_ETH,EURC_ETH,USDC_TEMPO,USDT_TEMPO,EURC_TEMPO,GBP,BRLA,BRLA_POL,BRLA_BASE,BRLA_ETH,TGBP,TGBP_POL,TGBP_BASE,TGBP_ETH)",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "COP"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "amount_min",
                          "value": "<number>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "amount_max",
                          "value": "<number>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Origin ID to filter payouts.",
                            "type": "text/plain"
                          },
                          "key": "origin_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": [\n    {\n      \"id\": \"<string>\",\n      \"country\": \"GLOBAL\",\n      \"currency\": \"USDT\",\n      \"createdAt\": \"<string>\",\n      \"amount\": \"<number>\",\n      \"status\": \"PARTIALLY_REFUNDED\",\n      \"company\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\"\n      },\n      \"transactionId\": \"<string>\",\n      \"originId\": \"<string>\",\n      \"voucherId\": \"<string>\",\n      \"bank\": \"INFINIA\",\n      \"updatedAt\": \"<string>\",\n      \"msgStatus\": \"<string>\",\n      \"sourceAccount\": {\n        \"country\": \"<string>\",\n        \"bank\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"id\": \"<integer>\",\n        \"label\": \"<string>\"\n      },\n      \"destination\": {\n        \"key_0\": \"string\"\n      },\n      \"creditorAccount\": {\n        \"number\": \"<string>\",\n        \"branch\": \"<string>\",\n        \"type\": \"<string>\",\n        \"bankCode\": \"<string>\",\n        \"bankName\": \"<string>\",\n        \"ownerName\": \"<string>\",\n        \"ownerDocument\": \"<string>\",\n        \"ownerDocumentType\": \"<string>\"\n      },\n      \"extraInfo\": {\n        \"key_0\": true\n      },\n      \"callbackUrl\": \"<string>\",\n      \"createdAtIso\": \"<string>\",\n      \"updatedAtIso\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"country\": \"GLOBAL\",\n      \"currency\": \"BRL\",\n      \"createdAt\": \"<string>\",\n      \"amount\": \"<number>\",\n      \"status\": \"COMPLETED\",\n      \"company\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\"\n      },\n      \"transactionId\": \"<string>\",\n      \"originId\": \"<string>\",\n      \"voucherId\": \"<string>\",\n      \"bank\": \"INFINIA\",\n      \"updatedAt\": \"<string>\",\n      \"msgStatus\": \"<string>\",\n      \"sourceAccount\": {\n        \"country\": \"<string>\",\n        \"bank\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"id\": \"<integer>\",\n        \"label\": \"<string>\"\n      },\n      \"destination\": {\n        \"key_0\": true\n      },\n      \"creditorAccount\": {\n        \"number\": \"<string>\",\n        \"branch\": \"<string>\",\n        \"type\": \"<string>\",\n        \"bankCode\": \"<string>\",\n        \"bankName\": \"<string>\",\n        \"ownerName\": \"<string>\",\n        \"ownerDocument\": \"<string>\",\n        \"ownerDocumentType\": \"<string>\"\n      },\n      \"extraInfo\": {\n        \"key_0\": \"string\"\n      },\n      \"callbackUrl\": \"<string>\",\n      \"createdAtIso\": \"<string>\",\n      \"updatedAtIso\": \"<string>\"\n    }\n  ],\n  \"status\": \"success\",\n  \"nextCursor\": \"<string>\",\n  \"hasMore\": false\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "0cb3bfe7-2355-4932-a9a1-c6fa0662a9f1",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ARGENTINA,BRAZIL,MEXICO,PARAGUAY,PERU,COLOMBIA,CHILE,EUROPE,GLOBAL,BOLIVIA,UNITED_KINGDOM)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "CHILE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Payout ID",
                            "type": "text/plain"
                          },
                          "key": "payout_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include payouts by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Format: YYYY-MM-DD HH:MM:SS. The filter is applied to the startDate field, and dates are considered in UTC.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "9514-95-13 07:72:34"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Format: YYYY-MM-DD HH:MM:SS. The filter is applied to the startDate field, and dates are considered in UTC.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "1425-01-88 81:75:21"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of COMPLETED,IN_PROGRESS,FAILED,REFUNDED,PARTIALLY_REFUNDED,ERROR)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "REFUNDED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ARS,USD,BRL,MXN,PYG,CLP,PEN,EUR,GBP,USDT,USDC,BOB,EURC,COP,USDC_POL,USDT_POL,EURC_BASE,USDC_BASE,USDT_BASE,USDC_ETH,USDT_ETH,EURC_ETH,USDC_TEMPO,USDT_TEMPO,EURC_TEMPO,GBP,BRLA,BRLA_POL,BRLA_BASE,BRLA_ETH,TGBP,TGBP_POL,TGBP_BASE,TGBP_ETH)",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "COP"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "amount_min",
                          "value": "<number>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "amount_max",
                          "value": "<number>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Origin ID to filter payouts.",
                            "type": "text/plain"
                          },
                          "key": "origin_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "cada9361-eda9-4711-8606-daa7eb06882d",
                  "name": "Unprocessable Entity",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ARGENTINA,BRAZIL,MEXICO,PARAGUAY,PERU,COLOMBIA,CHILE,EUROPE,GLOBAL,BOLIVIA,UNITED_KINGDOM)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "CHILE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Payout ID",
                            "type": "text/plain"
                          },
                          "key": "payout_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include payouts by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Format: YYYY-MM-DD HH:MM:SS. The filter is applied to the startDate field, and dates are considered in UTC.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "9514-95-13 07:72:34"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Format: YYYY-MM-DD HH:MM:SS. The filter is applied to the startDate field, and dates are considered in UTC.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "1425-01-88 81:75:21"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of COMPLETED,IN_PROGRESS,FAILED,REFUNDED,PARTIALLY_REFUNDED,ERROR)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "REFUNDED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ARS,USD,BRL,MXN,PYG,CLP,PEN,EUR,GBP,USDT,USDC,BOB,EURC,COP,USDC_POL,USDT_POL,EURC_BASE,USDC_BASE,USDT_BASE,USDC_ETH,USDT_ETH,EURC_ETH,USDC_TEMPO,USDT_TEMPO,EURC_TEMPO,GBP,BRLA,BRLA_POL,BRLA_BASE,BRLA_ETH,TGBP,TGBP_POL,TGBP_BASE,TGBP_ETH)",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "COP"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "amount_min",
                          "value": "<number>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "amount_max",
                          "value": "<number>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Origin ID to filter payouts.",
                            "type": "text/plain"
                          },
                          "key": "origin_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "8f55ac0b-aa57-4539-9858-a695945a608f",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ARGENTINA,BRAZIL,MEXICO,PARAGUAY,PERU,COLOMBIA,CHILE,EUROPE,GLOBAL,BOLIVIA,UNITED_KINGDOM)",
                            "type": "text/plain"
                          },
                          "key": "country",
                          "value": "CHILE"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 1",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Default: 50",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Payout ID",
                            "type": "text/plain"
                          },
                          "key": "payout_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If set to true, include payouts by any child companies of the authenticated company. Default: false.",
                            "type": "text/plain"
                          },
                          "key": "include_child_companies",
                          "value": "false"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Format: YYYY-MM-DD HH:MM:SS. The filter is applied to the startDate field, and dates are considered in UTC.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "9514-95-13 07:72:34"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Format: YYYY-MM-DD HH:MM:SS. The filter is applied to the startDate field, and dates are considered in UTC.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "1425-01-88 81:75:21"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of COMPLETED,IN_PROGRESS,FAILED,REFUNDED,PARTIALLY_REFUNDED,ERROR)",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "REFUNDED"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": " (This can only be one of ARS,USD,BRL,MXN,PYG,CLP,PEN,EUR,GBP,USDT,USDC,BOB,EURC,COP,USDC_POL,USDT_POL,EURC_BASE,USDC_BASE,USDT_BASE,USDC_ETH,USDT_ETH,EURC_ETH,USDC_TEMPO,USDT_TEMPO,EURC_TEMPO,GBP,BRLA,BRLA_POL,BRLA_BASE,BRLA_ETH,TGBP,TGBP_POL,TGBP_BASE,TGBP_ETH)",
                            "type": "text/plain"
                          },
                          "key": "currency",
                          "value": "COP"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "amount_min",
                          "value": "<number>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "amount_max",
                          "value": "<number>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Origin ID to filter payouts.",
                            "type": "text/plain"
                          },
                          "key": "origin_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "c149588c-598f-46e1-b377-49210e59f56e",
              "name": "Get Payout Details",
              "request": {
                "name": "Get Payout Details",
                "description": {
                  "content": "Retrieve details of a payout.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v2",
                    "payouts",
                    ":payout_id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "payout_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "df734827-565d-477d-bd02-a47d3455bb8e",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":payout_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "payout_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"country\": \"ARGENTINA\",\n    \"currency\": \"USDT_POL\",\n    \"createdAt\": \"<string>\",\n    \"amount\": \"<number>\",\n    \"status\": \"FAILED\",\n    \"company\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\"\n    },\n    \"transactionId\": \"<string>\",\n    \"originId\": \"<string>\",\n    \"voucherId\": \"<string>\",\n    \"bank\": \"INFINIA\",\n    \"updatedAt\": \"<string>\",\n    \"msgStatus\": \"<string>\",\n    \"sourceAccount\": {\n      \"country\": \"<string>\",\n      \"bank\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\"\n    },\n    \"destination\": {\n      \"key_0\": 6195\n    },\n    \"creditorAccount\": {\n      \"number\": \"<string>\",\n      \"branch\": \"<string>\",\n      \"type\": \"<string>\",\n      \"bankCode\": \"<string>\",\n      \"bankName\": \"<string>\",\n      \"ownerName\": \"<string>\",\n      \"ownerDocument\": \"<string>\",\n      \"ownerDocumentType\": \"<string>\"\n    },\n    \"extraInfo\": {\n      \"key_0\": 3933.2808112182915,\n      \"key_1\": \"string\"\n    },\n    \"callbackUrl\": \"<string>\",\n    \"createdAtIso\": \"<string>\",\n    \"updatedAtIso\": \"<string>\"\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "21f14ce5-4f86-4a84-b336-bf713517adbf",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":payout_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "payout_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "1df207c1-b5f0-4201-a5d9-ae5310fdf659",
                  "name": "Forbidden",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":payout_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "payout_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Forbidden",
                  "code": 403,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "75dd3149-d8cb-41e7-83a0-1049d397f8c0",
                  "name": "Unprocessable Entity",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":payout_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "payout_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "392d47d8-bb31-44e4-83dd-e3558efee014",
                  "name": "Internal Server Error",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":payout_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "payout_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ],
      "description": {
        "content": "Payouts",
        "type": "text/plain"
      },
      "event": []
    },
    {
      "name": "Webhooks",
      "item": [
        {
          "name": "Webhooks",
          "description": "",
          "item": [
            {
              "id": "c7b5d188-9268-402a-9304-2d34d56cde2c",
              "name": "List Webhooks",
              "request": {
                "name": "List Webhooks",
                "description": {
                  "content": "Retrieve a paginated list of webhooks.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "webhooks",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [
                    {
                      "disabled": false,
                      "description": {
                        "content": "ISO 8601 timestamp (UTC). Only include movements on or after this time.",
                        "type": "text/plain"
                      },
                      "key": "date_from",
                      "value": "5726-86-62T37:05:44.569Z"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "ISO 8601 timestamp (UTC). Only include movements on or before this time.",
                        "type": "text/plain"
                      },
                      "key": "date_to",
                      "value": "2517-60-64T06:90:74.681Z"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Filter by webhook status.",
                        "type": "text/plain"
                      },
                      "key": "status",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If provided, only return movements with this operation type.",
                        "type": "text/plain"
                      },
                      "key": "operation_type",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "If provided, only return movements with this operation ID.",
                        "type": "text/plain"
                      },
                      "key": "operation_id",
                      "value": "<string>"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Page index (1-based). Results start from page 1 by default.",
                        "type": "text/plain"
                      },
                      "key": "page_number",
                      "value": "1"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "Maximum number of movements to return per page. Defaults to 50.",
                        "type": "text/plain"
                      },
                      "key": "page_size",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "disabled": false,
                      "description": {
                        "content": "",
                        "type": "text/plain"
                      },
                      "key": "cursor",
                      "value": "<string>"
                    }
                  ],
                  "variable": []
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "GET",
                "body": {},
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "ba40a1c8-910a-43db-b208-eb35b73f6b1e",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or after this time.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "5726-86-62T37:05:44.569Z"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or before this time.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "2517-60-64T06:90:74.681Z"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by webhook status.",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation type.",
                            "type": "text/plain"
                          },
                          "key": "operation_type",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation ID.",
                            "type": "text/plain"
                          },
                          "key": "operation_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of movements to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"status\": \"ERROR\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"operation_type\": \"<string>\",\n    \"url\": \"<string>\",\n    \"last_response_status\": \"<string>\",\n    \"last_response_body\": {\n      \"key_0\": 9564.715610566616,\n      \"key_1\": \"string\",\n      \"key_2\": 2657.469861373838,\n      \"key_3\": 8386\n    }\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "e97abf69-0c03-4805-88a4-50871939ec2a",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or after this time.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "5726-86-62T37:05:44.569Z"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or before this time.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "2517-60-64T06:90:74.681Z"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by webhook status.",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation type.",
                            "type": "text/plain"
                          },
                          "key": "operation_type",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation ID.",
                            "type": "text/plain"
                          },
                          "key": "operation_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of movements to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "06a82ead-987e-4e57-8e82-f9e98a2e5a72",
                  "name": "Unprocessable Entity",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or after this time.",
                            "type": "text/plain"
                          },
                          "key": "date_from",
                          "value": "5726-86-62T37:05:44.569Z"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "ISO 8601 timestamp (UTC). Only include movements on or before this time.",
                            "type": "text/plain"
                          },
                          "key": "date_to",
                          "value": "2517-60-64T06:90:74.681Z"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Filter by webhook status.",
                            "type": "text/plain"
                          },
                          "key": "status",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation type.",
                            "type": "text/plain"
                          },
                          "key": "operation_type",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "If provided, only return movements with this operation ID.",
                            "type": "text/plain"
                          },
                          "key": "operation_id",
                          "value": "<string>"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Page index (1-based). Results start from page 1 by default.",
                            "type": "text/plain"
                          },
                          "key": "page_number",
                          "value": "1"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "Maximum number of movements to return per page. Defaults to 50.",
                            "type": "text/plain"
                          },
                          "key": "page_size",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "limit",
                          "value": "50"
                        },
                        {
                          "disabled": false,
                          "description": {
                            "content": "",
                            "type": "text/plain"
                          },
                          "key": "cursor",
                          "value": "<string>"
                        }
                      ],
                      "variable": []
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "GET",
                    "body": {}
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            },
            {
              "id": "d310af29-9b5f-4319-b4ce-74f728357eb3",
              "name": "Update Webhook",
              "request": {
                "name": "Update Webhook",
                "description": {
                  "content": "Updates an existing webhook's configuration or status. If the webhook is currently in an ERROR state, you can trigger a resend by updating its status to PENDING.",
                  "type": "text/plain"
                },
                "url": {
                  "path": [
                    "v1",
                    "webhooks",
                    ":webhook_id",
                    ""
                  ],
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "query": [],
                  "variable": [
                    {
                      "type": "any",
                      "value": "<string>",
                      "key": "webhook_id",
                      "disabled": false,
                      "description": {
                        "content": "(Required) ",
                        "type": "text/plain"
                      }
                    }
                  ]
                },
                "header": [
                  {
                    "disabled": false,
                    "description": {
                      "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                      "type": "text/plain"
                    },
                    "key": "x-company-id",
                    "value": "<integer>"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "method": "PATCH",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"status\": \"PENDING\",\n  \"url\": \"<string>\"\n}",
                  "options": {
                    "raw": {
                      "headerFamily": "json",
                      "language": "json"
                    }
                  }
                },
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{basicAuthUsername}}"
                    },
                    {
                      "key": "password",
                      "value": "{{basicAuthPassword}}"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "2ccaba63-4602-407b-b91c-ce1a326a239f",
                  "name": "Successful Response",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":webhook_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "webhook_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"status\": \"PENDING\",\n  \"url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"data\": {\n    \"id\": \"<string>\",\n    \"status\": \"ERROR\",\n    \"created_at\": \"<dateTime>\",\n    \"updated_at\": \"<dateTime>\",\n    \"operation_type\": \"<string>\",\n    \"url\": \"<string>\",\n    \"last_response_status\": \"<string>\",\n    \"last_response_body\": {\n      \"key_0\": 9564.715610566616,\n      \"key_1\": \"string\",\n      \"key_2\": 2657.469861373838,\n      \"key_3\": 8386\n    }\n  },\n  \"status\": \"success\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "d7c36201-b3fb-4269-ace5-f77eecd5cf53",
                  "name": "Bad Request",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":webhook_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "webhook_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"status\": \"PENDING\",\n  \"url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                },
                {
                  "id": "a0175367-fc54-4e93-84f1-d5881ce104f2",
                  "name": "Unprocessable Entity",
                  "originalRequest": {
                    "url": {
                      "path": [
                        ":webhook_id",
                        ""
                      ],
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "query": [],
                      "variable": [
                        {
                          "disabled": false,
                          "description": {
                            "content": "(Required) ",
                            "type": "text/plain"
                          },
                          "type": "any",
                          "value": "<string>",
                          "key": "webhook_id"
                        }
                      ]
                    },
                    "header": [
                      {
                        "disabled": false,
                        "description": {
                          "content": "ID of a child company for authentication. If not provided, the parent company will be authenticated.",
                          "type": "text/plain"
                        },
                        "key": "x-company-id",
                        "value": "<integer>"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "description": {
                          "content": "Added as a part of security scheme: basic",
                          "type": "text/plain"
                        },
                        "key": "Authorization",
                        "value": "Basic <credentials>"
                      }
                    ],
                    "method": "PATCH",
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"status\": \"PENDING\",\n  \"url\": \"<string>\"\n}",
                      "options": {
                        "raw": {
                          "headerFamily": "json",
                          "language": "json"
                        }
                      }
                    }
                  },
                  "status": "Unprocessable Entity (WebDAV) (RFC 4918)",
                  "code": 422,
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "body": "{\n  \"message\": \"<string>\",\n  \"status\": \"error\",\n  \"error_code\": \"<string>\",\n  \"trace_id\": \"<string>\"\n}",
                  "cookie": [],
                  "_postman_previewlanguage": "json"
                }
              ],
              "event": [],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              }
            }
          ]
        }
      ],
      "description": {
        "content": "Manage your webhooks",
        "type": "text/plain"
      },
      "event": []
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://app2test.infiniaweb.com/infinia_api",
      "type": "string"
    }
  ]
}