Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22 lines (20 sloc)
707 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%RAML 1.0 | |
title: Circulation event handlers | |
version: v0.1 | |
protocols: [ HTTP, HTTPS ] | |
baseUri: http://localhost:9130 | |
documentation: | |
- title: Circulation Event Handlers Endpoints | |
content: <b>API to handle events</b> | |
/circulation/handlers/: | |
/loan-related-fee-fine-closed: | |
displayName: Subscriber handler endoint to handle fee/fine record with loan closed event | |
post: | |
description: Handle fee/fine record with loan closed event | |
body: | |
application/json: | |
type: !include handlers/loan-related-fee-fine-closed.json | |
example: !include examples/loan-related-fee-fine-closed.json | |
responses: | |
204: | |
description: "Event handled successfully" |