-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Closed
Labels
A-connector-integrationArea: Connector integrationArea: Connector integrationC-featureCategory: Feature request or enhancementCategory: Feature request or enhancementE-easyEffort: Should be easy to implement and would make a good first PREffort: Should be easy to implement and would make a good first PR
Description
Feature Description
Add support for creating payments through affirm and afterpay/clearpay through stripe. The api contract changes will be as follows
- afterpay/clearpay
{
"payment_method": "pay_later",
"payment_method_data": {
"issuer_name": "afterpay_clearpay",
"afterpay_clearpay_redirect": {
"billing_email_address": "[email protected]"
}
}
}- affirm
{
"payment_method": "pay_later",
"payment_method_data": {
"issuer_name": "affirm",
"affirm_redirect": {
"billing_email_address": "[email protected]"
}
}
}Possible Implementation
Modify the payments request of stripe to include affirm and afterpay
Have you spent some time to check if this feature request has been raised before?
- I checked and didn't find similar issue
Have you read the Contributing Guidelines?
- I have read the Contributing Guidelines
Are you willing to submit a PR?
Yes I am willing to submit a PR!
- Support for affirm feat(connector): add support for affirm through stripe #355
- Support for afterpay_clearpay
Metadata
Metadata
Assignees
Labels
A-connector-integrationArea: Connector integrationArea: Connector integrationC-featureCategory: Feature request or enhancementCategory: Feature request or enhancementE-easyEffort: Should be easy to implement and would make a good first PREffort: Should be easy to implement and would make a good first PR