# InitgPty Party that initiates the payment. * Is optional * Type: `object` With the following properties: | Property | Type | Required | Description | | --- | --- | --- | --- | | [CtctDtls](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/contact_details) | Reference | Optional | Allows the contact of the Initiating Party to be held. Defined in `#/definitions/contact_details` | | [Id](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/id_section) | Reference | Optional | Unique and unambiguous way to identify the Initiating Party. Defined in `#/definitions/id_section` | | [CtryRes](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/country) | Reference | Optional | Allows the Country of Residence of the Initiating Party to be held. Defined in `#/definitions/country` | | [Nm](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/fullname) | String | Optional | Allows the name of the Initiating Party to be held as a single value. Defined in `#/definitions/fullname` | | [PstlAdr](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/address) | Reference | Optional | Allows the address of the Initiating Party to be held. Defined in `#/definitions/address` | ## JSON schema extract ```json "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" } } } ```