curl --location --request POST 'https://app.asana.com/api/1.0/batch' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": {
        "actions": [
            {
                "data": {
                    "assignee": "me",
                    "workspace": "1337"
                },
                "method": "get",
                "options": {
                    "fields": [
                        "name",
                        "notes",
                        "completed"
                    ],
                    "limit": 3
                },
                "relative_path": "/tasks/123"
            }
        ]
    }
}'{
    "data": [
        {
            "body": {
                "data": {
                    "completed": false,
                    "gid": "1967",
                    "name": "Hello, world!",
                    "notes": "How are you today?"
                }
            },
            "headers": {
                "location": "/tasks/1234"
            },
            "status_code": 200
        }
    ]
}