create_customer
Add a new customer to GoCardless payment system by providing email, name, and optional company details to enable payment processing.
Instructions
Create a new customer in GoCardless
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company_name | No | Customer company name (optional) | |
Yes | Customer email address | ||
family_name | No | Customer last name | |
given_name | No | Customer first name |
Input Schema (JSON Schema)
{
"properties": {
"company_name": {
"description": "Customer company name (optional)",
"type": "string"
},
"email": {
"description": "Customer email address",
"type": "string"
},
"family_name": {
"description": "Customer last name",
"type": "string"
},
"given_name": {
"description": "Customer first name",
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
}