Job Management API (1.0.0)
Download OpenAPI specification:Download
Akila Analytics: support@AkilaAnalytics.com URL: https://AkilaAnalytics.com
API for managing job in a to-do list application.
Create a new job
Adds a job to the to-do list.
Request Body schema: application/jsonrequired
title required | string The title of the job |
description | string The details of the job |
dueDate | string <date-time> The due date of the job |
Responses
Request samples
- Payload
Content type
application/json
{- "title": "string",
- "description": "string",
- "dueDate": "2019-08-24T14:15:22Z"
}
Response samples
- 201
Content type
application/json
{- "id": "string",
- "title": "string",
- "description": "string",
- "dueDate": "2019-08-24T14:15:22Z",
- "completed": true
}
Update a specific job
Updates the details of a job by its ID.
path Parameters
jobId required | string The ID of the job to update |
Request Body schema: application/jsonrequired
title required | string The title of the job |
description | string The details of the job |
dueDate | string <date-time> The due date of the job |
Responses
Request samples
- Payload
Content type
application/json
{- "title": "string",
- "description": "string",
- "dueDate": "2019-08-24T14:15:22Z"
}