-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Description
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
file=@project.csv
Works as expected (after replacing the variables with their values)
--
Content-Type: multipart/form-data
-F token=:token
-F project_id=:project_id
-F file=@project.csv
POST /templates/import_into_project
Metadata
Metadata
Assignees
Labels
No labels