Giropay Payment Request

June 5, 2026 ยท View on GitHub

Information needed to pay using giropay.

Structure

GiropayPaymentRequest

Fields

NameTypeTagsDescriptionGetterSetter
NameStringRequiredThe full name representation like Mr J Smith.

Constraints: Minimum Length: 3, Maximum Length: 300
String getName()setName(String name)
CountryCodeStringRequiredThe two-character ISO 3166-1 code that identifies the country or region. Note: The country code for Great Britain is GB and not UK as used in the top-level domain names for that country. Use the C2 country code for China worldwide for comparable uncontrolled price (CUP) method, bank card, and cross-border transactions.

Constraints: Minimum Length: 2, Maximum Length: 2, Pattern: ^([A-Z]{2}|C2)$
String getCountryCode()setCountryCode(String countryCode)
ExperienceContextExperienceContextOptionalCustomizes the payer experience during the approval process for the payment.ExperienceContext getExperienceContext()setExperienceContext(ExperienceContext experienceContext)

Example (as JSON)

{
  "name": "name8",
  "country_code": "country_code8",
  "experience_context": {
    "brand_name": "brand_name2",
    "locale": "locale6",
    "shipping_preference": "NO_SHIPPING",
    "return_url": "return_url4",
    "cancel_url": "cancel_url6"
  }
}