Skip to main content
Optional defaults when you do not send URLs on each request. PUT /api/v1/merchants/me
{
  "webhook_url": "https://api.example.com/meetpay/webhooks",
  "callback_url": "https://api.example.com/meetpay/callback"
}
Required for payout notifications (payout create does not accept URL fields). For payments, you can use these defaults or pass webhook_url / callback_url on POST /api/v1/payments instead. See Webhooks.

API reference

PUT /api/v1/merchants/me
curl -X PUT "https://meet.briq.tz/api/v1/merchants/me" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"webhook_url":"https://api.example.com/meetpay/webhooks","callback_url":"https://api.example.com/meetpay/callback"}'