Use Cases

Talk to Pine Labs Through Your AI Assistant

Below are some example prompts and what we do in the backend.

Generating a payment link

"Send a ₹500 payment link to [email protected]"

The assistant invokes create_payment_link with:
amount_value : 50000
currency : "INR"
customer_email : "[email protected]"

Looking up an order

"What's the status of order v1-4405071524-aa-qlAtAf?"

The assistant calls get_order_by_order_id and returns the full order payload.

Cancelling a link

"Please cancel payment link pl-v1-5757575757-aa-hU1rUd"

The assistant triggers cancel_payment_link for that ID.

Re-notifying a customer

"Resend the payment link notification for pl-v1-5757575757-aa-hU1rUd"

The assistant calls resend_payment_link_notification so the customer receives the link again.

Ask AI
Assistant
Order Lifecycle
Refunds
Settlements
Checkout
Dashboard
International Payments
How do I implement webhook notifications for payment status updates, and what's the recommended way to verify webhook authenticity?
How do I integrate Pine Labs payment gateway with my React Native mobile app and what are the required API credentials?
Can I customize the payment UI for card transactions, and what parameters can I pass to modify the checkout experience for my customers?
Assistant