Difference between revisions of "API: File Uploads"
From Charitylog Manual
(6 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
+ | [[API Details| Go to API overview]] | ||
+ | |||
[[File:helpheader_small.png|right]] | [[File:helpheader_small.png|right]] | ||
− | You can upload files against clients and referrals, these | + | You can upload files against clients and referrals. Like the web application, these are stored on Amazon S3. |
+ | |||
+ | [POST] https<nowiki/>://api.dizions.co.uk/v2/clients/id/CLIENT_ID/uploads | ||
− | [POST] https://api.dizions.co.uk/v2/ | + | [POST] https<nowiki/>://api.dizions.co.uk/v2/referrals/id/REFERRAL_ID/uploads |
− | + | In the body you'll need: | |
+ | * the files | ||
− | + | and optionally: | |
+ | * user_visibility, which is a comma separated list of user ids who are allowed to access the files | ||
+ | * group_visibility, which is a comma separated list of group ids who are allowed to access the files | ||
+ | If a list of users and/or groups is not specified, the files will be visible to all users. | ||
+ | To get a list of users, call: | ||
+ | [GET] https<nowiki/>://api.dizions.co.uk/v2/dictionary/user | ||
+ | The user group ids are not currently available in the API. | ||
---- | ---- |
Latest revision as of 13:55, 1 May 2024
You can upload files against clients and referrals. Like the web application, these are stored on Amazon S3.
[POST] https://api.dizions.co.uk/v2/clients/id/CLIENT_ID/uploads
[POST] https://api.dizions.co.uk/v2/referrals/id/REFERRAL_ID/uploads
In the body you'll need:
- the files
and optionally:
- user_visibility, which is a comma separated list of user ids who are allowed to access the files
- group_visibility, which is a comma separated list of group ids who are allowed to access the files
If a list of users and/or groups is not specified, the files will be visible to all users. To get a list of users, call:
[GET] https://api.dizions.co.uk/v2/dictionary/user
The user group ids are not currently available in the API.