Introduction
Avenu’s API is RESTful, and has predictable resource-oriented URLs. It accepts JSON request bodies and returns JSON-encoded responses, while using standard HTTP response codes, authentication, and verbs. Avenu provides a Sandbox environment for testing before going to production. Avenu does not support bulk updates; only one object per request.
The base URL for the Avenu Sandbox is https://sandbox.openroad.avenu.bank/api
The base URL is followed by group, version, optional path, and endpoint.
Versioning syntax is v# where # is numerical starting at 1.
An example URL for retrieving a customer profile would be:
GET <https://sandbox.openroad.avenu.bank/api/customer/v1/profile
>
In this example the group is customer
the version is v1
and the endpoint is profile
.
Updated about 2 months ago