Get Signed URLs

The first step in the file upload process is to obtain signed URLs.

To ensure the highest level of security, the signed URLs obtained in the file upload process have a limited lifetime. This helps to protect the data being uploaded and ensures that only authorized parties have access to it.

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
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