...
request | response | |
---|---|---|
batches | JSON list of {"batch-id": <id>, "events": {"event<event-idid>": <event id>, {"succes": <boolean result of the event>, "details": <details string>}}} | |
batches/{batch-id} | {"batch-id": <id>, "events": {"event<event-idid>": <event id>, {"succes": <boolean result of the event>, "details": <details string>}}} | |
batches/{batch-id}/{event-id} | {"batch-id": <bid>, "event-id": <eid>, "success": <boolean result of the event>, "details": <details string>} |
All three URIs can have a details parameter which has the default value of false. When details is true each of the above requests will return a detailed response. The content of this detail is to be decided.
The RESTful web service agregates information from several components of which three is known: The Newspaper Mfpak MfPak Integration, the SBOI, and the component for generating dissemination copies. The web service is integrated with these component using a Java interface.
...