Informational resource that returns the package actions possible and/or required for a certain Salesforce environment. Package actions are additional actions that can be performed for a specific FinDock Extension, like a payment extension or source connector. Package Actions can be used to perform additional actions in Salesforce through FinDock while making a Payment Request, like creating a record.
If a Payment Methods or Source Connector has a Package Action, these can be found in the specific Extension or Source Connector extension is an example of such a package.
/PackageActions
Return a list of possible Package Actions for a specific Salesforce environment.
API was called successfully. Please look at the response code for further information!
{
"ResponseCode": "001",
"IsSuccess": true,
"PackageActions": [
{
"PackageName": "PaymentHub-GiftAid",
"actions": {
"name": "CreateGiftAidDeclaration",
"Parameters": [
{
"Required": true,
"Name": "PAYMENT_PROFILE",
"Description": "The payment profile object contains card or bank information.",
"DataType": "Id"
}
]
}
}
]
}
Was this page helpful?