...
request | response | |
---|---|---|
batches | JSON list of {"batch-id": <id>, "events": {"<event-id>": {"succes": <boolean result of the event>, "details": <details string>}}} | |
batches/{batch-id} | {"batch-id": <id>, "events": {"<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.
...