This is a demo API. The goal is to demonstrate how to setup a RESTful JSON API. The API handles both requests with and without an authorization header.
The requests you make from the interface below are not authorized. You can try out making requests that contains an authorization header through the webhook demo , another demo projects of ours.
This demo is based on the goexplore-a-api-demo repository.
Verify that no tasks exists:
GET /tasks.json?company_id=678ae5e5f6872a0007914b14
Create a task with a name of your choosing:
Check the created task:
GET /tasks/678ae5e5f6872a0007914b15.json?company_id=678ae5e5f6872a0007914b14
Update the name of the task:
Destroy the task:
Refresh your browser tab to try again.