Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.

Skip to main content

Request French checks

Before you can accept payments with French checks, you need to request and be approved for the payment method. You can request several payment methods with the same API call.

Payment method review

All new merchant payment methods are reviewed by Swan. Swan might contact you for more information before accepting or rejecting the payment method.

Guide​

  1. Confirm you have a project access token, or, if you're an account member, a user access token with CanManageAccountMembership user rights.
  2. Call the requestMerchantPaymentMethods mutation. You can request a payment method regardless of the status of the merchant profile.
  3. Set check activate to true.
  4. The new merchant payment method is created with the status PendingReview and the version number 1.
  5. Swan reviews the new merchant payment method and updates the status, rolling reserve, and payment amount limit.
Webhook notification

Go to your Dashboard > Developers > Webhooks to subscribe to the MerchantPaymentMethod webhook and receive a notification when the status of your request changes. You'll also be notified when changes are made to the rolling reserve and payment amount limit.

Mutation​

Open in API Explorer
mutation RequestFrenchChecks {
requestMerchantPaymentMethods(
input: {
merchantProfileId: "$YOUR _MERCHANT_PROFILE_ID"
check: { activate: true }
}
) {
... on RequestMerchantPaymentMethodsSuccessPayload {
__typename
merchantProfile {
merchantPaymentMethods {
... on CheckMerchantPaymentMethod {
methodId
paymentAmountLimit {
currency
value
}
rollingReserve {
percentage
rollingDays
}
type
statusInfo {
status
}
}
}
}
}
... on ForbiddenRejection {
__typename
message
}
... on ValidationRejection {
__typename
message
}
... on InternalErrorRejection {
__typename
message
}
... on NotFoundRejection {
id
message
}
}
}

Payload​

The payload confirms that the payment method Check was requested successfully with the status PendingReview.

{
"data": {
"requestMerchantPaymentMethods": {
"__typename": "RequestMerchantPaymentMethodsSuccessPayload",
"merchantProfile": {
"merchantPaymentMethods": [
{
"methodId": "$PAYMENT_METHOD_ID",
"paymentAmountLimit": {
"currency": "EUR",
"value": "150"
},
"rollingReserve": {
"percentage": "100",
"rollingDays": "5"
},
"type": "Check",
"statusInfo": {
"status": "PendingReview"
}
}
]
}
}
}
}