1
Retrieve inbox documents
Use the 2. Fetch all pages by looping from page 1 until the number of items retrieved matches the total count:
GET /cleemy-procurement/services/inbox endpoint to list documents in the inbox.Results are paginated with a maximum of 1000 items per page. To retrieve all documents, proceed in two passes:1. Get the total count by requesting only the count field along with your filters:Use the same filters on both calls so the count matches the actual results.
2
Update the invoice information
Before booking, you may need to update the invoice data (e.g., accounting fields, amounts, or supplier info).
For this, use
PUT /cleemy-procurement/services/inbox-documents/{id}:3
Book the invoice
Once the invoice information is complete, book it by calling
POST /cleemy-procurement/services/inbox-documents/{id}/book.
No request body is needed.