Uploads a file to a task.
ProjectManager allows you to store Files connected to other elements of your Workspace
such as a Project, a Task, or Home. Files are maintained separately based on the location
where the file was stored.
When you upload a File, please allow a few moments for the File to be processed and verified.
ProjectManager may reject File uploads that contain problems such as malware. Once a File has
completed the upload the process, you may retrieve it using the DownloadFile API.
This API returns a JSON response indicating success or failure.
Upload Task File
Uploads a file to a task.
ProjectManager allows you to store Files connected to other elements of your Workspace
such as a Project, a Task, or Home. Files are maintained separately based on the location
where the file was stored.
When you upload a File, please allow a few moments for the File to be processed and verified.
ProjectManager may reject File uploads that contain problems such as malware. Once a File has
completed the upload the process, you may retrieve it using the DownloadFile API.
This API returns a JSON response indicating success or failure.
Authentication
AuthorizationBearer
Bearer authentication of the form `Bearer <token>`, where token is your auth token.
Path Parameters
taskIdstringRequiredformat: "uuid"
The reference to the task
Headers
x-integration-namestringOptional
The name of the calling system passed along as a header parameter
Request
This endpoint expects a multipart form containing an optional file.
filefileOptional
Response
Success
errorobject or null
If the API call failed, this will contain information about the error that occurred.
successboolean or null
True if the API call succeeded; false otherwise.
hasErrorboolean or null
True if the API call failed.
statusCodeenum or null
The HTTP code of the response.
dataobject or null
Represents a file in project manager
Success
True if the API call succeeded; false otherwise.
Bearer authentication of the form Bearer <token>, where token is your auth token.