RTI EPS Transaction
RtiEpsTransaction [Schema]
Name | Type | Required | Description |
---|---|---|---|
SchemeCeased | xsd:date | no | Date to indicate if the PAYE scheme has ceased. |
TaxMonth | TaxMonth | no | The tax month the message relates to. |
NoPaymentForPeriodFrom | xsd:date | no | Indicated no payment period from date. |
NoPaymentForPeriodTo | xsd:date | no | Indicated no payment period to date. |
PeriodOfInactivityFrom | xsd:date | no | Indicated period of inacticity from date. |
PeriodOfInactivityTo | xsd:date | no | Indicated period of inacticity to date. |
Interits from: RtiTransaction[Schema]
Name | Type | Required | Description |
---|---|---|---|
RtiType | xsd:string | yes | The RTI message type. |
TransactionStatus | RtiTransactionStatus | yes | The current status of the RTI transaction. |
Timestamp | xsd:dateTime | yes | The timestamp of the RTI transaction. |
TransmissionDate | xsd:dateTime | no | The date the RTI submission was made to Government Gateway. |
TaxYear | xsd:integer | yes | The relevant tax year for the RTI transaction. |
RequestData | xsd:string | yes | The serialised XML message sent to the Government Gateway. This property is [CDATA]. |
ResponseData | xsd:string | yes | The serialised XML message from the Government Gateway. Where the message has been successfully accepted by the Government Gateway, the response will contain a cryptographic receipt as proof of the transaction. This property is [CDATA]. |
EmployerCore | Link | yes | A link to the related Employer. |
Example
<?xml version="1.0"?>
<RtiEpsTransaction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<RtiType>string</RtiType>
<TransactionStatus>New</TransactionStatus>
<Timestamp>2021-04-15T00:00:00+00:00</Timestamp>
<TransmissionDate>2021-04-15T00:00:00+00:00</TransmissionDate>
<TaxYear>123</TaxYear>
<RequestData><![CDATA[string]]></RequestData>
<ResponseData><![CDATA[string]]></ResponseData>
<EmployerCore title="string" href="string" rel="string" />
<SchemeCeased>2021-04-15</SchemeCeased>
<TaxMonth>123</TaxMonth>
<NoPaymentForPeriodFrom>2021-04-15</NoPaymentForPeriodFrom>
<NoPaymentForPeriodTo>2021-04-15</NoPaymentForPeriodTo>
<PeriodOfInactivityFrom>2021-04-15</PeriodOfInactivityFrom>
<PeriodOfInactivityTo>2021-04-15</PeriodOfInactivityTo>
</RtiEpsTransaction>
{
"RtiEpsTransaction": {
"RtiType": "string",
"TransactionStatus": "New",
"Timestamp": "2021-04-15T00:00:00+00:00",
"TransmissionDate": "2021-04-15T00:00:00+00:00",
"TaxYear": "123",
"RequestData": {
"#cdata-section": "string"
},
"ResponseData": {
"#cdata-section": "string"
},
"EmployerCore": {
"@title": "string",
"@href": "string",
"@rel": "string"
},
"SchemeCeased": "2021-04-15",
"TaxMonth": "123",
"NoPaymentForPeriodFrom": "2021-04-15",
"NoPaymentForPeriodTo": "2021-04-15",
"PeriodOfInactivityFrom": "2021-04-15",
"PeriodOfInactivityTo": "2021-04-15"
}
}