improved

Kringle - Release/25.04

**Published On **: 04 June 2025
**Stage Deployment On: **30 May 2025 **Production Go-Live On: **The release date will be communicated by account manager.

The following APIs are impacted by this release. Changes may include new parameters, updated logic, or behavior enhancements. Please refer to the corresponding API documentation links provided alongside each entry for complete details.

URL Endpoint

API Name

Current Payload

New Payload

/v1/payments

Create International Wire (Swift) Transfer

{

"paymentType": "CREDIT",
"paymentRail": "SWIFT",
"amount": 10,
"originator": {
"accountId": 123456
},
"recipient": {
"accountId": "456789",
"name": "David Wise",
"accountNumber": 950003434343,
"accountType": "CHECKING",
"recipientType": "INDIVIDUAL",
"address": {
"line1": "123 Main Street",
"city": "Park City",
"stateCode": "CA",
"countryCode": "US",
"postalCode": 85281
},
"bankInformation": {
"swiftCode": "BUKBGB22"
}
}
}

{

  "paymentType": "CREDIT",
  "paymentRail": "SWIFT",
  "amount": 10,
  "originator": {
    "accountId": 123456
  },
  "recipient": {
    "accountId": "456789",
    "name": "David Wise",
    "accountNumber": 950003434343,
    "accountType": "CHECKING",
    "recipientType": "INDIVIDUAL",
    "address": {
      "line1": "123 Main Street",
      "city": "Park City",
      "stateCode": "CA",
      "countryCode": "US",
      "postalCode": 85281
    },
    "bankInformation": {
      "swiftCode": "BUKBGB22",
      "agent": {
        "name": "Citibank Luxembourg",
        "identifier": "CITILULX",
        "address": [   "31 Z.A. Bourmicht",
  "L-8070 Bertrange"],
        "country": "LU",
        "stateOrProvince": "Luxembourg District",
        "city": "Bertrange",
        "postalCode": "8070"
      }
    }
  }
}