This requests processes an ACH payment with an Actum processor.
Click here to learn more about this request
Secure Payments allows you to process ACH payments with Actum. Note the following when using this request:
An Actum Processor is required by this request. Use the POST
create an Actum processor request to create one. If an Actum Processor exists, use the GET
all processors endpoint to retrieve the processor ID.
An Actum processor can be used for both processing payments and funding a bank account. To fund an account, set the "funds-direction"
field to "ToCustomer"
.
A customer's Payment Profile token is required by this request. Use GET
payment profile information to see this token.
For more information, see our Actum article.
{
"transaction": {
"amount": 10.00,
"funds-direction": "FromCustomer"
},
"metadata": {
"origin": "Secure Payments API",
"username": "[email protected]"
},
"checking-account": {
"token": "QVFJREF..."
}
}
Results
Returns the transaction
, account
, and processor
objects after a successfully processed Actum payment. An error results in a message
and context
object (agent ID) indicating the type of error (e.g. invalid payment profile token).