To-dos API
Create an approval associated with a feature
POST /api/v1/tasks
| Name | Description | 
|---|---|
name * | The name of the task  | 
body * | The description of the task  | 
taskable_type  | The type of record the task belongs to.  
  | 
taskable_id  | The reference number or ID of the record the task belongs to  | 
taskable_type  | The type of record the task belongs to.  
  | 
taskable_id  | The reference number or ID of the record the task belongs to  | 
type  | The type of the task.  
  | 
assigned_to_users  | Email addresses of assigned users  | 
due_date  | The date the task is due  | 
Example request
POST /api/v1/tasksExample CURL command
curl "https://company.aha.io/api/v1/tasks" -d '{"task":{"name":"Approve press release","body":"\u003cp\u003eCan you please approve the press release\u003c/p\u003e","taskable_type":"Feature","taskable_id":1007868956,"type":"Approval"}}' -X POST \
	-H "Authorization: Bearer 15b60d42d4bc417284a246ced6877b0bf13fb4aca415f7b55f7006bc3694a8ab" \
	-H "Content-Type: application/json" \
	-H "Accept: application/json"Request
authorization: Bearer 15b60d42d4bc417284a246ced6877b0bf13fb4aca415f7b55f7006bc3694a8ab
contentType: application/json
accept: application/json
Request body
Response
Status: 200 OK
contentType: application/json; charset=utf-8
Response body