When sending a multipart/form-data request, listing the parameters as with a application/x-www-form-urlencoded request does not work.
With the global section
https://api.todoist.com/sync/v8
token = my_token
project_id = 12345
--
Works as expected
--
Content-Type: application/x-www-form-urlencoded
POST /templates/export_as_file
token=:token&
project_id=:project_id
API errors saying an argument is missing
--
Content-Type: multipart/form-data
POST /templates/import_into_project
token=:token&
project_id=:project_id
[email protected]
Works as expected (after replacing the variables with their values)
--
Content-Type: multipart/form-data
-F token=:token
-F project_id=:project_id
-F [email protected]
POST /templates/import_into_project
When sending a multipart/form-data request, listing the parameters as with a application/x-www-form-urlencoded request does not work.
With the global section
Works as expected
API errors saying an argument is missing
Works as expected (after replacing the variables with their values)