Introduction The Patricia Business API is organized around REST. Endpoints have predictable, self-describing URLs. Our API accepts JSON requests and returns JSON responses. It uses standard HTTP status codes, authentication, and methods (POST, PUT, PATCH, GET, DELETE) in their usual ways.
This section describes how to initiate a payment using cryptocurrency on Patricia Business.
Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the Patricia Business API is done by bearer auth. For example curl -H "Authorization: Bearer realy_secured_tT1zdp7dc_password. All API requests must be authenticated else, they will fail. 👍 API Key
The Patricia Checkout provides a simple and convenient way to accept payment.
Webhook Acknowledgement When Patricia sends a webhook event to your webhook URL, it expects a 200 OK response which Patricia considers and acknowledgement from your application. If your endpoint returns a non-200 response or no response within a short period of time, Patricia will retry sending the ...
Here you'll find guides, resources, and references to build with Patricia Business.
Create a webhook on Patricia Business A fully formed URL. This is super important because this is the URL where Patricia sends all the Payload events to.
It’s important to always verify the origin of the events your webhook is receiving. This saves you the problem of dealing with bad actors and in turn, harming your application. You can verify the origin of your webhook events by Validating the webhook signature - valid webhook events from Patricia are raised with an X-Patricia-Signature which is essentially an HMAC SHA512 of the event ...