Get Signed URLs
The first step in the file upload process is to obtain signed URLs.
To obtain a list of signed URLs for file upload, please execute the following request:
post
Authorizations
Body
filenamesstring[]Required
issue_idstring · max: 50Required
Responses
200
Successful
application/json
400
Bad Request: No token submitted or data invalid.
401
Unauthorized: Data is incorect or expired
403
Forbidden
404
Not Found
424
Failed Dependency
application/json
500
Internal Server Error: An unexpected error occurred
post
POST /v1/cases/upload HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 59
{
"filenames": [
"file1.txt",
"file2.pdf"
],
"issue_id": "AB1234"
}
{
"file1.txt": "put_method_presigned_url_for_file1.txt",
"file2.pdf": "put_method_presigned_url_for_file2.pdf"
}
The response to your request will be a JSON
object containing the signed URLs. You can now proceed to the next step and use these URLs to complete the file upload process.
Last updated