Submitting for Approvals with Attachments
submitForApprovalsWithAttachments(String sObjectType, Id sObjectId, Id processId, List attachmentIds)
This API accepts the object type and object ID of the context object, the process ID and the list of attachment IDs as input parameters.
API |
Signature |
---|---|
submitForApprovalsWithAttachments |
static Boolean submitForApprovalsWithAttachments(String sObjectType, Id sObjectId, Id processId, List attachmentIds) |
Request Parameters | |||
---|---|---|---|
Name |
Type |
Required? |
Description |
sObjectId | ID |
Yes |
ID of the approval context object. |
sObjectType | String |
Yes |
Type of the approval context object. |
processId | ID |
Yes |
ID of the approval process |
attachmentIds | List |
Yes |
List of attachment IDs |
Response Parameter | ||
---|---|---|
Name |
Type |
Description |
result | Boolean |
Returns true if the API is executed successfully. |
Code Sample
submitForApprovalsWithAttachments(String sObjectType, Id sObjectId, Id processId, Map templateFld2NameIdMap)
This API accepts the object type and the object ID of the context object as input parameters.
API |
Signature |
---|---|
submitForApprovalsWithAttachments |
static Boolean submitForApprovalsWithAttachments(String sObjectType, Id sObjectId, Id processId, Map templateFld2NameIdMap) |
Request Parameters | |||
---|---|---|---|
Name |
Type |
Required? |
Description |
sObjectId | ID |
Yes |
ID of the approval context object. |
sObjectType | String |
Yes |
Type of the approval context object. |
processId | ID |
Yes |
ID of the approval process |
templateFld2NameIdMap | Map |
Yes |
Map of process instance template field names and template names |
Response Parameter | ||
---|---|---|
Name |
Type |
Description |
result | Boolean |
Returns true if the API is executed successfully. |