{
"id": "plink_K2zwNNSxPyx8w3GZ",
"object": "payment_link",
"amount": 120900,
"currency": "MXN",
"status": "active",
"created_at": "2024-08-02T20:28:13Z",
"expires_at": null,
"mode": "test",
"url": "https://pay.fintoc.com/plink_K2zwNNSxPyx8w3GZ",
"metadata": {},
"customer_email": null,
"checkout": {
"description": null
}
}
Attribute | Type | Description |
---|---|---|
id | string | Unique identifier for the Payment Link |
object | string | Identifier for the type of object. Its value for Payment Link will always correspond to payment_link |
amount | integer | The amount the customer needs to pay, represented as an integer. This value must always be greater than 0. |
currency | string | Currency ISO code. For now, we only support CLP and MXN. |
status | string | Payment Link status. Can be either active , expired or canceled . |
created_at | string | Payment Link's creation date, using ISO 8601 |
expires_at | string | Payment Link's expiration date, using ISO 8601. If null, then the payment link will not expire. |
mode | string | Indicates whether the Payment Link is in live mode or in test mode. |
url | string | The public url that can be shared with customers. |
metadata | hash | Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. If you create a payment without providing metadata , this field will be null when receiving notifications about the final status. |
customer_email | string | Email used to notify the customer in case of a refund. If you plan on using the refunds product, you must include this field in your request If you create a payment without providing a customer_email , this field will be null and the customer will not receive refund notifications by email. |
checkout | dictionary | Customize the checkout for your customers. For now, you can only add a custom description alongside the buy button. |