createCaseComment

Grants permission to add a comment to an existing case.

Samples


fun main() { 
   //sampleStart 
   // Invoke CreateCaseComment
val resp = securityIrClient.createCaseComment {
    caseId = "8403556009"
    body = "Case comment body."
} 
   //sampleEnd
}