Expose HTTP Controller
This section will guide you through how to expose an HTTP controller on your Payment Releaser application, so the Payment Releaser operations can be accessed externally.
To connect to, and send requests to, your external Payment Releaser application using the client libraries, please see the Client Library page.
| This presumes you already have a Payment Releaser application running. If you need to set one up please follow Implementation. |
Step 1: Import Dependencies
Add the ipf-payment-releaser-api-controller artefact to your pom.xml dependencies to get the Spring HTTP Controller in your Payment Releaser application:
<dependency>
<groupId>com.iconsolutions.ipf.core.releaser</groupId>
<artifactId>ipf-payment-releaser-api-controller</artifactId>
</dependency>
Step 2: Release Your First Instruction(/Batch)
Your application is now ready to receive its first HTTP request!
To send HTTP requests using the client library please follow the instructions on the Client Library page.
To send HTTP requests using your own client implementation please reference the IPF Payment Releaser OpenAPI Specification page.