> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kraken.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Resend Request

> FIX message used to request retransmission of messages when a sequence gap is detected.

The Resend Request message is used to request retransmission of messages from the counterparty when a sequence gap is detected. When a sequence gap is detected (i.e., when the incoming message sequence number is greater than expected), a Resend Request should be sent to request retransmission of the missing messages.

<Tabs>
  <Tab title="FIX Specification">
    <ParamField path="header" type="" required>
      MsgType <code>2</code>
    </ParamField>

    <ParamField path="7 - BeginSeqNo" type="integer" required>
      First message sequence number to be resent.
    </ParamField>

    <ParamField path="16 - EndSeqNo" type="integer" required>
      Last message sequence number to be resent. Set to 0 to request all messages from BeginSeqNo onwards.
    </ParamField>

    <ParamField path="trailer" type="" required />
  </Tab>
</Tabs>
