Stripe integration (Finance, Developer Tools). Imported from open-connector.
https://api.stripe.com/v1/account
/v1/customers
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | optional | The customer's full name or business name. |
| string | optional | The customer's email address. | |
| description | string | optional | An arbitrary customer description displayed in the Stripe Dashboard. |
| phone | string | optional | The customer's phone number. |
| balance | integer | optional | The customer balance in the smallest currency unit. |
| address | object | optional | A Stripe address object. |
| metadata | object | optional | Stripe metadata key-value pairs. Values are forwarded as strings, numbers, bool… |
| tax_exempt | string | optional | The customer's tax exemption status. |
/v1/customers/{customerId}
| Param | Type | Required | Description |
|---|---|---|---|
| customerId | string | required | The Stripe customer ID to update. |
| name | string | optional | The customer's full name or business name. |
| string | optional | The customer's email address. | |
| description | string | optional | An arbitrary customer description displayed in the Stripe Dashboard. |
| phone | string | optional | The customer's phone number. |
| balance | integer | optional | The customer balance in the smallest currency unit. |
| address | object | optional | A Stripe address object. |
| metadata | object | optional | Stripe metadata key-value pairs. Values are forwarded as strings, numbers, bool… |
| tax_exempt | string | optional | The customer's tax exemption status. |
/v1/customers/{customerId}
| Param | Type | Required | Description |
|---|---|---|---|
| customerId | string | required | The Stripe customer ID to retrieve. |
/v1/customers
| Param | Type | Required | Description |
|---|---|---|---|
| limit | integer | optional | The maximum number of objects to return. Stripe accepts values from 1 to 100. |
| starting_after | string | optional | A cursor object ID that fetches the next page after that object. |
| ending_before | string | optional | A cursor object ID that fetches the previous page before that object. |
| string | optional | Filter customers by an exact, case-sensitive email address. | |
| created | object | optional | A Stripe created timestamp interval filter. |
/v1/customers/search
| Param | Type | Required | Description |
|---|---|---|---|
| query | string | required | A Stripe customer search query, such as email:'jenny@example.com'. |
| limit | integer | optional | The maximum number of objects to return. Stripe accepts values from 1 to 100. |
| page | string | optional | A Stripe search pagination token returned by a previous search response. |
/v1/customers/{customerId}
| Param | Type | Required | Description |
|---|---|---|---|
| customerId | string | required | The Stripe customer ID to delete. |
/v1/products
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | required | The product's display name. |
| active | boolean | optional | Whether the product is available for purchase. |
| description | string | optional | The product description. |
| id | string | optional | A caller-supplied product ID. Stripe normally generates this when omitted. |
| images | array | optional | Public image URLs for the product. |
| metadata | object | optional | Stripe metadata key-value pairs. Values are forwarded as strings, numbers, bool… |
| shippable | boolean | optional | Whether this product is shipped as a physical good. |
| statement_descriptor | string | optional | Statement descriptor for subscription payments. |
| tax_code | string | optional | Stripe tax code ID for this product. |
| unit_label | string | optional | A label that represents units of this product. |
| url | string | optional | A publicly accessible product webpage URL. |
/v1/products/{productId}
| Param | Type | Required | Description |
|---|---|---|---|
| productId | string | required | The Stripe product ID to update. |
| name | string | optional | The product's display name. |
| active | boolean | optional | Whether the product is available for purchase. |
| description | string | optional | The product description. |
| id | string | optional | A caller-supplied product ID. Stripe normally generates this when omitted. |
| images | array | optional | Public image URLs for the product. |
| metadata | object | optional | Stripe metadata key-value pairs. Values are forwarded as strings, numbers, bool… |
| shippable | boolean | optional | Whether this product is shipped as a physical good. |
| statement_descriptor | string | optional | Statement descriptor for subscription payments. |
| tax_code | string | optional | Stripe tax code ID for this product. |
| unit_label | string | optional | A label that represents units of this product. |
| url | string | optional | A publicly accessible product webpage URL. |
/v1/products/{productId}
| Param | Type | Required | Description |
|---|---|---|---|
| productId | string | required | The Stripe product ID to retrieve. |
/v1/products
| Param | Type | Required | Description |
|---|---|---|---|
| limit | integer | optional | The maximum number of objects to return. Stripe accepts values from 1 to 100. |
| starting_after | string | optional | A cursor object ID that fetches the next page after that object. |
| ending_before | string | optional | A cursor object ID that fetches the previous page before that object. |
| active | boolean | optional | Filter products by active status. |
| ids | array | optional | Filter products by Stripe product IDs. |
| created | object | optional | A Stripe created timestamp interval filter. |
/v1/products/search
| Param | Type | Required | Description |
|---|---|---|---|
| query | string | required | A Stripe product search query, such as active:'true'. |
| limit | integer | optional | The maximum number of objects to return. Stripe accepts values from 1 to 100. |
| page | string | optional | A Stripe search pagination token returned by a previous search response. |
/v1/products/{productId}
| Param | Type | Required | Description |
|---|---|---|---|
| productId | string | required | The Stripe product ID to delete. |
/v1/prices
| Param | Type | Required | Description |
|---|---|---|---|
| currency | string | required | Three-letter ISO currency code in lowercase. |
| product | string | optional | The Stripe product ID this price belongs to. |
| product_data | object | optional | Inline product data for creating a product while creating a price. |
| unit_amount | integer | optional | Unit amount in the smallest currency unit. |
| unit_amount_decimal | string | optional | Decimal unit amount in the smallest currency unit. |
| custom_unit_amount | object | optional | Custom unit amount configuration that lets the payer choose the price amount. |
| active | boolean | optional | Whether the price can be used for new purchases. |
| lookup_key | string | optional | A lookup key used to retrieve this price dynamically. |
| metadata | object | optional | Stripe metadata key-value pairs. Values are forwarded as strings, numbers, bool… |
| nickname | string | optional | A brief internal description of the price. |
| recurring | object | optional | Recurring billing configuration for a Stripe price. |
| tax_behavior | string | optional | How Stripe should handle tax for this price. |
/v1/prices/{priceId}
| Param | Type | Required | Description |
|---|---|---|---|
| priceId | string | required | The Stripe price ID to update. |
| active | boolean | optional | Whether the price can be used for new purchases. |
| lookup_key | string | optional | A lookup key used to retrieve this price dynamically. |
| metadata | object | optional | Stripe metadata key-value pairs. Values are forwarded as strings, numbers, bool… |
| nickname | string | optional | A brief internal description of the price. |
| tax_behavior | string | optional | How Stripe should handle tax for this price. |
/v1/prices/{priceId}
| Param | Type | Required | Description |
|---|---|---|---|
| priceId | string | required | The Stripe price ID to retrieve. |
/v1/prices
| Param | Type | Required | Description |
|---|---|---|---|
| limit | integer | optional | The maximum number of objects to return. Stripe accepts values from 1 to 100. |
| starting_after | string | optional | A cursor object ID that fetches the next page after that object. |
| ending_before | string | optional | A cursor object ID that fetches the previous page before that object. |
| active | boolean | optional | Filter prices by active status. |
| currency | string | optional | Filter prices by three-letter ISO currency code in lowercase. |
| product | string | optional | Filter prices by Stripe product ID. |
| type | string | optional | Filter prices by one-time or recurring type. |
| created | object | optional | A Stripe created timestamp interval filter. |
/v1/prices/search
| Param | Type | Required | Description |
|---|---|---|---|
| query | string | required | A Stripe price search query, such as active:'true'. |
| limit | integer | optional | The maximum number of objects to return. Stripe accepts values from 1 to 100. |
| page | string | optional | A Stripe search pagination token returned by a previous search response. |