GetTransactionV08

camt.005.001.08

Scope The GetTransaction message is sent by a member to the transaction administrator. It is used to request information about payment instructions held at the transaction administrator. Payment instructions are either sent by the member, debiting or crediting its account at the transaction administrator or received by the transaction administrator, crediting or debiting the member’s account. Usage Following normal business flows, transactions registered by the transaction administrator may be queued for later settlement (because of insufficient funds available, or because of risk or liquidity limits, etc.). A transaction may have a series of statuses. These can be transient (such as pending or related types) and final (such as rejected, revoked and/or settled). Members of a system need to have information about the payments queue(s) and must have the ability to take action (that is, to cancel or modify the transaction(s) to be settled). Note, however, that actions by a member will always concern transactions in a transient status. At any time during the operating hours of the system, the member can query the transaction administrator to get information about transactions, whatever their status. These requests will concern either all transactions, all transactions with a particular status or a specific transaction. The member can request information about transactions through a series of criteria, corresponding to the known information stored at the transaction administrator, based on the following elements:

Message Construction

Every ISO20022 message has at the highest level what we call ‘building blocks’. Because the message is constructed as immutable records, the association is by composition. Below you can see the relationship between the message and its constituent building blocks: For comparison, see the ISO20022 official specification

classDiagram
     direction LR
%% GetTransactionV08 recursion level 0 with max 0
GetTransactionV08 *-- "1..1" MessageHeader9 : MessageHeader
GetTransactionV08 *-- "0..1" TransactionQuery5 : TransactionQueryDefinition
GetTransactionV08 *-- "0..1" SupplementaryData1 : SupplementaryData
  

Now, we will zero-in one-by-one on each of these building blocks.

MessageHeader building block

Common business identification for the message. Set of characteristics, such as the identification or the creation date and time, specific to the message. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% MessageHeader9 recursion level 0 with max 1
class MessageHeader9{
    MessageIdentification IsoMax35Text
    CreationDateTime IsoISODateTime
}
MessageHeader9 *-- "0..1" IRequestType4Choice : RequestType
%% IRequestType4Choice recursion level 1 with max 1
  

MessageHeader9 members

Member name Description Data Type / Multiplicity
MessageIdentification Point to point reference, as assigned by the sender, to unambiguously identify the message. Usage: The sender has to make sure that MessageIdentification is unique for a pre-agreed period.
CreationDateTime Date and time at which the message was created. IsoISODateTime - Optional 0..1
RequestType Specific actions to be executed through the request. IRequestType4Choice - Optional 0..1

TransactionQueryDefinition building block

Defines the transaction query criteria. Defines the query criteria. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% TransactionQuery5 recursion level 0 with max 1
class TransactionQuery5{
    QueryType QueryType2Code
}
TransactionQuery5 *-- "0..1" ITransactionCriteria5Choice : TransactionCriteria
%% ITransactionCriteria5Choice recursion level 1 with max 1
  

TransactionQuery5 members

Member name Description Data Type / Multiplicity
QueryType Specifies the type of matching items to be returned in the response to the query. QueryType2Code - Optional 0..1
TransactionCriteria Defines the payment transaction query criteria. ITransactionCriteria5Choice - Optional 0..1

SupplementaryData building block

Additional information that cannot be captured in the structured elements and/or any other specific block. Additional information that can not be captured in the structured fields and/or any other specific block. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SupplementaryData1 recursion level 0 with max 1
class SupplementaryData1{
    PlaceAndName IsoMax350Text
}
SupplementaryData1 *-- "1..1" IsoSupplementaryDataEnvelope1 : Envelope
%% IsoSupplementaryDataEnvelope1 recursion level 1 with max 1
  

SupplementaryData1 members

Member name Description Data Type / Multiplicity
PlaceAndName Unambiguous reference to the location where the supplementary data must be inserted in the message instance. In the case of XML, this is expressed by a valid XPath. IsoMax350Text - Optional 0..1
Envelope Technical element wrapping the supplementary data. IsoSupplementaryDataEnvelope1 - Required 1..1

Extensibility and generalization considerations

To facilitate generalized design patterns in the system, the GetTransactionV08 implementation follows a specific implementaiton pattern. First of all, GetTransactionV08 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, GetTransactionV08Document implements IOuterDocument. Because GetTransactionV08 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type GetTransactionV08.

classDiagram
    class IOuterRecord
    GetTransactionV08 --|> IOuterRecord : Implements
    GetTransactionV08Document --|> IOuterDocument~GetTransactionV08~ : Implements
    class IOuterDocument~GetTransactionV08~ {
        GetTransactionV08 Message
     }
  

Document wrapper for serialization

The only real purpose GetTransactionV08Document serves is to cause the document to be serialized into the ‘urn:iso:std:iso:20022:tech:xsd:camt.005.001.08’ namespace. Therefore, it will probably be the usual practice to build the message and construct this wrapper at the last minute using GetTransactionV08.ToDocument() method. The returned GetTransactionV08Document value will serialize correctly according to ISO 20022 standards.

classDiagram
    GetTransactionV08Document *-- GetTransactionV08 : Document
  

Sample of message format

This is an abbreviated version of what the message should look like.

<Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.005.001.08">
    <GetTx>
        <MsgHdr>
            <!-- MessageHeader inner content -->
        </MsgHdr>
        <TxQryDef>
            <!-- TransactionQueryDefinition inner content -->
        </TxQryDef>
        <SplmtryData>
            <!-- SupplementaryData inner content -->
        </SplmtryData>
    </GetTx>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_jwlbpxbvEeiyVv5j1vf1VQ"
  nextVersions="_ThPM_db6Eeq_l4BJLVUF2Q"
  name="GetTransactionV08"
  definition="Scope&#xD;&#xA;The GetTransaction message is sent by a member to the transaction administrator.&#xD;&#xA;It is used to request information about payment instructions held at the transaction administrator. Payment instructions are either sent by the member, debiting or crediting its account at the transaction administrator or received by the transaction administrator, crediting or debiting the member's account.&#xD;&#xA;Usage&#xD;&#xA;Following normal business flows, transactions registered by the transaction administrator may be queued for later settlement (because of insufficient funds available, or because of risk or liquidity limits, etc.). A transaction may have a series of statuses. These can be transient (such as pending or related types) and final (such as rejected, revoked and/or settled).&#xD;&#xA;Members of a system need to have information about the payments queue(s) and must have the ability to take action (that is, to cancel or modify the transaction(s) to be settled). Note, however, that actions by a member will always concern transactions in a transient status.&#xD;&#xA;At any time during the operating hours of the system, the member can query the transaction administrator to get information about transactions, whatever their status.&#xD;&#xA;These requests will concern either all transactions, all transactions with a particular status or a specific transaction.&#xD;&#xA;The member can request information about transactions through a series of criteria, corresponding to the known information stored at the transaction administrator, based on the following elements:&#xD;&#xA;- provenance or destination of the payment (payment to/payment from)&#xD;&#xA;- transaction reference&#xD;&#xA;- transfer value date&#xD;&#xA;- payment instruction reference&#xD;&#xA;- payment instruction status, as registered at the transaction administrator&#xD;&#xA;- instructed amount and/or currency&#xD;&#xA;- interbank settlement amount and/or currency&#xD;&#xA;- credit/debit indicator of the payment instruction/transaction&#xD;&#xA;- SWIFT FIN payment message used for the payment instruction&#xD;&#xA;- priority of the payment transaction&#xD;&#xA;- period in which the payment instruction should be processed (processing validity time)&#xD;&#xA;- instructions given, related to the processing of the transaction&#xD;&#xA;- type of payment instructed&#xD;&#xA;- account identification (entries booked to a specific account)&#xD;&#xA;- entry amount and/or currency&#xD;&#xA;- entry debit/credit indicator (if absent, all entries should be reported)."
  registrationStatus="Registered"
  messageSet="_urpIICeJEeOCeO5e7islRQ"
  xmlTag="GetTx"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_jwlbqRbvEeiyVv5j1vf1VQ"
    nextVersions="_ThPNA9b6Eeq_l4BJLVUF2Q"
    name="MessageHeader"
    definition="Common business identification for the message."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="MsgHdr"
    complexType="_jAUZkZIhEeect698_YsnIA" />
  <messageBuildingBlock
    xmi:id="_jwlbqxbvEeiyVv5j1vf1VQ"
    nextVersions="_ThPNBdb6Eeq_l4BJLVUF2Q"
    name="TransactionQueryDefinition"
    definition="Defines the transaction query criteria."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="TxQryDef"
    complexType="_OHgrZ249EeiU9cctagi5ow" />
  <messageBuildingBlock
    xmi:id="_jwlbrRbvEeiyVv5j1vf1VQ"
    nextVersions="_ThPNB9b6Eeq_l4BJLVUF2Q"
    name="SupplementaryData"
    definition="Additional information that cannot be captured in the structured elements and/or any other specific block."
    registrationStatus="Provisionally Registered"
    minOccurs="0"
    xmlTag="SplmtryData"
    complexType="_Qn0zC9p-Ed-ak6NoX_4Aeg_468227563" />
  <messageDefinitionIdentifier
    businessArea="camt"
    messageFunctionality="005"
    flavour="001"
    version="08" />
</messageDefinition>

ISO Building Blocks

The following items are used as building blocks to construct this message.