Resubmit or cancel claims

You'll need to resubmit claims when they're rejected due to correctable errors, such as:

  • Invalid or missing data.
  • Incorrect patient or provider details.
  • Incorrect billing codes or modifiers.
  • Missing documentation or attachments the payer requires.

You may also need to cancel duplicate claims or claims that were submitted in error, such as accidentally billing for the wrong provider or patient.

Pre-adjudication vs. adjudication

When resubmitting claims, you need to know whether your claim is pre-adjudication or in adjudication.

StageDefinitionHow you'll know
Pre-adjudicationThe claim hasn't entered the payer's adjudication system. This includes claims the payer has received and then rejected based on front-end edits.
  • You received a 277CA claim acknowledgment from Stedi or the payer. Payer rejections may include a message, such as "returned as unprocessable" or "not entered into processing system."
  • The payer's 277CA doesn't contain a Payer Claim Control Number (PCCN).
AdjudicationThe claim has entered the payer's adjudication system. This includes claims that were rejected during adjudication, claims still in progress (for example, in Pending status), and claims that completed adjudication (resulting in an 835 ERA).
  • The payer's 277CA contains a Payer Claim Control Number (PCCN), indicating it has entered the payer's system. OR
  • You ran a real-time claim status check that included a PCCN in the response. OR
  • You received an 835 Electronic Remittance Advice (ERA) from the payer with adjudication details. All 835 ERAs include a PCCN.

The following diagram illustrates the claim submission lifecycle and the responses you can expect to receive at each stage.

Claim response lifecycle

Preparing claim resubmissions or cancellations

Stedi's guidance for resubmissions varies depending on three factors:

  • Whether the claim has entered the payer's adjudication system - Visit Pre-adjudication vs. adjudication to determine where your claim is in the lifecycle.
  • Whether you're resubmitting to Medicare - Medicare Part A and Part B (processed through MACs) have different requirements than other payers. Visit Medicare resubmission for details.
  • Claim type - Institutional claims have different requirements than professional or dental claims. Visit Institutional claims for details.

These factors determine which codes and identifiers to include in the resubmission:

You'll also need to include any necessary corrections to the claim data.

Claim Frequency Code (CFC)

The Claim Frequency Code (CFC) indicates the type of claim submission. It's what tells the payer the claim is an original, a replacement, or a cancellation.

ScenarioCFC Guidance
Pre-adjudication (all payers)
  • Professional/Dental: 1 (Admit thru Discharge Claim)
  • Institutional: CFC from original submission
Adjudication, non-Medicare
  • All claim types: 7 (Replacement of Prior Claim) or 8 (Void/Cancel of Prior Claim)
  • Resubmission requirements can vary by payer. Always confirm this guidance with the payer's companion guide.
Adjudication, Medicare
  • Professional/Dental: 1 (Admit thru Discharge Claim)
  • Institutional: CFC from original submission

Set the CFC

You can set the Claim Frequency Code (CFC) in the following locations:

  • JSON: claimInformation.claimFrequencyCode property
  • X12 EDI: Loop 2300 CLM05-03 (Claim Frequency Code) component
  • CMS-1500 claim form UI: Set the Qualifier in Box 22 (Resubmission code)

Institutional claims

Institutional claims support a broader set of Claim Frequency Code (CFC) values than professional or dental claims.

For example, in long term care settings, facilities commonly submit interim claims every 30 days to receive partial payments while the patient is still admitted, rather than waiting until the end of the patient's stay. The CFC codes for these interim claims are 2 (Interim - First Claim), 3 (Interim - Continuing Claims), or 4 (Interim - Last Claim).

Therefore, the guidance for institutional claim CFCs is different from professional and dental claims. Specifically, for claims in pre-adjudication or Medicare claims in adjudication, you should resubmit with the same CFC you used in the original submission.

Payer Claim Control Number (PCCN)

The Payer Claim Control Number (PCCN) is the unique identifier the payer assigns when your claim enters their adjudication system. It's different from the Patient Control Number you sent in the original claim and the Stedi-generated controlNumber returned in the API response.

ScenarioPCCN Guidance
Pre-adjudication (all payers)Don't include a PCCN. The claim hasn't entered the payer's adjudication system yet, so no PCCN exists.
Adjudication, non-MedicareInclude the PCCN the payer returned in one or more responses to the original claim. Without the PCCN, the payer won't know which claim to replace or cancel.
Adjudication, MedicareDon't include the PCCN. Medicare explicitly instructs providers to omit it when resubmitting claims. Visit Medicare resubmission for details.

Set the PCCN

You can supply the Payer Claim Control Number (PCCN) in the following locations:

  • JSON: claimInformation.claimSupplementalInformation.claimControlNumber
  • X12 EDI: Loop 2300 REF02, where REF01 = F8 (Original Reference Number)
  • CMS-1500 claim form UI: Set the Original reference number in Box 22 (Resubmission code)

Find existing PCCN

You can retrieve the Payer Claim Control Number (PCCN) from the following transactions.

277CA claim acknowledgment from the payer

277 real-time claim status response

835 Electronic Remittance Advice (ERA)

Patient Control Number (PCN)

The Patient Control Number (PCN) is a unique identifier you assign to the claim. The payer returns this value in related transactions, such as the 277CA claim acknowledgment and 835 Electronic Remittance Advice (ERA), so you can correlate responses with the original claim.

ScenarioPCN Guidance
Pre-adjudication (all payers)Same PCN as original submission
Adjudication, MedicareSame PCN as original submission
Adjudication, non-MedicareNew, unique PCN

Reuse the same PCN from the original submission for pre-adjudication resubmissions and adjudication Medicare resubmissions. Stedi uses the PCN to match claims and resubmissions in the claims view, so reusing the PCN allows Stedi to show the original claim and resubmissions within a unified claim timeline. Reusing the PCN also helps you track the claim throughout the resubmission process.

Use a new, unique PCN for adjudication non-Medicare resubmissions. In this scenario, a new PCN helps you avoid potential duplicate claim errors from the payer. A new PCN also helps you differentiate between the 835 Electronic Remittance Advice (ERAs) for the original submission and the resubmission.

Set the PCN

You can set the PCN in the following locations:

  • JSON: claimInformation.patientControlNumber
  • X12 EDI: Loop 2300 CLM01 (Patient Control Number)
  • CMS-1500 claim form UI: Set Box 26 (Patient account number)

PCN format

When assigning a PCN, follow these best practices:

  • Use a unique PCN for each claim. The identifier should be more complex than a simple sequential number and should be hard to guess.
  • Use random strings. Formats with patient initials or the date of service in them can create duplicates. We recommend using nanoid or a similar library configured with the characters available in the basic character set to create a strong, unique 17-character PCN for each claim.
  • Keep it 17 characters or less. Some payers cut off values longer than 17 characters in ERAs and claim acknowledgments, which makes it hard to match them with the original claim.
  • Use only characters available in the basic character set, and avoid special characters that are only available in the extended character set. Payers are permitted to return data using the basic character set. Using other characters may result in data loss or mismatches when correlating claims with responses.
  • Treat PCN values as case-insensitive when matching transactions, even if the submitted value included both lower and uppercase characters.

Resubmit or cancel claims

Ensure that the updated claim includes:

Once you've prepared the updated claim, you can resubmit it through the Stedi API, an SFTP connection, or the Stedi portal. The resubmission process is the same for both corrections and cancellations - the Claim Frequency Code indicates which action you want to take.

API resubmission

Resubmit through one of Stedi's claim submission endpoints:

SFTP resubmission

Visit SFTP submission for details on how to format and submit X12 EDI claims through SFTP.

CMS-1500 form (professional)

Stedi's CMS-1500 claim form UI is mostly limited to the CMS-1500 form fields. It may not be able to successfully resubmit complex claims originally submitted through our APIs or SFTP.

To resubmit a professional claim through Stedi's interactive CMS-1500 form:

  1. Go to the claims view and click the claim you want to resubmit to open its timeline.

  2. Click See more detail above the claim submission to review its details page.

  3. Click Edit and resubmit and select CMS-1500 resubmission. Stedi opens the interactive CMS-1500 form prepopulated with the claim's information.

    Claim resubmission CMS-1500 form

  4. Make any necessary changes to the claim.

    • Make sure to update the Claim Frequency Code, the Payer Claim Control Number, and the Patient Control Number according to best practices.
    • Click Claims timeline to open a side panel with the claim's activity. You can review related 277CA claim acknowledgments containing the errors you need to address before resubmitting. Hover over a transaction and click See more detail to review its details.
  5. Click Submit claim to resubmit the updated claim to the payer.

The updated claim will appear on the claims view within a few minutes. The claim timeline will reflect that this claim is a resubmission along with the original claim and any associated responses.

You'll receive new 277CA claim acknowledgments indicating whether the resubmitted claim was accepted or rejected.

X12 EDI editor

To resubmit a professional, dental, or institutional claim through Stedi's X12 EDI editor:

  1. Go to the claims view and click the claim you want to resubmit to open its timeline.

  2. Click See more detail above the claim submission to review its details page.

  3. Click Edit and resubmit and select X12 transaction resubmission. Stedi opens the claim in an interactive editor with the X12 EDI on the left and the EDI specification on the right.

    As you hover over different parts of the EDI, Stedi highlights the corresponding part of the specification on the right to help you understand what each part of the EDI means and how to edit it correctly. X12 EDI editor

  4. Make changes to the claim EDI.

    • You can type directly in the EDI editor or copy and paste updated EDI from another source.
    • Make sure to update the Claim Frequency Code, the Payer Claim Control Number, and the Patient Control Number according to best practices.
    • Click Claims timeline to open a side panel with the claim's activity. You can review related 277CA claim acknowledgments containing the errors you need to address before resubmitting. Hover over a transaction and click See more detail to review its details.
  5. Click Review and submit. Stedi shows a comparison of the original claim and the new claim containing your changes.

  6. Click Resubmit claim to send the updated claim to the payer.

The updated claim will appear on the claims view within a few minutes. The claim timeline will reflect that this claim is a resubmission along with the original claim and any associated responses.

You'll receive new 277CA claim acknowledgments indicating whether the resubmitted claim was accepted or rejected.

Medicare resubmission

Medicare Part A and Part B (processed through MACs) have different requirements for resubmissions and cancellations than non-Medicare payers. Non-Medicare includes all other payers, such as commercial insurance and Medicaid.

  • Medicare does not accept Claim Frequency Codes 7 or 8 for resubmissions. For professional and dental claims, resubmit with Claim Frequency Code 1. For institutional claims, resubmit with the same Claim Frequency Code as the original submission.
  • Don't include the original claim's Payer Claim Control Number (PCCN) when resubmitting, even if one is available.

Determine 277CA sender

To determine whether a 277CA is from a clearinghouse or the payer:

  • JSON: Check the transactions[].payers array in the report (Loop 2100A). The organizationName property contains the name of the sender (for example, CIGNA or STEDI).
  • X12 EDI: Check Loop 2100A NM103 (Information Source Name).

You can also find this information in the Stedi portal:

  1. Go to the claims view.
  2. Find the associated claim and click it to view the claim timeline.
  3. Find the 277CA in the timeline view. The From field indicates whether the acknowledgment is from Stedi or the payer.

277CA claim timeline

Character restrictions

Only use the X12 Basic and Extended character sets in request data. Using characters outside these sets may cause errors.

In addition, the following characters are reserved for delimiters in the final X12 EDI transaction to the payer: ~, *, : and ^. X12 doesn't support using escape sequences to represent delimiters or special characters. Stedi returns a 400 error if you use these restricted characters improperly.

  • JSON and CMS-1500 form: Don't include delimiter characters anywhere in your request data.
  • Raw X12: You can use these characters as delimiters, but not in the body of the request data.

On this page