Development Quick Start Guide
This page presents the essential steps required to interact with the API.
You’ll need the following credentials to authenticate your requests:
IWOCAPAY_SUPPLIER_ACCESS_TOKENIWOCAPAY_SUPPLIER_UUIDIWOCAPAY_API_URL(see Technical overview > Base URLs)
These credentials should be securely stored.
For example, in a .env file.
You can request these details from your Account Manager. See Contact us.
- Ensure your development environment supports making HTTP requests (for example,
fetchin JavaScript,Guzzlein PHP, orrequestsin Python).
IWOCAPAY_API_URL=https://stage.iwoca-dev.co.uk/api/lending/edge/IWOCAPAY_SUPPLIER_ACCESS_TOKEN=your-access-tokenIWOCAPAY_SUPPLIER_UUID=your-supplier-uuid- Secure your API keys: Do not expose your API credentials in client-side code.
- Handle webhooks properly: Verify webhook payloads and ensure they originate from iwocaPay.
- Implement error handling: Handle unexpected responses or API errors gracefully.