This endpoint retrieves a list of legal agreements that a customer can acknowledge. These agreements could include terms of service, privacy policies, or other legal documents.
It returns an Agreement object which contains the version, release_date, and a list of documents. Each document includes a pdf_download_url, title, type, and category.
Security
CodeBearer
- Production serverhttps://api.business.jiko.io/api/v1/agreements/
- Sandbox serverhttps://customer-api.sandbox-api.jikoservices.com/api/v1/agreements/
curl -i -X GET \
https://api.business.jiko.io/api/v1/agreements/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "version": "string", "release_date": "2019-08-24", "documents": [ { … } ] }