Docs//
API reference
/- List all documents
Document
Create a new document
Get a document by ID
List all documents
Returns a list of your documents. The documents are returned sorted by creation date, with the most recent documents appearing first.
Security
JWT
ISO-8601 timestamp in UTC to filter resources created before this time. Use this to avoid Page drift issue. See Pagination parameters for more details.
Example:before=2025-02-18T12:03:44Z
ISO-8601 timestamp in UTC to filter resources created after this time. Use this to avoid Page drift issue. See Pagination parameters for more details.
Example:after=2025-01-18T12:03:44Z
- Production serverhttps://api.glomopay.com/api/v1/document
curl -i -X GET \
'https://api.glomopay.com/api/v1/document?before=2025-02-18T12%3A03%3A44Z&after=2025-01-18T12%3A03%3A44Z&per_page=20&page=1' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
{ "data": [ { … } ], "page_meta": { "current": 2, "previous": 1, "next": 3, "per_page": 20, "pages": 10, "count": 200 } }