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:
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.
Updated about 11 hours ago
