Payment scheme elements

You can include payment scheme elements in the payment to transmit additional data to the settlement service provider.

The paymentSchemeElements consists of three data entities.

Parameter
Description

fieldValueTypeCode

The parameter key.

fieldValue

The parameter value.

includeToMetaInfo

The boolean determining if the parameter and its value are included in the transaction's metaInfo.

In the example below, you can see how the paymentSchemeElements data entities should be presented in the payment.

{
   "paymentParties": [...],
      
   "money": {...},
   
   "details": "...",
   "paymentSchemeElements": [
      {
          "fieldValueTypeCode": "BENEFICIAL_OWNER",
          "fieldValue": "John Smith",
          "includeToMetaInfo": false
      },
      {
          "fieldValueTypeCode": "COMPANY_NAME",
          "fieldValue": "J. Smith Ltd.",
          "includeToMetaInfo": true
      }
   ]
}

Last updated

Was this helpful?