Last updated 2 years ago
Was this helpful?
settings
curl -L \ --url '/contents/documents' \ --header 'Authorization: Bearer JWT'
{ "statusCode": 200, "data": { "documents": [ { "id": "0466770d-4024-457c-92d5-fbe9022ee5b7", "title": "Privacy Policy", "name": "privacyPolicy", "iconName": "book-open", "content": "https://www.helloiconic.com/privacy-policy", "format": "url", "isPublic": false, "expiresAt": "2022-12-07T17:21:27.548Z" } ] } }
0466770d-4024-457c-92d5-fbe9022ee5b7
curl -L \ --url '/contents/documents/{id}' \ --header 'Authorization: Bearer JWT'
{ "statusCode": 200, "data": { "id": "0466770d-4024-457c-92d5-fbe9022ee5b7", "title": "Privacy Policy", "name": "privacyPolicy", "iconName": "book-open", "content": "https://www.helloiconic.com/privacy-policy", "format": "url", "isPublic": false, "expiresAt": "2022-12-07T17:21:27.548Z" } }
curl -L \ --url '/contents/document-categories' \ --header 'Authorization: Bearer JWT'
{ "statusCode": 200, "data": { "documentCategories": [ { "id": "0466770d-4024-457c-92d5-fbe9022ee5b7", "name": "settings" } ] } }
curl -L \ --url '/contents/document-categories/{id}' \ --header 'Authorization: Bearer JWT'
{ "statusCode": 200, "data": { "id": "0466770d-4024-457c-92d5-fbe9022ee5b7", "name": "settings" } }
curl -L \ --url '/contents/public-documents'
{ "statusCode": 200, "data": { "documents": [ { "id": "0466770d-4024-457c-92d5-fbe9022ee5b7", "title": "Privacy Policy", "name": "privacyPolicy", "iconName": "book-open", "content": "https://www.helloiconic.com/privacy-policy", "format": "pdf", "isPublic": true } ] } }
curl -L \ --url '/contents/public-documents/{id}'
{ "statusCode": 200, "data": { "id": "0466770d-4024-457c-92d5-fbe9022ee5b7", "title": "Privacy Policy", "name": "privacyPolicy", "iconName": "book-open", "content": "https://www.helloiconic.com/privacy-policy", "format": "pdf", "isPublic": true } }