{
  "info": {
    "name": "Rize — mcp.ai",
    "description": "REST API for the Rize MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/rize",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "rize_create_api_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/api/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "api",
            "key"
          ]
        },
        "description": "Create a new API key for the partner. Use this action when you need to generate a new API key for authentication with the Rize API. The API key is created server-side and returned in the response. Not",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rize_create_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "card"
          ]
        },
        "description": "Creates a new card in the Rize system. Use this action when you need to create a new card for a cardholder. The card will be associated with the specified partner financial account. Card creation is i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"notes\": \"\",\n  \"cardholder_id\": 0,\n  \"partner_financial_account_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rize_create_cardholder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/cardholder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "cardholder"
          ]
        },
        "description": "Creates a new cardholder in the Rize system. Use this action when you need to register a new cardholder with their personal information, addresses, and tax identification. This action is irreversible ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tin\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"occupation\": \"\",\n  \"middle_name\": \"\",\n  \"phone_number\": \"\",\n  \"date_of_birth\": \"\",\n  \"email_address\": \"\",\n  \"mailing_address\": {},\n  \"physical_address\": {},\n  \"citizenship_country_iso_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rize_create_counterparty",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/counterparty",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "counterparty"
          ]
        },
        "description": "Creates a new Counterparty in the Rize system. A counterparty represents an external party (such as a vendor, supplier, or business partner) that can receive transfers from your account. Use when sett",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ach\": {},\n  \"external_uid\": \"\",\n  \"name_on_account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rize_create_partner_financial_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/partner/financial/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "partner",
            "financial",
            "account"
          ]
        },
        "description": "Create a new financial account for an existing partner in the Rize admin API. Use this action when you need to provision a new financial account (such as a bank account) for a partner organization tha",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"partner_id\": 0,\n  \"financial_provider\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rize_create_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "user"
          ]
        },
        "description": "Creates a new user in the Rize system. Use this action when you need to register a new user with their email, name, and role. Optionally, cardholder information can be provided to associate a cardhold",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"email\": \"\",\n  \"last_name\": \"\",\n  \"cardholder\": {},\n  \"first_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rize_get_cardholder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cardholder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cardholder"
          ]
        },
        "description": "Retrieve detailed information about a specific cardholder using their unique identifier. Use this action when you need to fetch cardholder profile data including name, contact information, addresses, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rize_get_virtual_card_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/virtual/card/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "virtual",
            "card",
            "image"
          ]
        },
        "description": "Retrieves the virtual card image asset. Returns the image representation of a virtual debit card which can be displayed in mobile or web applications. Use this action when you need to fetch the visual",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}