Run in Apidog
Allows authenticated users to upload files related to a deal stage. This endpoint expects a multipart form submission with a file and associated metadata.
Request Body Params multipart/form-data Required
Request Code Samples
curl --location 'https://useme.com/api/1.0/deal/file/' \
--header 'Authorization: Token <here-paste-your-token>' \
--form 'file=""' \
--form 'description=""' \
--form 'stage=""' Responses The file has been successfully uploaded and associated with the deal stage.
{
"success" : true ,
"data" : {
"file" : "http://example.com" ,
"description" : "string" ,
"stage" : 0
}
}
Modified at 2026-05-05 07:55:49