Skip to content

Get available payment methods

SumUp API reference and code samples.

Checkouts

Accept payments from your end users by adding the Checkouts model to your platform. SumUp supports standard and single payment 3DS checkout flows.

The Checkout model allows creating, listing, retrieving, processing and deactivating checkouts. A payment is completed by creating a checkout and then processing the checkout.

The Checkout object

Details of the payment checkout.

Checkout

  • checkout_reference string max length: 90

    Unique ID of the payment checkout specified by the client application when creating the checkout resource.

  • amount number

    Amount of the payment.

    Example: 10.1
  • currency string

    Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

    Example: "EUR"
  • merchant_code string

    Unique identifying code of the merchant profile.

    Example: "MH4H92C7"
  • description string

    Short description of the checkout visible in the SumUp dashboard. The description can contribute to reporting, allowing easier identification of a checkout.

  • return_url string uri

    URL to which the SumUp platform sends the processing status of the payment checkout.

  • id string read only

    Unique ID of the checkout resource.

    Example: "4e425463-3e1b-431d-83fa-1e51c2925e99"
  • status string
    Options:  PENDING FAILED PAID EXPIRED

    Current status of the checkout.

  • date string date-time

    Date and time of the creation of the payment checkout. Response format expressed according to ISO8601 code.

    Example: "2020-02-29T10:56:56+00:00"
  • valid_until string date-timenullable

    Date and time of the checkout expiration before which the client application needs to send a processing request. If no value is present, the checkout does not have an expiration time.

    Example: "2020-02-29T10:56:56+00:00"
  • customer_id string

    Unique identification of a customer. If specified, the checkout session and payment instrument are associated with the referenced customer.

    Example: "831ff8d4cd5958ab5670"
  • mandate object

    Created mandate

     Show attributes
     Close
    Attributes
    • type string

      Indicates the mandate type

    • status string

      Mandate status

    • merchant_code string

      Merchant code which has the mandate

      Example: "MH4H92C7"
    Example: {"type":"recurrent","status":"active","merchant_code":"MH4H92C7"}
  • transactions []object unique items

    List of transactions related to the payment.

     Show attributes
     Close
    Attributes
    • id string

      Unique ID of the transaction.

      Example: "6b425463-3e1b-431d-83fa-1e51c2925e99"
    • transaction_code string

      Transaction code returned by the acquirer/processing entity after processing the transaction.

      Example: "TEENSK4W2K"
    • amount number

      Total amount of the transaction.

      Example: 10.1
    • currency string

      Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

      Example: "EUR"
    • timestamp string date-time

      Date and time of the creation of the transaction. Response format expressed according to ISO8601 code.

      Example: "2020-02-29T10:56:56.876Z"
    • status string
      Options:  SUCCESSFUL CANCELLED FAILED PENDING

      Current status of the transaction.

    • payment_type string

      Payment type used for the transaction.

    • installments_count integer minimum: 1

      Current number of the installment for deferred payments.

    • merchant_code string

      Unique code of the registered merchant to whom the payment is made.

      Example: "MH4H92C7"
    • vat_amount number

      Amount of the applicable VAT (out of the total transaction amount).

      Example: 6
    • tip_amount number

      Amount of the tip (out of the total transaction amount).

      Example: 3
    • entry_mode string

      Entry mode of the payment details.

    • auth_code string

      Authorization code for the transaction sent by the payment card issuer or bank. Applicable only to card payments.

      Example: "053201"
    • internal_id integer

      Internal unique ID of the transaction on the SumUp platform.

      Example: 1763892018
The Checkout object
{
"checkout_reference": null,
"amount": 10.1,
"currency": "EUR",
"merchant_code": "MH4H92C7",
"description": null,
"return_url": null,
"id": "4e425463-3e1b-431d-83fa-1e51c2925e99",
"status": null,
"date": "2020-02-29T10:56:56+00:00",
"valid_until": "2020-02-29T10:56:56+00:00",
"customer_id": "831ff8d4cd5958ab5670",
"mandate": {
"type": "recurrent",
"status": "active",
"merchant_code": "MH4H92C7"
},
"transactions": [
{
"id": "6b425463-3e1b-431d-83fa-1e51c2925e99",
"transaction_code": "TEENSK4W2K",
"amount": 10.1,
"currency": "EUR",
"timestamp": "2020-02-29T10:56:56.876Z",
"status": null,
"payment_type": null,
"installments_count": null,
"merchant_code": "MH4H92C7",
"vat_amount": 6,
"tip_amount": 3,
"entry_mode": null,
"auth_code": "053201",
"internal_id": 1763892018
}
]
}
Checkouts

List checkouts

Lists created checkout resources according to the applied checkout_reference.

Required scopes: payments

Query Parameters

  • checkout_reference string

    Filters the list of checkout resources by the unique ID of the checkout.

Response 200

[]object
 Show attributes
 Close
Attributes
  • checkout_reference string max length: 90

    Unique ID of the payment checkout specified by the client application when creating the checkout resource.

  • amount number

    Amount of the payment.

    Example: 10.1
  • currency string

    Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

    Example: "EUR"
  • merchant_code string

    Unique identifying code of the merchant profile.

    Example: "MH4H92C7"
  • description string

    Short description of the checkout visible in the SumUp dashboard. The description can contribute to reporting, allowing easier identification of a checkout.

  • return_url string uri

    URL to which the SumUp platform sends the processing status of the payment checkout.

  • id string read only

    Unique ID of the checkout resource.

    Example: "4e425463-3e1b-431d-83fa-1e51c2925e99"
  • status string
    Options:  PENDING FAILED PAID EXPIRED

    Current status of the checkout.

  • date string date-time

    Date and time of the creation of the payment checkout. Response format expressed according to ISO8601 code.

    Example: "2020-02-29T10:56:56+00:00"
  • valid_until string date-timenullable

    Date and time of the checkout expiration before which the client application needs to send a processing request. If no value is present, the checkout does not have an expiration time.

    Example: "2020-02-29T10:56:56+00:00"
  • customer_id string

    Unique identification of a customer. If specified, the checkout session and payment instrument are associated with the referenced customer.

    Example: "831ff8d4cd5958ab5670"
  • mandate object

    Created mandate

     Show attributes
     Close
    Attributes
    • type string

      Indicates the mandate type

    • status string

      Mandate status

    • merchant_code string

      Merchant code which has the mandate

      Example: "MH4H92C7"
    Example: {"type":"recurrent","status":"active","merchant_code":"MH4H92C7"}
  • transactions []object unique items

    List of transactions related to the payment.

     Show attributes
     Close
    Attributes
    • id string

      Unique ID of the transaction.

      Example: "6b425463-3e1b-431d-83fa-1e51c2925e99"
    • transaction_code string

      Transaction code returned by the acquirer/processing entity after processing the transaction.

      Example: "TEENSK4W2K"
    • amount number

      Total amount of the transaction.

      Example: 10.1
    • currency string

      Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

      Example: "EUR"
    • timestamp string date-time

      Date and time of the creation of the transaction. Response format expressed according to ISO8601 code.

      Example: "2020-02-29T10:56:56.876Z"
    • status string
      Options:  SUCCESSFUL CANCELLED FAILED PENDING

      Current status of the transaction.

    • payment_type string

      Payment type used for the transaction.

    • installments_count integer minimum: 1

      Current number of the installment for deferred payments.

    • merchant_code string

      Unique code of the registered merchant to whom the payment is made.

      Example: "MH4H92C7"
    • vat_amount number

      Amount of the applicable VAT (out of the total transaction amount).

      Example: 6
    • tip_amount number

      Amount of the tip (out of the total transaction amount).

      Example: 3
    • entry_mode string

      Entry mode of the payment details.

    • auth_code string

      Authorization code for the transaction sent by the payment card issuer or bank. Applicable only to card payments.

      Example: "053201"
    • internal_id integer

      Internal unique ID of the transaction on the SumUp platform.

      Example: 1763892018
  • transaction_code string read only

    Transaction code of the successful transaction with which the payment for the checkout is completed.

    Example: "TEENSK4W2K"
  • transaction_id string read only

    Transaction ID of the successful transaction with which the payment for the checkout is completed.

    Example: "410fc44a-5956-44e1-b5cc-19c6f8d727a4"
  • merchant_name string

    Name of the merchant

    Example: "Sample Merchant"
  • redirect_url string

    Refers to a url where the end user is redirected once the payment processing completes.

    Example: "https://mysite.com/completed_purchase"
  • payment_instrument object

    Object containing token information for the specified payment instrument

     Show attributes
     Close
    Attributes
    • token string

      Token value

      Example: "e76d7e5c-9375-4fac-a7e7-b19dc5302fbc"
GET /v0.1/checkouts
curl https://api.sumup.com/v0.1/checkouts \
-X GET \
-H "Authorization: Bearer $SUMUP_API_KEY"
import SumUp from '@sumup/sdk';
const client = new SumUp();
const result = await client.checkouts.list();
using SumUp;
var client = new SumUpClient();
var result = await client.Checkouts.ListAsync();
import com.sumup.sdk.SumUpClient;
SumUpClient client = SumUpClient.builder().build();
var result = client.checkouts().listCheckouts();
from sumup import Sumup
client = Sumup()
result = client.checkouts.list()
$sumup = new \SumUp\SumUp();
$result = $sumup->checkouts->list();
client := sumup.NewClient()
result, err := client.Checkouts.List(context.Background())
use sumup::Client;
let client = Client::default();
let result = client.checkouts().list(sumup::ListCheckoutsParams{
checkout_reference: Some("checkout_reference".to_string()),
}).await;
List checkouts response
[
{
"checkout_reference": null,
"amount": 10.1,
"currency": "EUR",
"merchant_code": "MH4H92C7",
"description": null,
"return_url": null,
"id": "4e425463-3e1b-431d-83fa-1e51c2925e99",
"status": null,
"date": "2020-02-29T10:56:56+00:00",
"valid_until": "2020-02-29T10:56:56+00:00",
"customer_id": "831ff8d4cd5958ab5670",
"mandate": {
"type": "recurrent",
"status": "active",
"merchant_code": "MH4H92C7"
},
"transactions": [
{
"id": "6b425463-3e1b-431d-83fa-1e51c2925e99",
"transaction_code": "TEENSK4W2K",
"amount": 10.1,
"currency": "EUR",
"timestamp": "2020-02-29T10:56:56.876Z",
"status": null,
"payment_type": null,
"installments_count": null,
"merchant_code": "MH4H92C7",
"vat_amount": 6,
"tip_amount": 3,
"entry_mode": null,
"auth_code": "053201",
"internal_id": 1763892018
}
],
"transaction_code": "TEENSK4W2K",
"transaction_id": "410fc44a-5956-44e1-b5cc-19c6f8d727a4",
"merchant_name": "Sample Merchant",
"redirect_url": "https://mysite.com/completed_purchase",
"payment_instrument": {
"token": "e76d7e5c-9375-4fac-a7e7-b19dc5302fbc"
}
}
]
Checkouts

Create a checkout

Creates a new payment checkout resource. The unique checkout_reference created by this request, is used for further manipulation of the checkout.

For 3DS checkouts, add the redirect_url parameter to your request body schema.

Follow by processing a checkout to charge the provided payment instrument.

Required scopes: payments

Body Parameters

  • checkout_reference string max length: 90 required

    Unique ID of the payment checkout specified by the client application when creating the checkout resource.

  • amount number required

    Amount of the payment.

  • currency string required

    Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

    Example: "EUR"
  • merchant_code string required

    Unique identifying code of the merchant profile.

    Example: "MH4H92C7"
  • description string

    Short description of the checkout visible in the SumUp dashboard. The description can contribute to reporting, allowing easier identification of a checkout.

  • return_url string uri

    URL to which the SumUp platform sends the processing status of the payment checkout.

  • customer_id string

    Unique identification of a customer. If specified, the checkout session and payment instrument are associated with the referenced customer.

  • purpose string default: CHECKOUT
    Options:  CHECKOUT SETUP_RECURRING_PAYMENT

    Purpose of the checkout.

  • id string read only

    Unique ID of the checkout resource.

  • status string read only
    Options:  PENDING FAILED PAID

    Current status of the checkout.

  • date string date-timeread only

    Date and time of the creation of the payment checkout. Response format expressed according to ISO8601 code.

    Example: "2020-02-29T10:56:56+00:00"
  • valid_until string date-timenullable

    Date and time of the checkout expiration before which the client application needs to send a processing request. If no value is present, the checkout does not have an expiration time.

    Example: "2020-02-29T10:56:56+00:00"
  • transactions []object unique itemsread only

    List of transactions related to the payment.

     Show attributes
     Close
    Attributes
    • id string

      Unique ID of the transaction.

      Example: "6b425463-3e1b-431d-83fa-1e51c2925e99"
    • transaction_code string

      Transaction code returned by the acquirer/processing entity after processing the transaction.

      Example: "TEENSK4W2K"
    • amount number

      Total amount of the transaction.

      Example: 10.1
    • currency string

      Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

      Example: "EUR"
    • timestamp string date-time

      Date and time of the creation of the transaction. Response format expressed according to ISO8601 code.

      Example: "2020-02-29T10:56:56.876Z"
    • status string
      Options:  SUCCESSFUL CANCELLED FAILED PENDING

      Current status of the transaction.

    • payment_type string

      Payment type used for the transaction.

    • installments_count integer minimum: 1

      Current number of the installment for deferred payments.

    • merchant_code string

      Unique code of the registered merchant to whom the payment is made.

      Example: "MH4H92C7"
    • vat_amount number

      Amount of the applicable VAT (out of the total transaction amount).

      Example: 6
    • tip_amount number

      Amount of the tip (out of the total transaction amount).

      Example: 3
    • entry_mode string

      Entry mode of the payment details.

    • auth_code string

      Authorization code for the transaction sent by the payment card issuer or bank. Applicable only to card payments.

      Example: "053201"
    • internal_id integer

      Internal unique ID of the transaction on the SumUp platform.

      Example: 1763892018
  • redirect_url string

    Required for APMs and recommended for card payments. Refers to a url where the end user is redirected once the payment processing completes. If not specified, the Payment Widget renders 3DS challenge within an iframe instead of performing a full-page redirect.

    Example: "https://mysite.com/completed_purchase"

Checkout

  • checkout_reference string max length: 90

    Unique ID of the payment checkout specified by the client application when creating the checkout resource.

  • amount number

    Amount of the payment.

    Example: 10.1
  • currency string

    Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

    Example: "EUR"
  • merchant_code string

    Unique identifying code of the merchant profile.

    Example: "MH4H92C7"
  • description string

    Short description of the checkout visible in the SumUp dashboard. The description can contribute to reporting, allowing easier identification of a checkout.

  • return_url string uri

    URL to which the SumUp platform sends the processing status of the payment checkout.

  • id string read only

    Unique ID of the checkout resource.

    Example: "4e425463-3e1b-431d-83fa-1e51c2925e99"
  • status string
    Options:  PENDING FAILED PAID EXPIRED

    Current status of the checkout.

  • date string date-time

    Date and time of the creation of the payment checkout. Response format expressed according to ISO8601 code.

    Example: "2020-02-29T10:56:56+00:00"
  • valid_until string date-timenullable

    Date and time of the checkout expiration before which the client application needs to send a processing request. If no value is present, the checkout does not have an expiration time.

    Example: "2020-02-29T10:56:56+00:00"
  • customer_id string

    Unique identification of a customer. If specified, the checkout session and payment instrument are associated with the referenced customer.

    Example: "831ff8d4cd5958ab5670"
  • mandate object

    Created mandate

     Show attributes
     Close
    Attributes
    • type string

      Indicates the mandate type

    • status string

      Mandate status

    • merchant_code string

      Merchant code which has the mandate

      Example: "MH4H92C7"
    Example: {"type":"recurrent","status":"active","merchant_code":"MH4H92C7"}
  • transactions []object unique items

    List of transactions related to the payment.

     Show attributes
     Close
    Attributes
    • id string

      Unique ID of the transaction.

      Example: "6b425463-3e1b-431d-83fa-1e51c2925e99"
    • transaction_code string

      Transaction code returned by the acquirer/processing entity after processing the transaction.

      Example: "TEENSK4W2K"
    • amount number

      Total amount of the transaction.

      Example: 10.1
    • currency string

      Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

      Example: "EUR"
    • timestamp string date-time

      Date and time of the creation of the transaction. Response format expressed according to ISO8601 code.

      Example: "2020-02-29T10:56:56.876Z"
    • status string
      Options:  SUCCESSFUL CANCELLED FAILED PENDING

      Current status of the transaction.

    • payment_type string

      Payment type used for the transaction.

    • installments_count integer minimum: 1

      Current number of the installment for deferred payments.

    • merchant_code string

      Unique code of the registered merchant to whom the payment is made.

      Example: "MH4H92C7"
    • vat_amount number

      Amount of the applicable VAT (out of the total transaction amount).

      Example: 6
    • tip_amount number

      Amount of the tip (out of the total transaction amount).

      Example: 3
    • entry_mode string

      Entry mode of the payment details.

    • auth_code string

      Authorization code for the transaction sent by the payment card issuer or bank. Applicable only to card payments.

      Example: "053201"
    • internal_id integer

      Internal unique ID of the transaction on the SumUp platform.

      Example: 1763892018
POST /v0.1/checkouts
curl https://api.sumup.com/v0.1/checkouts \
-X POST \
-H "Authorization: Bearer $SUMUP_API_KEY" \
--json '{
"checkout_reference": "",
"amount": 0,
"currency": "EUR",
"merchant_code": "MH4H92C7"
}'
import SumUp from '@sumup/sdk';
const client = new SumUp();
const result = await client.checkouts.create({
checkout_reference: "",
amount: 0,
currency: "EUR",
merchant_code: "MH4H92C7",
});
using SumUp;
var client = new SumUpClient();
var result = await client.Checkouts.CreateAsync(
new CheckoutCreateRequest
{
CheckoutReference = "",
Amount = 0,
Currency = "EUR",
MerchantCode = "MH4H92C7",
}
);
import com.sumup.sdk.SumUpClient;
SumUpClient client = SumUpClient.builder().build();
var result = client.checkouts().createCheckout(
CheckoutCreateRequest.builder()
.checkoutReference("")
.amount(0f)
.currency(Currency.fromValue("EUR"))
.merchantCode("MH4H92C7")
.build()
);
from sumup import Sumup
client = Sumup()
result = client.checkouts.create(CreateCheckoutBody(
checkout_reference="",
amount=0,
currency="EUR",
merchant_code="MH4H92C7",
))
$sumup = new \SumUp\SumUp();
$result = $sumup->checkouts->create([
'checkout_reference' => '',
'amount' => 0,
'currency' => 'EUR',
'merchant_code' => 'MH4H92C7',
]);
client := sumup.NewClient()
result, err := client.Checkouts.Create(context.Background(), sumup.CheckoutsCreateParams{
CheckoutReference: "",
Amount: 0,
Currency: "EUR",
MerchantCode: "MH4H92C7",
})
use sumup::Client;
let client = Client::default();
let result = client.checkouts().create(sumup::CreateCheckoutBody{
checkout_reference: "".to_string(),
amount: 0,
currency: "EUR".to_string(),
merchant_code: "MH4H92C7".to_string(),
}).await;
Response
{
"checkout_reference": "8ea25ec3-3293-40e9-a165-6d7f3b3073c5",
"amount": 10.1,
"currency": "EUR",
"merchant_code": "MH4H92C7",
"merchant_country": "DE",
"description": "My Checkout",
"return_url": "http://example.com",
"id": "88fcf8de-304d-4820-8f1c-ec880290eb92",
"status": "PENDING",
"date": "2020-02-29T10:56:56+00:00",
"valid_until": "2020-02-29T10:56:56+00:00",
"customer_id": "831ff8d4cd5958ab5670",
"mandate": {
"type": "recurrent",
"status": "active",
"merchant_code": "MH4H92C7"
},
"transactions": [
{
"id": "410fc44a-5956-44e1-b5cc-19c6f8d727a4",
"transaction_code": "TEENSK4W2K",
"amount": 10.1,
"currency": "EUR",
"timestamp": "2020-02-29T10:56:56.876Z",
"status": "SUCCESSFUL",
"payment_type": "ECOM",
"installments_count": 1,
"merchant_code": "MH4H92C7",
"vat_amount": 6,
"tip_amount": 3,
"entry_mode": "CUSTOMER_ENTRY",
"auth_code": "012345",
"internal_id": 0
}
]
}
{
"checkout_reference": "8ea25ec3-3293-40e9-a165-6d7f3b3073c5",
"amount": 10.1,
"currency": "EUR",
"description": "My Checkout",
"return_url": "http://example.com",
"id": "88fcf8de-304d-4820-8f1c-ec880290eb92",
"status": "PENDING",
"date": "2020-02-29T10:56:56+00:00",
"valid_until": "2020-02-29T10:56:56+00:00",
"customer_id": "831ff8d4cd5958ab5670",
"redirect_url": "https://mysite.com/completed_purchase",
"transactions": [
{
"id": "410fc44a-5956-44e1-b5cc-19c6f8d727a4",
"transaction_code": "TEENSK4W2K",
"amount": 10.1,
"currency": "EUR",
"timestamp": "2020-02-29T10:56:56.876Z",
"status": "SUCCESSFUL",
"payment_type": "ECOM",
"installments_count": 1,
"merchant_code": "MH4H92C7",
"vat_amount": 6,
"tip_amount": 3,
"entry_mode": "CUSTOMER_ENTRY",
"auth_code": "012345",
"internal_id": 0
}
]
}
{
"checkout_reference": "8ea25ec3-3293-40e9-a165-6d7f3b3073c5",
"amount": 10.1,
"currency": "EUR",
"merchant_code": "MH4H92C7",
"description": "My Checkout",
"return_url": "http://example.com",
"id": "88fcf8de-304d-4820-8f1c-ec880290eb92",
"status": "PENDING",
"date": "2021-06-29T11:08:36.000+00:00",
"merchant_name": "My company",
"merchant_country": "DE",
"redirect_url": "https://sumup.com",
"purpose": "CHECKOUT",
"transactions": [
{
"id": "410fc44a-5956-44e1-b5cc-19c6f8d727a4",
"transaction_code": "TEENSK4W2K",
"amount": 10.1,
"currency": "EUR",
"timestamp": "2020-02-29T10:56:56.876Z",
"status": "SUCCESSFUL",
"payment_type": "ECOM",
"installments_count": 1,
"merchant_code": "MH4H92C7",
"vat_amount": 6,
"tip_amount": 3,
"entry_mode": "CUSTOMER_ENTRY",
"auth_code": "012345",
"internal_id": 0
}
]
}
Checkouts

Retrieve a checkout

Retrieves an identified checkout resource. Use this request after processing a checkout to confirm its status and inform the end user respectively.

Required scopes: payments

Path Parameters

  • id string required

    Unique ID of the checkout resource.

Response 200

  • checkout_reference string max length: 90

    Unique ID of the payment checkout specified by the client application when creating the checkout resource.

  • amount number

    Amount of the payment.

    Example: 10.1
  • currency string

    Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

    Example: "EUR"
  • merchant_code string

    Unique identifying code of the merchant profile.

    Example: "MH4H92C7"
  • description string

    Short description of the checkout visible in the SumUp dashboard. The description can contribute to reporting, allowing easier identification of a checkout.

  • return_url string uri

    URL to which the SumUp platform sends the processing status of the payment checkout.

  • id string read only

    Unique ID of the checkout resource.

    Example: "4e425463-3e1b-431d-83fa-1e51c2925e99"
  • status string
    Options:  PENDING FAILED PAID EXPIRED

    Current status of the checkout.

  • date string date-time

    Date and time of the creation of the payment checkout. Response format expressed according to ISO8601 code.

    Example: "2020-02-29T10:56:56+00:00"
  • valid_until string date-timenullable

    Date and time of the checkout expiration before which the client application needs to send a processing request. If no value is present, the checkout does not have an expiration time.

    Example: "2020-02-29T10:56:56+00:00"
  • customer_id string

    Unique identification of a customer. If specified, the checkout session and payment instrument are associated with the referenced customer.

    Example: "831ff8d4cd5958ab5670"
  • mandate object

    Created mandate

     Show attributes
     Close
    Attributes
    • type string

      Indicates the mandate type

    • status string

      Mandate status

    • merchant_code string

      Merchant code which has the mandate

      Example: "MH4H92C7"
    Example: {"type":"recurrent","status":"active","merchant_code":"MH4H92C7"}
  • transactions []object unique items

    List of transactions related to the payment.

     Show attributes
     Close
    Attributes
    • id string

      Unique ID of the transaction.

      Example: "6b425463-3e1b-431d-83fa-1e51c2925e99"
    • transaction_code string

      Transaction code returned by the acquirer/processing entity after processing the transaction.

      Example: "TEENSK4W2K"
    • amount number

      Total amount of the transaction.

      Example: 10.1
    • currency string

      Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

      Example: "EUR"
    • timestamp string date-time

      Date and time of the creation of the transaction. Response format expressed according to ISO8601 code.

      Example: "2020-02-29T10:56:56.876Z"
    • status string
      Options:  SUCCESSFUL CANCELLED FAILED PENDING

      Current status of the transaction.

    • payment_type string

      Payment type used for the transaction.

    • installments_count integer minimum: 1

      Current number of the installment for deferred payments.

    • merchant_code string

      Unique code of the registered merchant to whom the payment is made.

      Example: "MH4H92C7"
    • vat_amount number

      Amount of the applicable VAT (out of the total transaction amount).

      Example: 6
    • tip_amount number

      Amount of the tip (out of the total transaction amount).

      Example: 3
    • entry_mode string

      Entry mode of the payment details.

    • auth_code string

      Authorization code for the transaction sent by the payment card issuer or bank. Applicable only to card payments.

      Example: "053201"
    • internal_id integer

      Internal unique ID of the transaction on the SumUp platform.

      Example: 1763892018
  • transaction_code string read only

    Transaction code of the successful transaction with which the payment for the checkout is completed.

    Example: "TEENSK4W2K"
  • transaction_id string read only

    Transaction ID of the successful transaction with which the payment for the checkout is completed.

    Example: "410fc44a-5956-44e1-b5cc-19c6f8d727a4"
  • merchant_name string

    Name of the merchant

    Example: "Sample Merchant"
  • redirect_url string

    Refers to a url where the end user is redirected once the payment processing completes.

    Example: "https://mysite.com/completed_purchase"
  • payment_instrument object

    Object containing token information for the specified payment instrument

     Show attributes
     Close
    Attributes
    • token string

      Token value

      Example: "e76d7e5c-9375-4fac-a7e7-b19dc5302fbc"
GET /v0.1/checkouts/{id}
curl https://api.sumup.com/v0.1/checkouts/{id} \
-X GET \
-H "Authorization: Bearer $SUMUP_API_KEY"
import SumUp from '@sumup/sdk';
const client = new SumUp();
const result = await client.checkouts.get("id");
using SumUp;
var client = new SumUpClient();
var result = await client.Checkouts.GetAsync(
"id"
);
import com.sumup.sdk.SumUpClient;
SumUpClient client = SumUpClient.builder().build();
var result = client.checkouts().getCheckout(
"id"
);
from sumup import Sumup
client = Sumup()
result = client.checkouts.get("id")
$sumup = new \SumUp\SumUp();
$result = $sumup->checkouts->get('id');
client := sumup.NewClient()
result, err := client.Checkouts.Get(context.Background(), "id")
use sumup::Client;
let client = Client::default();
let result = client.checkouts().get("id").await;
Retrieve a checkout response
{
"checkout_reference": null,
"amount": 10.1,
"currency": "EUR",
"merchant_code": "MH4H92C7",
"description": null,
"return_url": null,
"id": "4e425463-3e1b-431d-83fa-1e51c2925e99",
"status": null,
"date": "2020-02-29T10:56:56+00:00",
"valid_until": "2020-02-29T10:56:56+00:00",
"customer_id": "831ff8d4cd5958ab5670",
"mandate": {
"type": "recurrent",
"status": "active",
"merchant_code": "MH4H92C7"
},
"transactions": [
{
"id": "6b425463-3e1b-431d-83fa-1e51c2925e99",
"transaction_code": "TEENSK4W2K",
"amount": 10.1,
"currency": "EUR",
"timestamp": "2020-02-29T10:56:56.876Z",
"status": null,
"payment_type": null,
"installments_count": null,
"merchant_code": "MH4H92C7",
"vat_amount": 6,
"tip_amount": 3,
"entry_mode": null,
"auth_code": "053201",
"internal_id": 1763892018
}
],
"transaction_code": "TEENSK4W2K",
"transaction_id": "410fc44a-5956-44e1-b5cc-19c6f8d727a4",
"merchant_name": "Sample Merchant",
"redirect_url": "https://mysite.com/completed_purchase",
"payment_instrument": {
"token": "e76d7e5c-9375-4fac-a7e7-b19dc5302fbc"
}
}
Checkouts

Process a checkout

Processing a checkout will attempt to charge the provided payment instrument for the amount of the specified checkout resource initiated in the Create a checkout endpoint.

Follow this request with Retrieve a checkout to confirm its status.

Path Parameters

  • id string required

    Unique ID of the checkout resource.

Body Parameters

  • payment_type string required
    Options:  card boleto ideal blik bancontact

    Describes the payment method used to attempt processing

  • installments integer minimum: 1maximum: 12

    Number of installments for deferred payments. Available only to merchant users in Brazil.

  • mandate object

    Mandate is passed when a card is to be tokenized

     Show attributes
     Close
    Attributes
    • type string required
      Options:  recurrent

      Indicates the mandate type

    • user_agent string required

      Operating system and web client used by the end-user

    • user_ip string

      IP address of the end user. Supports IPv4 and IPv6

    Example: {"type":"recurrent","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36","user_ip":"172.217.169.174"}
  • card object

    Required when payment type is card. Details of the payment card.

     Show attributes
     Close
    Attributes
    • name string write only required

      Name of the cardholder as it appears on the payment card.

      Example: "FIRSTNAME LASTNAME"
    • number string write only required

      Number of the payment card (without spaces).

      Example: "1234567890123456"
    • expiry_year string min length: 2max length: 4write only required

      Year from the expiration time of the payment card. Accepted formats are YY and YYYY.

      Example: "2023"
    • expiry_month string write only required
      Options:  01 02 03 04 05 06 07 08 09 10 11 12

      Month from the expiration time of the payment card. Accepted format is MM.

    • cvv string min length: 3max length: 4write only required

      Three or four-digit card verification value (security code) of the payment card.

      Example: "123"
    • zip_code string min length: 5max length: 5write only

      Required five-digit ZIP code. Applicable only to merchant users in the USA.

      Example: "12345"
    • last_4_digits string min length: 4max length: 4read only required

      Last 4 digits of the payment card number.

      Example: "3456"
    • type string required

      Issuing card network of the payment card used for the transaction.

  • token string

    Required when using a tokenized card to process a checkout. Unique token identifying the saved payment card for a customer.

  • customer_id string

    Required when token is provided. Unique ID of the customer.

  • personal_details object

    Personal details for the customer.

     Show attributes
     Close
    Attributes
    • first_name string

      First name of the customer.

      Example: "John"
    • last_name string

      Last name of the customer.

      Example: "Doe"
    • email string

      Email address of the customer.

      Example: "user@example.com"
    • phone string

      Phone number of the customer.

      Example: "+491635559723"
    • birth_date string date

      Date of birth of the customer.

      Example: "1993-12-31"
    • tax_id string max length: 255

      An identification number user for tax purposes (e.g. CPF)

      Example: "423.378.593-47"
    • address object

      Profile's personal address information.

       Show attributes
       Close
      Attributes
      • city string

        City name from the address.

        Example: "Berlin"
      • country string

        Two letter country code formatted according to ISO3166-1 alpha-2.

        Example: "DE"
      • line_1 string

        First line of the address with details of the street name and number.

        Example: "Sample street"
      • line_2 string

        Second line of the address with details of the building, unit, apartment, and floor numbers.

        Example: "ap. 5"
      • postal_code string

        Postal code from the address.

        Example: "10115"
      • state string

        State name or abbreviation from the address.

        Example: "Berlin"

Response 200

  • checkout_reference string max length: 90

    Unique ID of the payment checkout specified by the client application when creating the checkout resource.

  • amount number

    Amount of the payment.

    Example: 10.1
  • currency string

    Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

    Example: "EUR"
  • merchant_code string

    Unique identifying code of the merchant profile.

    Example: "MH4H92C7"
  • description string

    Short description of the checkout visible in the SumUp dashboard. The description can contribute to reporting, allowing easier identification of a checkout.

  • return_url string uri

    URL to which the SumUp platform sends the processing status of the payment checkout.

  • id string read only

    Unique ID of the checkout resource.

    Example: "4e425463-3e1b-431d-83fa-1e51c2925e99"
  • status string
    Options:  PENDING FAILED PAID EXPIRED

    Current status of the checkout.

  • date string date-time

    Date and time of the creation of the payment checkout. Response format expressed according to ISO8601 code.

    Example: "2020-02-29T10:56:56+00:00"
  • valid_until string date-timenullable

    Date and time of the checkout expiration before which the client application needs to send a processing request. If no value is present, the checkout does not have an expiration time.

    Example: "2020-02-29T10:56:56+00:00"
  • customer_id string

    Unique identification of a customer. If specified, the checkout session and payment instrument are associated with the referenced customer.

    Example: "831ff8d4cd5958ab5670"
  • mandate object

    Created mandate

     Show attributes
     Close
    Attributes
    • type string

      Indicates the mandate type

    • status string

      Mandate status

    • merchant_code string

      Merchant code which has the mandate

      Example: "MH4H92C7"
    Example: {"type":"recurrent","status":"active","merchant_code":"MH4H92C7"}
  • transactions []object unique items

    List of transactions related to the payment.

     Show attributes
     Close
    Attributes
    • id string

      Unique ID of the transaction.

      Example: "6b425463-3e1b-431d-83fa-1e51c2925e99"
    • transaction_code string

      Transaction code returned by the acquirer/processing entity after processing the transaction.

      Example: "TEENSK4W2K"
    • amount number

      Total amount of the transaction.

      Example: 10.1
    • currency string

      Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

      Example: "EUR"
    • timestamp string date-time

      Date and time of the creation of the transaction. Response format expressed according to ISO8601 code.

      Example: "2020-02-29T10:56:56.876Z"
    • status string
      Options:  SUCCESSFUL CANCELLED FAILED PENDING

      Current status of the transaction.

    • payment_type string

      Payment type used for the transaction.

    • installments_count integer minimum: 1

      Current number of the installment for deferred payments.

    • merchant_code string

      Unique code of the registered merchant to whom the payment is made.

      Example: "MH4H92C7"
    • vat_amount number

      Amount of the applicable VAT (out of the total transaction amount).

      Example: 6
    • tip_amount number

      Amount of the tip (out of the total transaction amount).

      Example: 3
    • entry_mode string

      Entry mode of the payment details.

    • auth_code string

      Authorization code for the transaction sent by the payment card issuer or bank. Applicable only to card payments.

      Example: "053201"
    • internal_id integer

      Internal unique ID of the transaction on the SumUp platform.

      Example: 1763892018
  • transaction_code string read only

    Transaction code of the successful transaction with which the payment for the checkout is completed.

    Example: "TEENSK4W2K"
  • transaction_id string read only

    Transaction ID of the successful transaction with which the payment for the checkout is completed.

    Example: "410fc44a-5956-44e1-b5cc-19c6f8d727a4"
  • merchant_name string

    Name of the merchant

    Example: "Sample Merchant"
  • redirect_url string

    Refers to a url where the end user is redirected once the payment processing completes.

    Example: "https://mysite.com/completed_purchase"
  • payment_instrument object

    Object containing token information for the specified payment instrument

     Show attributes
     Close
    Attributes
    • token string

      Token value

      Example: "e76d7e5c-9375-4fac-a7e7-b19dc5302fbc"

Response 202

  • next_step object

    Required action processing 3D Secure payments.

     Show attributes
     Close
    Attributes
    • url string

      Where the end user is redirected.

      Example: "https://dummy-3ds-gateway.com/cap?RID=1233&VAA=A"
    • method string

      Method used to complete the redirect.

      Example: "POST"
    • redirect_url string

      Refers to a url where the end user is redirected once the payment processing completes.

      Example: "https://mysite.com/completed_purchase"
    • mechanism []string

      Indicates allowed mechanisms for redirecting an end user. If both values are provided to ensure a redirect takes place in either.

    • payload object

      Contains parameters essential for form redirection. Number of object keys and their content can vary.

       Show attributes
       Close
      Attributes
      • PaReq
        Example: "eJxVUttu2zAM/RXDr4MjyY5dO6BVuE27FZuDZHGG9VGRmMSFb/Wljff1k9KkF0APPCR1eHQouD6WhfWCbZfXVWyzCbUtrGSt8mof25vs3gltq+tFpURRVxjbI3b2NYfs0CLO1yiHFjmk2HVij1auYrsRW1+F0U4qZxfKwJlur4QTYcQcJoIdc+XO2/poc1gmv/GZw3k216MnLpAL1JytPIiq5yDk883Dgk+DwPV9IGcIJbYPc84o1Ye6lHqu5wVA3tJQiRL5eiiHxlqKscSq76xfeZn3qICciiDroerbkYeuvnYBMLQFP/R9MyOkM9cnCoGYJJAPScvBRJ0mOeaKr/6l08XT6jXN7tx0vvHSbOMtsj1dzB9jIKYDlOiRu1omYyy0WDCj0YxFQE55EKWZzj2f6ee9xdCYEcmnwucEaN9bvaeRR1ehFn9BgMdGr0l3aCvfYyAfem9/GENlrz36ufpTBPTv07r8lm3qpPiOo1y/7u+SJImNzacmw5hrX1wt/kRpABBDQ84bJOf16+jLt/gPhUvGGw=="
      • MD
        Example: "b1a536c0-29b9-11eb-adc1-0242ac120002"
      • TermUrl
        Example: "https://api.sumup.com/v0.1/checkouts/e552de3b-1777-4c91-bdb8-756967678572/complete_payment"
PUT /v0.1/checkouts/{id}
curl https://api.sumup.com/v0.1/checkouts/{id} \
-X PUT \
-H "Authorization: Bearer $SUMUP_API_KEY" \
--json '{
"payment_type": ""
}'
import SumUp from '@sumup/sdk';
const client = new SumUp();
const result = await client.checkouts.process("id", {
payment_type: "",
});
using SumUp;
var client = new SumUpClient();
var result = await client.Checkouts.ProcessAsync(
"id",
new ProcessCheckout
{
PaymentType = "",
}
);
import com.sumup.sdk.SumUpClient;
SumUpClient client = SumUpClient.builder().build();
var result = client.checkouts().processCheckout(
"id",
ProcessCheckout.builder()
.paymentType(PaymentType.fromValue(""))
.build()
);
from sumup import Sumup
client = Sumup()
result = client.checkouts.process("id", ProcessCheckoutBody(
payment_type="",
))
$sumup = new \SumUp\SumUp();
$result = $sumup->checkouts->process('id', [
'payment_type' => '',
]);
client := sumup.NewClient()
result, err := client.Checkouts.Process(context.Background(), "id", sumup.CheckoutsProcessParams{
PaymentType: "",
})
use sumup::Client;
let client = Client::default();
let result = client.checkouts().process("id", sumup::ProcessCheckoutBody{
payment_type: "".to_string(),
}).await;
Response
{
"checkout_reference": "f00a8f74-b05d-4605-bd73-2a901bae5802",
"amount": 10.1,
"currency": "EUR",
"merchant_code": "MH4H92C7",
"description": "Purchase",
"return_url": "http://example.com",
"id": "4e425463-3e1b-431d-83fa-1e51c2925e99",
"status": "PENDING",
"date": "2020-02-29T10:56:56+00:00",
"valid_until": "2020-02-29T10:56:56+00:00",
"customer_id": "831ff8d4cd5958ab5670",
"mandate": {
"type": "recurrent",
"status": "active",
"merchant_code": "MH4H92C7"
},
"transactions": [
{
"id": "410fc44a-5956-44e1-b5cc-19c6f8d727a4",
"transaction_code": "TEENSK4W2K",
"amount": 10.1,
"currency": "EUR",
"timestamp": "2020-02-29T10:56:56.876Z",
"status": "SUCCESSFUL",
"payment_type": "ECOM",
"installments_count": 1,
"merchant_code": "MH4H92C7",
"vat_amount": 6,
"tip_amount": 3,
"entry_mode": "CUSTOMER_ENTRY",
"auth_code": "053201",
"internal_id": 1763892018
}
],
"transaction_code": "TEENSK4W2K",
"transaction_id": "410fc44a-5956-44e1-b5cc-19c6f8d727a4"
}
{
"checkout_reference": "f00a8f74-b05d-4605-bd73-2a901bae5802",
"amount": 10.1,
"currency": "EUR",
"merchant_code": "MH4H92C7",
"description": "Purchase with token",
"id": "4e425463-3e1b-431d-83fa-1e51c2925e99",
"status": "PENDING",
"date": "2020-02-29T10:56:56+00:00",
"transaction_code": "TEENSK4W2K",
"transaction_id": "410fc44a-5956-44e1-b5cc-19c6f8d727a4",
"merchant_name": "Sample Merchant",
"redirect_url": "https://mysite.com/completed_purchase",
"customer_id": "831ff8d4cd5958ab5670",
"payment_instrument": {
"token": "e76d7e5c-9375-4fac-a7e7-b19dc5302fbc"
},
"transactions": [
{
"id": "410fc44a-5956-44e1-b5cc-19c6f8d727a4",
"transaction_code": "TEENSK4W2K",
"amount": 10.1,
"currency": "EUR",
"timestamp": "2020-02-29T10:56:56.876Z",
"status": "SUCCESSFUL",
"payment_type": "ECOM",
"installments_count": 1,
"merchant_code": "MH4H92C7",
"vat_amount": 6,
"tip_amount": 3,
"entry_mode": "CUSTOMER_ENTRY",
"auth_code": "053201",
"internal_id": 1763892018
}
]
}
{
"checkout_reference": "f00a8f74-b05d-4605-bd73-2a901bae5802",
"amount": 10.1,
"currency": "BRL",
"merchant_code": "MH4H92C7",
"description": "Boleto checkout",
"id": "4e425463-3e1b-431d-83fa-1e51c2925e99",
"status": "PENDING",
"date": "2021-07-06T12:34:02.000+00:00",
"merchant_name": "Sample shop",
"boleto": {
"barcode": "34191090081790614310603072340007886840000000200",
"url": "https://checkouts.sample.com/v0.1/checkouts/2e7a36cc-7897-446b-a966-952ab5f049ea/boleto"
},
"redirect_url": "https://website.com",
"purpose": "CHECKOUT",
"transactions": [
{
"id": "debd2986-9852-4e86-8a8e-7ea9c87dd679",
"transaction_code": "TEN3E696NP",
"merchant_code": "MH4H92C9",
"amount": 10.1,
"vat_amount": 6,
"tip_amount": 3,
"currency": "BRL",
"timestamp": "2021-07-06T12:34:16.460+00:00",
"status": "PENDING",
"payment_type": "BOLETO",
"entry_mode": "BOLETO",
"installments_count": 1,
"internal_id": 1763892018
}
]
}
{
"next_step": {
"url": "https://r3.girogate.de/ti/simideal",
"method": "GET",
"payload": {
"tx": "961473700",
"rs": "ILnaUeQTKJ184fVrjGILrLjePX9E4rmz",
"cs": "c8bc0ea231f8372431ca22d6f8319f8de0263d0b1705759ed27155f245f193c5"
},
"full": "https://r3.girogate.de/ti/simideal?tx=961473700&rs=ILnaUeQTKJ184fVrjGILrLjePX9E4rmz&cs=c8bc0ea231f8372431ca22d6f8319f8de0263d0b1705759ed27155f245f193c5",
"mechanism": [
"browser"
]
}
}
{
"next_step": {
"url": "https://r3.girogate.de/ti/simbcmc",
"method": "GET",
"payload": {
"tx": "624788471",
"rs": "5MioXoKt2Gwj9dLgqAX1bMRBuT5xTSdB",
"cs": "697edacdd9175f3f99542500fa0ff08280b66aaff3c2641a2e212e4b039473cc"
},
"full": "https://r3.girogate.de/ti/simbcmc?tx=624788471&rs=5MioXoKt2Gwj9dLgqAX1bMRBuT5xTSdB&cs=697edacdd9175f3f99542500fa0ff08280b66aaff3c2641a2e212e4b039473cc",
"mechanism": [
"browser"
]
}
}
Checkouts

Deactivate a checkout

Deactivates an identified checkout resource. If the checkout has already been processed it can not be deactivated.

Required scopes: payments

Path Parameters

  • id string required

    Unique ID of the checkout resource.

Checkout

  • checkout_reference string max length: 90

    Unique ID of the payment checkout specified by the client application when creating the checkout resource.

  • amount number

    Amount of the payment.

    Example: 10.1
  • currency string

    Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

    Example: "EUR"
  • merchant_code string

    Unique identifying code of the merchant profile.

    Example: "MH4H92C7"
  • description string

    Short description of the checkout visible in the SumUp dashboard. The description can contribute to reporting, allowing easier identification of a checkout.

  • return_url string uri

    URL to which the SumUp platform sends the processing status of the payment checkout.

  • id string read only

    Unique ID of the checkout resource.

    Example: "4e425463-3e1b-431d-83fa-1e51c2925e99"
  • status string
    Options:  PENDING FAILED PAID EXPIRED

    Current status of the checkout.

  • date string date-time

    Date and time of the creation of the payment checkout. Response format expressed according to ISO8601 code.

    Example: "2020-02-29T10:56:56+00:00"
  • valid_until string date-timenullable

    Date and time of the checkout expiration before which the client application needs to send a processing request. If no value is present, the checkout does not have an expiration time.

    Example: "2020-02-29T10:56:56+00:00"
  • customer_id string

    Unique identification of a customer. If specified, the checkout session and payment instrument are associated with the referenced customer.

    Example: "831ff8d4cd5958ab5670"
  • mandate object

    Created mandate

     Show attributes
     Close
    Attributes
    • type string

      Indicates the mandate type

    • status string

      Mandate status

    • merchant_code string

      Merchant code which has the mandate

      Example: "MH4H92C7"
    Example: {"type":"recurrent","status":"active","merchant_code":"MH4H92C7"}
  • transactions []object unique items

    List of transactions related to the payment.

     Show attributes
     Close
    Attributes
    • id string

      Unique ID of the transaction.

      Example: "6b425463-3e1b-431d-83fa-1e51c2925e99"
    • transaction_code string

      Transaction code returned by the acquirer/processing entity after processing the transaction.

      Example: "TEENSK4W2K"
    • amount number

      Total amount of the transaction.

      Example: 10.1
    • currency string

      Three-letter ISO4217 code of the currency for the amount. Currently supported currency values are enumerated above.

      Example: "EUR"
    • timestamp string date-time

      Date and time of the creation of the transaction. Response format expressed according to ISO8601 code.

      Example: "2020-02-29T10:56:56.876Z"
    • status string
      Options:  SUCCESSFUL CANCELLED FAILED PENDING

      Current status of the transaction.

    • payment_type string

      Payment type used for the transaction.

    • installments_count integer minimum: 1

      Current number of the installment for deferred payments.

    • merchant_code string

      Unique code of the registered merchant to whom the payment is made.

      Example: "MH4H92C7"
    • vat_amount number

      Amount of the applicable VAT (out of the total transaction amount).

      Example: 6
    • tip_amount number

      Amount of the tip (out of the total transaction amount).

      Example: 3
    • entry_mode string

      Entry mode of the payment details.

    • auth_code string

      Authorization code for the transaction sent by the payment card issuer or bank. Applicable only to card payments.

      Example: "053201"
    • internal_id integer

      Internal unique ID of the transaction on the SumUp platform.

      Example: 1763892018
DELETE /v0.1/checkouts/{id}
curl https://api.sumup.com/v0.1/checkouts/{id} \
-X DELETE \
-H "Authorization: Bearer $SUMUP_API_KEY"
import SumUp from '@sumup/sdk';
const client = new SumUp();
const result = await client.checkouts.deactivate("id");
using SumUp;
var client = new SumUpClient();
var result = await client.Checkouts.DeactivateAsync(
"id"
);
import com.sumup.sdk.SumUpClient;
SumUpClient client = SumUpClient.builder().build();
var result = client.checkouts().deactivateCheckout(
"id"
);
from sumup import Sumup
client = Sumup()
result = client.checkouts.deactivate("id")
$sumup = new \SumUp\SumUp();
$result = $sumup->checkouts->deactivate('id');
client := sumup.NewClient()
result, err := client.Checkouts.Deactivate(context.Background(), "id")
use sumup::Client;
let client = Client::default();
let result = client.checkouts().deactivate("id").await;
Response
{
"checkout_reference": "f00a8f74-b05d-4605-bd73-2a901bae5802",
"id": "817340ce-f1d9-4609-b90a-6152f8ee267j",
"amount": 2,
"currency": "EUR",
"merchant_code": "MH4H92C7",
"description": "Deletion example",
"purpose": "CHECKOUT",
"status": "EXPIRED",
"date": "2020-02-29T10:56:56+00:00",
"valid_until": "2020-02-29T10:56:56+00:00",
"merchant_name": "Sample Merchant",
"transactions": []
}
Checkouts

Get available payment methods

Get payment methods available for the given merchant to use with a checkout.

Required scopes: payments

Path Parameters

  • merchant_code string required

    The SumUp merchant code.

    Example: "MH4H92C7"

Query Parameters

  • amount number

    The amount for which the payment methods should be eligible, in major units. Note that currency must also be provided when filtering by amount.

    Example: 9.99
  • currency string

    The currency for which the payment methods should be eligible.

    Example: "EUR"

Response 200

  • available_payment_methods []object
     Show attributes
     Close
    Attributes
    • id string required

      The ID of the payment method.

      Example: "qr_code_pix"
GET /v0.1/merchants/{merchant_code}/payment-methods
curl https://api.sumup.com/v0.1/merchants/{merchant_code}/payment-methods \
-X GET \
-H "Authorization: Bearer $SUMUP_API_KEY"
import SumUp from '@sumup/sdk';
const client = new SumUp();
const result = await client.checkouts.listAvailablePaymentMethods("MH4H92C7");
using SumUp;
var client = new SumUpClient();
var result = await client.Checkouts.ListAvailablePaymentMethodsAsync(
"MH4H92C7"
);
import com.sumup.sdk.SumUpClient;
SumUpClient client = SumUpClient.builder().build();
var result = client.checkouts().getPaymentMethods(
"MH4H92C7"
);
from sumup import Sumup
client = Sumup()
result = client.checkouts.list_available_payment_methods("MH4H92C7")
$sumup = new \SumUp\SumUp();
$result = $sumup->checkouts->listAvailablePaymentMethods('MH4H92C7');
client := sumup.NewClient()
result, err := client.Checkouts.ListAvailablePaymentMethods(context.Background(), "MH4H92C7")
use sumup::Client;
let client = Client::default();
let result = client.checkouts().list_available_payment_methods("MH4H92C7", sumup::GetPaymentMethodsParams{
amount: Some(9.99),
currency: Some("EUR".to_string()),
}).await;
Response
{
"available_payment_methods": [
{
"id": "apple_pay"
},
{
"id": "blik"
}
]
}