Actions
The fairjungle API follows the REST principles to fetch, delete, create and update resources.
The base URL for all API call is https://api.fairjungle.com/api.
| Verb | Request parameter | Description |
|---|---|---|
| GET | Fetch a list of resources. | |
| GET | Resource id | Fetch a resource. |
| DELETE | Resource id | Delete a resource. |
| POST | Create a new resource. | |
| PUT | Resource id | Entirely replace an existing resource. Missing attributes are deleted. |
| PATCH | Resource id | Partially update an existing resource. Missing attributes remain unchanged. |