The Request Element {#batch-results-txns-rpt-request-xml-request}
=================================================================

The `&lt;Request&gt;` element contains information about a payment transaction.

```
&lt;Request RequestID=CDATA&gt;
      (TransactionReferenceNumber)
      (MerchantReferenceNumber)
      (TransactionStatus)
      (Amount)
      (CurrencyCode)
      (PaymentStatus)
&lt;/Request&gt;
```

This table describes the attributes of the `&lt;Request&gt;` element.

| Attribute Name | Description                                                                                              |
|:---------------|:---------------------------------------------------------------------------------------------------------|
| `RequestID`    | Unique identifier generated by `Cybersource` for the transaction. * Data type: Numeric * Data length: 26 |
[Attributes of the `&lt;Request&gt;` Element]

This table describes the child elements of the `&lt;Request&gt;` element.

| Element Name                 | Description                                                                                                                                                                                                                                                                                                              |
|:-----------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `TransactionReferenceNumber` | Reference number that you use to reconcile your `Cybersource` reports with your processor reports. This field corresponds to the ***\&lt;service\&gt;*** _reconciliationID (Simple Order API) and to the ***\&lt;service\&gt;_*** trans_ref_no (SCMP API) response fields. * Data type: Alphanumeric * Data length: 60   |
| `MerchantReferenceNumber`    | Merchant-generated order reference or tracking number. * Data type: Alphanumeric * Data length: 50                                                                                                                                                                                                                       |
| `TransactionStatus`          | One-word description of the result of the transaction request. * Data type: Alphanumeric * Data length: 50                                                                                                                                                                                                               |
| `Amount`                     | Amount of the transaction.                                                                                                                                                                                                                                                                                               |
| `CurrencyCode`               | ISO currency code used for the transaction. See [ISO Standard Country Codes](https://docs.cybersource.com/docs/sbc/quickref/countries_alpha_list.pdf ""). * Data type: Alphanumeric * Data length: 5                                                                                                                     |
| `PaymentStatus`              | One-word description of the current status of the transaction. Possible values: * `BATCH_ERROR` * `BATCH_RESET` * `BATCHED` * `CANCELED_REVERS` * `CANCELLED` * `DENIED` * `FAILED` * `PENDING` * `REFUNDED` * `REVERSED` * `TRXN_ERROR` * `VOIDED` Specifications: <!-- --> * Data type: Alphanumeric * Data length: 50 |
[Child Elements of the `&lt;Request&gt;` Element]

This `&lt;Request&gt;` element includes a single example transaction in the `PENDING` state.

```
&lt;Request RequestID="1580782287420174065733"&gt;
      &lt;TransactionReferenceNumber&gt;5533830406&lt;/TransactionReferenceNumber&gt;
      &lt;MerchantReferenceNumber&gt;1158078228539&lt;/MerchantReferenceNumber&gt;
      &lt;TransactionStatus&gt;SOK&lt;/TransactionStatus&gt;
      &lt;Amount&gt;25.00&lt;/Amount&gt;
      &lt;CurrencyCode&gt;USD&lt;/CurrencyCode&gt;
      &lt;PaymentStatus&gt;PENDING&lt;/PaymentStatus&gt;
&lt;/Request&gt;
```

