The /PaymentIntent
endpoint allows for payments to be initiated through a configured Salesforce environment and updates Salesforce data accordingly.
The PaymentIntent API requires a Payment Method, Payment Processor and Source Connector to perform a successful request.
The available Payment Method and Source Connectors for a specific Salesforce environment can be queried through their specific endpoints. Some Payment Methods enable or require further Package Actions. Be sure to include these in the request. You can initiate payments for existing installments.
To learn more, see How to use the Payment API.
/PaymentIntent
The FinDock Payment API supports both one-time and recurring payments. To perform recurring payments, a 'Recurring' block replaces the 'OneTime' block in the request. Some Payment Service Providers (PSPs) require an initial payment AND recurring payment in the same request for authorization of the transaction. You can find out whether this is the case for a specific Payment Processor through the GET /PaymentMethod and GET /PaymentProcessors endpoints. Please see the specific payment processor articles on the details of performing a one-time and/or recurring payment. To perform payments on an existing Installment, simply remove the Payer block and add the Id of the Installment to the OneTime block.
Must match one of
SuccessURL
string
required
The URL the user is redirected to when a payment has been completed successfully.
FailureURL
string
required
The URL the user is redirected to when a payment has failed or was cancelled.
Payer
object (PayerRequest)
required
Specifies the payer of the payment. You can either pass Contact and / or Account fields like FirstName
and LastName
or a SalesforceId of an existing Contact and / or Account as Id
. Contacts and Accounts can be deduplicated with Salesforce deduplication rules. If an Id
of an existing Salesforce Installment
record is provided in the OneTime
object, this object is no longer required in the request. FinDock will instead the Contact
and / or Account
from the provided record.
PaymentMethod
object (PaymentMethodRequest)
Data on how the Payment will be performed.
OneTime
object (NewPaymentRequest)
required
Create a new one-time Payment.
{
"SuccessURL": "https://www.example.com/success",
"FailureURL": "https://www.example.com/failure",
"Payer": {
"Contact": {
"SalesforceFields": {
"FirstName": "Eric",
"LastName": "Johnson",
"Email": "test@findock.com",
"MailingStreet": "Rocket Rd",
"MailingCity": "Hawthorne",
"MailingPostalCode": "CA 90250",
"MobilePhone": "98989898"
}
}
},
"PaymentMethod": {
"Name": "Direct Debit",
"Parameters": {
"iban": "NL44ABNA6333227641",
"holderName": "Eric Johnson"
}
},
"OneTime": {
"Amount": 10.0
}
}
API was called successfully.
{
"Id": "pi_1hubybk7nh45rvbt6",
"PaymentMethod": {
"Name": "Direct Debit",
"Processor": "PaymentHub-SEPA",
"Target": "PRIMARY-BANK-ACCOUNT",
"Parameters": {
"iban": "NL44ABNA6333227641",
"holderName": "Eric Johnson"
}
},
"Settings": {
"SourceConnector": "PaymentHub-for-NPSP",
"ProcessingType": "Default"
},
"RedirectURL": "https://myfindock-developer-edition.eu29.force.com/apex/moph__redirect?failureRedirectURL=http%3A%2F%2Fwww.failure.nl&installmentId=a083X00001brHBqQAM&paymentMethod=CreditCard&recurring=false&successRedirectURL=http%3A%2F%2Fwww.success.nl"
}
/PaymentIntent/{ID}
Returns the status of a specific payment. Response will contain data on what One-time or Recurring payments have been created. For one-time payments, further information can be retrieved by performing a GET request on the /Installment endpoint with the Id
of the One-time object of type cpm__Installment__c
provided in the response. If Payer data like Contact
and Account
was created or found in Salesforce, this data is also provided.
ID
string
required
The Id of the PaymentIntent to retrieve.
API was called successfully.
{
"Id": "pi_1hubybk7nh45rvbt6",
"Status": "Matched",
"Payer": {
"Contact": {
"Url": "/services/data/v48.0/sobjects/Contact/0031j00000baD73AAE",
"Type": "Contact",
"Id": "a0P3X00000WjR8AUAV",
"Name": "Eric Johnson"
},
"Account": {
"Url": "/services/data/v48.0/sobjects/Account/0011j00000itNdlAAE",
"Type": "Account",
"Id": "a0P3X00000WjR8AUAV",
"Name": "Johnson Family"
}
},
"OneTime": {
"Url": "/services/data/36.0/sobjects/a083X00001aUMCnQAO",
"Type": "cpm__Installment__c",
"Id": "a083X00001aUMCnQAO",
"Status": "Outstanding"
}
}
Was this page helpful?