create_buyer
Create a new buyer identity in Finix by providing email, first name, last name, and phone number for payment processing setup.
Instructions
This tool creates a new Buyer Identity in Finix.
It takes the following arguments:
email (str): The email address of the buyer.
first_name (str): The first name.
last_name (str): The last name.
phone (str): The phone number.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | The email address of the buyer | ||
first_name | Yes | The first name | |
last_name | Yes | The last name | |
phone | Yes | The phone number |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "The email address of the buyer",
"type": "string"
},
"first_name": {
"description": "The first name",
"type": "string"
},
"last_name": {
"description": "The last name",
"type": "string"
},
"phone": {
"description": "The phone number",
"type": "string"
}
},
"required": [
"email",
"first_name",
"last_name",
"phone"
],
"type": "object"
}