Download page Add Comment to a Runtime Ad Hoc Approval Process.
Add Comment to a Runtime Ad Hoc Approval Process
This API enables you to add a comment to a runtime ad hoc approval process. This API accepts the context object type, id, and comment as input parameters and returns true if the comments are successfully added.
API
Signature
AddCommentToRuntimeAdhocApprovalProcess
webService static Boolean AddCommentToRuntimeAdhocApprovalProcess(String sObjectType, Id sObjectId, String sComment)
Request Parameters
Name
Type
Required?
Description
sObjectId
ID
Yes
Id of the approval context object.
sObjectType
Type
Yes
Type of the approval context object.
sComment
String
Yes
The comment to add.
Response Parameter
Name
Type
Description
result
Boolean
Returns true if the comment is added successfully.
Code Sample
/**
* Add comment to a runtime ad hoc approval process
* @param sObjectType the approval context sobject type
* @param sObjectId the approval context sobject identifier
* @param sComment the comment to add
* @return <code>true</code> if the comment was added, <code>false</code> otherwise
*/
WebService static Boolean AddCommentToRuntimeAdhocApprovalProcess(String sObjectType, ID sObjectId, String sComment);
CODE
Integration Details
Use the following information in your integrations with Conga Approvals API. Refer to Integrating Conga with External Systems for information on how to get started.