Introduction
Versioning
Wafeq uses a path prefix https://api.wafeq.com/<version>
to determine which version of our API you are requesting. The request will return an error if no version is specified.
The current API version is v1
.
Example
The below request will use the v1
version of the API.
curl --location \
--request POST 'https://api.wafeq.com/v1/api-invoices/bulk_send/' \
--header 'Authorization: Api-Key <api_key>' \
...