Auth0 · Schema
FlowActionStripeUpdateCustomerParams
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| connection_id | string | |
| id | string | |
| name | string | |
| description | string | |
| string | ||
| phone | string | |
| tax_exempt | string | |
| address | object | |
| metadata | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FlowActionStripeUpdateCustomerParams",
"title": "FlowActionStripeUpdateCustomerParams",
"type": "object",
"additionalProperties": false,
"required": [
"connection_id",
"id"
],
"properties": {
"connection_id": {
"type": "string",
"maxLength": 30,
"format": "flows-vault-connections-id"
},
"id": {
"type": "string",
"maxLength": 250
},
"name": {
"type": "string",
"maxLength": 250
},
"description": {
"type": "string",
"maxLength": 250
},
"email": {
"type": "string",
"maxLength": 512
},
"phone": {
"type": "string",
"maxLength": 250
},
"tax_exempt": {
"type": "string"
},
"address": {
"$ref": "#/components/schemas/FlowActionStripeAddress"
},
"metadata": {
"$ref": "#/components/schemas/FlowActionStripeMetadata"
}
}
}