create_payment_link
Generate payment links for Finix merchants by specifying merchant ID, unit price in cents, and product quantity to facilitate online transactions.
Instructions
This tool will create a payment link in Finix.
It takes three arguments:
merchant_id (str): The ID of the merchant the payment link is created under.
price (int): The unit price in cents.
quantity (int): The quantity of the product to include in the payment link.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
merchant_id | Yes | The ID of the merchant the payment link is created under | |
price | Yes | The unit price in cents | |
quantity | Yes | The quantity of the product to include in the payment link |
Input Schema (JSON Schema)
{
"properties": {
"merchant_id": {
"description": "The ID of the merchant the payment link is created under",
"type": "string"
},
"price": {
"description": "The unit price in cents",
"minimum": 1,
"type": "integer"
},
"quantity": {
"description": "The quantity of the product to include in the payment link",
"minimum": 1,
"type": "integer"
}
},
"required": [
"merchant_id",
"price",
"quantity"
],
"type": "object"
}