To Upload the attachment. You will need to use the URL generated on calling the Generate the URL to Upload the Attachment.
Request URI
PUT /{{upload_URL}}
Body Parameters
Description | Type | Required |
---|---|---|
Select the path of the image/pdf to be uploaded | binary | Yes |
Sample Request
curl -L -X PUT '{{upload_URL}}' \
-H 'Content-Type: image/png' \
--data-binary '{path_of_the_image}';
Sample Response
Success
Status Code: 200 [with empty response]
Response Code
Response Code | Description |
200 | The request is successful. |
500 | The request failed. |
See Also
Comments
Article is closed for comments.