Stripe Atlas

list_customers

This tool will fetch a list of Customers from Stripe. It takes two arguments: - limit (int, optional): The number of customers to return. - email (str, optional): A case-sensitive filter on the list based on the customer's email field.

Remote stripe

Remote (network-hosted)

Other tools also called list_customers? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "description": "A case-sensitive filter on the list based on the customer's email field. The value must be a string."
    },
    "limit": {
      "type": "integer",
      "maximum": 100,
      "minimum": 1,
      "description": "A limit on the number of objects to be returned. Limit can range between 1 and 100."
    }
  }
}