Payment Link
This API is used to create a simple payment link. All calls to this end point is to be made using your secret key gotten from your dashboard.
Authorization Any request made without the authorization key (secret key) will fail with a 401
(Unauthorized)
response code.
The authorization key is sent via the request header as Bearer Token Authorization
Example: Authorization: Bearer sandbox_sk_94f2b798466408ef4d19e848ee1a4d1a3e93f104046f
Sample Request
Creating a Payment Link
This API creates a Simple Payment Link
POST
https://sandbox-api-d.squadco.com/payment_link/otp
Request Body
Generating the Link
The payment link is a concatenation of the base URL: https://sandbox-pay.squadco.com/ and the hash selected when creating the payment link For instance, if the hash is mypaymentlink then the payment link will be https://sandbox-pay.squadco.com/mypaymentlink
GO LIVE - Production
To create payment link on production:
kindly change the base URL of the endpoint from sandbox-api-d.squadco.com to api-d.squadco.com
get production keys from your production environment on dashboard.squadco.com
On production, the base URL for concatenation of the payment link needs to be changed from sandbox-pay.checkout.squadco.com/hash to pay.checkout.squadco.co/hash
Last updated