Integrate Notch Pay into your Laravel applications
config/notchpay.php
file in your application.
.env
file:
routes/api.php
file:
EventServiceProvider
:NotchPay::payments()->create($data)
- Create a paymentNotchPay::payments()->retrieve($reference)
- Retrieve a paymentNotchPay::payments()->list($params)
- List paymentsNotchPay::payments()->cancel($reference)
- Cancel a paymentNotchPay::transfers()->create($data)
- Create a transferNotchPay::transfers()->retrieve($reference)
- Retrieve a transferNotchPay::transfers()->list($params)
- List transfersNotchPay::transfers()->cancel($reference)
- Cancel a transferNotchPay::transfers()->createBulk($data)
- Create a bulk transferNotchPay::customers()->create($data)
- Create a customerNotchPay::customers()->retrieve($id)
- Retrieve a customerNotchPay::customers()->update($id, $data)
- Update a customerNotchPay::customers()->list($params)
- List customersNotchPay::customers()->delete($id)
- Delete a customerNotchPay::beneficiaries()->create($data)
- Create a beneficiaryNotchPay::beneficiaries()->retrieve($id)
- Retrieve a beneficiaryNotchPay::beneficiaries()->update($id, $data)
- Update a beneficiaryNotchPay::beneficiaries()->list($params)
- List beneficiariesNotchPay::beneficiaries()->delete($id)
- Delete a beneficiaryNotchPay::balance()->retrieve()
- Check balanceNotchPay::balance()->retrieveCurrency($currency)
- Check balance for a specific currencyNotchPay::balance()->history($params)
- List balance historyNotchPay::webhooks()->create($data)
- Create a webhookNotchPay::webhooks()->retrieve($id)
- Retrieve a webhookNotchPay::webhooks()->update($id, $data)
- Update a webhookNotchPay::webhooks()->list($params)
- List webhooksNotchPay::webhooks()->delete($id)
- Delete a webhook