post https://app.asana.com/api/1.0/batch
Make multiple requests in parallel to Asana's API.
For an overview of how to make batch API requests, see batch requests.
Responses
Make multiple requests in parallel to Asana's API.
For an overview of how to make batch API requests, see batch requests.
xxxxxxxxxx
curl --request POST \
--url https://app.asana.com/api/1.0/batch \
--header 'accept: application/json' \
--header 'content-type: application/json'
xxxxxxxxxx
18{
"data": [
{
"status_code": 200,
"headers": {
"location": "/tasks/1234"
},
"body": {
"data": {
"gid": "1967",
"completed": false,
"name": "Hello, world!",
"notes": "How are you today?"
}
}
}
]
}