Sign up a card via an iframe
Use this call to render an iframe into your website. After it's been added to your website, payee card information can be entered directly into the iframe.
POST /api/iFrameConfigurationBuildSignupCardUrl
{
"requestId": "00000000-0000-0000-0000-000000000000",
"customerReferenceNumber": "string",
"domain": "string",
"successContinueNavigationPoint": "string",
"failureContinueNavigationPoint": "string",
"firstName": "string",
"lastName": "string",
"address1": "string",
"address2": "string",
"city": "string",
"state": "string",
"countryCode": "string",
"zipCode": "string",
"email": "string",
"phoneNumber": "string",
"showOptionalFields": true
}
Attributes for building the iframe
Attribute | Description |
---|---|
requestId | A customer generated unique ID. |
customerReferenceNumber | Customer's reference number. |
domain | The domain in which the iframe will be used. |
successContinueNavigationPoint | The landing page for a successful result. |
failureContinueNavigationPoint | The landing page for a failed result. |
firstName | Cardholder's first name. |
lastName | Cardholder's last name. |
address1 | Cardholder's address, line 1. |
address2 | Cardholder's address, line 2. |
city | Cardholder's city. |
state | Cardholder's State. |
countryCode | 2 letter country code. |
zipCode | Zip code of residence. |
email | Email address. |
phoneNumber | Cardholder's phone number. |
showOptionalFields | Indicates if optional fields can be viewed. |
Sample response
{
"version": "1.0.0.0",
"result": "Success",
"isSuccessfull": true
}
Updated 13 days ago