Skip to content

InitgPty

Party that initiates the payment.

  • Is optional
  • Type: object

With the following properties:

PropertyTypeRequiredDescription
CtctDtlsReferenceOptionalAllows the contact of the Initiating Party to be held. Defined in #/definitions/contact_details
IdReferenceOptionalUnique and unambiguous way to identify the Initiating Party. Defined in #/definitions/id_section
CtryResReferenceOptionalAllows the Country of Residence of the Initiating Party to be held. Defined in #/definitions/country
NmStringOptionalAllows the name of the Initiating Party to be held as a single value. Defined in #/definitions/fullname
PstlAdrReferenceOptionalAllows the address of the Initiating Party to be held. Defined in #/definitions/address

JSON schema extract

"InitgPty": {
    "type": "object",
    "description": "Party that initiates the payment.",
    "properties": {
        "Nm": {
            "type": "string",
            "description": "Allows the name of the Initiating Party to be held as a single value.",
            "$ref": "#/definitions/fullname"
        },
        "PstlAdr": {
            "type": "object",
            "description": "Allows the address of the Initiating Party to be held.",
            "$ref": "#/definitions/address"
        },
        "Id": {
            "type": "object",
            "description": "Unique and unambiguous way to identify the Initiating Party.",
            "$ref": "#/definitions/id_section"
        },
        "CtryOfRes": {
            "type": "object",
            "description": "Allows the Country of Residence of the Initiating Party to be held.",
            "$ref": "#/definitions/country"
        },
        "CtctDtls": {
            "type": "object",
            "description": "Allows the contact of the Initiating Party to be held.",
            "$ref": "#/definitions/contact_details"
        }
    }
}