getCaseAttachmentDownloadUrl
inline suspend fun SecurityIrClient.getCaseAttachmentDownloadUrl(crossinline block: GetCaseAttachmentDownloadUrlRequest.Builder.() -> Unit): GetCaseAttachmentDownloadUrlResponse
Returns a Pre-Signed URL for uploading attachments into a case.
Samples
fun main() {
//sampleStart
// Invoke GetCaseAttachmentDownloadUrl
val resp = securityIrClient.getCaseAttachmentDownloadUrl {
caseId = "8403556009"
attachmentId = "3C5A6B89-1DEF-4C2D-A5B6-123456789ABC"
}
//sampleEnd
}