JSON API implementation based on https://jsonapi.org/format
- Authorise yourself with Basic HTTP authentication, using API Key (as username) and API Secret (as password) generated from Junction.
- Save the array returned. The array has a column called "access_token". This is the Bearer access token to be used to access data.
GET request on /api/$type/$slug
or /api/$id
GET request on /api/$type
or /api/search
GET request on /api/$type?index=0&limit=25
Data can be cherry picked passing the "filter" query in URL with the desired data.
GET
request using ?filter=name,age,location,email
POST request on /api/$type
preferably include: user_id (of creator) and content_privacy
PATCH request on /api/$type/$slug
or /api/$type/$id
DELETE request on /api/$type/$slug
or /api/$type/$id
mandatory to include: user_id (of creator)
POST /api/file-upload
- Include the js file
tribe_upload.js
underdist
in your project (or use it as a reference to implement your own) - create a button that you want to program for upload with a
data-target='#input-file'
('#input-file' can be anything you want, but mention a target) - Initialize the code by passing selector of your event initiator (i.e. button created in step 2) and defining the api URL
tribeUploadUrl
<form action="#">
<input type="file" name="upload[]" id="upload" class="form-control mb-3" multiple>
<button type="submit" class="btn btn-primary" id="form-submit" data-target="#upload">Submit</button>
</form>
tribeUploadButton('#form-submit');
let tribeUploadUrl = '/api/file-upload'
- A type cannot be deleted or modified using API. The only way to modify types is by modifying config/types.json in your Tribe root directory.
- Multple records cannot be deleted or modified using API.