Welcome

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.

1. Check tasks

Verify that no tasks exists:

GET /tasks.json?company_id=6636c2a5bb1e200008ea4ffd

2. Create a task

Create a task with a name of your choosing:

3. Check the task

Check the created task:

GET /tasks/6636c2a5bb1e200008ea4ffe.json?company_id=6636c2a5bb1e200008ea4ffd

4. Update the task

Update the name of the task:

5. Destroy the task

Destroy the task:

6. Refresh the page

Refresh your browser tab to try again.