Force Capture Response

The Force Capture response message is identical for Online and Batch transactions, except Online includes the <postDate> element. The Force Capture response has the following structure:

<forceCaptureResponse id="Capture Id" reportGroup="iQ Report Group" customerId="Customer Id">

  <cnpTxnId>Transaction Id</cnpTxnId>

  <response>Response Code</response>

  <responseTime>Date and Time in GMT</responseTime>

  <postDate>Date transaction posted</postDate> (Online Only)

  <message>Response Message</message>

  <location>Processing Location</location>

  <tokenResponse> (for Tokenized merchants submitting card data)

  <accountUpdater>

  <fraudResult>

  <giftCardResponse>

  <checkoutId>Unique Id Value</checkoutId>

</forceCaptureResponse>

Example: Batch Force Capture Response

<cnpResponse version="12.0" xmlns="http://www.vantivcnp.com/schema"id="123" cnpSessionId="987654321" response="0" message="Valid Format">

  <batchResponse id="01234567" cnpBatchId="4455667788" merchantId="100">

    <forceCaptureResponse id="AX54325432" reportGroup="RG12" customerId="038945">

      <cnpTxnId>84568457</cnpTxnId>

      <response>000</response>

      <responseTime>2016-09-01T10:24:31</responseTime>

      <message>Approved</message>

    </forceCaptureResponse>

  </batchResponse>

</cnpResponse>

Example: Online Force Capture Response

<cnpOnlineResponse version="12.0" xmlns="http://www.vantivcnp.com/schema" response="0" message="Valid Format">

  <forceCaptureResponse id="2" reportGroup="ABC Division" customerId="038945">

    <cnpTxnId>1100030204</cnpTxnId>

    <response>000</response>

    <responseTime>2016-07-11T14:48:48</responseTime>

    <postDate>2016-07-11</postDate>

    <message>Approved</message>

  </forceCaptureResponse>

</cnpOnlineResponse>

Example: Force Capture Response for Tokenized Merchant Sending Card Data

A tokenized merchant that includes card information in the request receives a response message that includes the token element. The example below is an Online response.

<forceCaptureResponse id="99999" reportGroup="RG1" customerId="444">

  <cnpTxnId>21200000039504</cnpTxnId>

  <response>000</response>

  <responseTime>2016-10-20T18:25:38</responseTime>

  <postDate>2016-10-20</postDate>

  <message>Approved</message>

  <tokenResponse>

    <cnpToken>111310880008000</cnpToken>

    <tokenResponseCode>801</tokenResponseCode>

    <tokenMessage>Account number was successfully registered</tokenMessage>

    <type>AX</type>

    <bin></bin>

  </tokenResponse>

</forceCaptureResponse>