Troubleshoot failed COB checks

A list of potential errors and possible resolutions when submitting coordination of benefits (COB) checks.

Inaccurate patient data

COB checks are significantly more sensitive to data accuracy than eligibility checks. To perform successful COB checks, the patient information you provide in the check must match the payer's data exactly.

For example, if a payer has a patient's name stored as "Jonathan Doe", they may return benefits information when you submit an eligibility check for "Jon Doe", as long as they can identify the patient through the other information provided. However, a COB request for "Jon Doe" will fail because the name doesn't match the payer's records exactly.

This is why the Stedi portal only allows you to submit COB checks from successful eligibility checks and prefills the form data.

Missing data

COB requests must contain the patient's first name, last name, date of birth, plus their member ID and/or Social Security Number (SSN). If you don't send all data points, Stedi returns an error with a message listing the missing data.

{
  "fieldList": [
    {
      "path": "/subscriber/dateOfBirth",
      "message": "Value at '/subscriber/dateOfBirth' failed to satisfy constraint: Member must not be null"
    }
  ],
  "message": "1 validation error detected. Value at '/subscriber/dateOfBirth' failed to satisfy constraint: Member must not be null"
}

Request found multiple patients

The Duplicate Subscriber/Insured ID Number error can occur when Stedi finds more than one member ID for the patient in the request. For example, this could occur if you only provide the patient's Social Security Number (SSN), and the search returns more than one member ID associated with that SSN.

In this case, Stedi returns a response with an AAA error in the subscriber object.

"subscriber": {
  "memberId": "123456789",
  "firstName": "John",
  "lastName": "Doe",
  "dateOfBirth": "1961-10-21",
  "aaaErrors": [
    {
      "field": "AAA",
      "code": "76",
      "description": "Duplicate Subscriber/Insured ID Number",
      "followupAction": "Please Correct and Resubmit",
      "location": "Loop 2100C",
      "possibleResolutions": "Duplicate member ID was found in the payer database."
    }
  ]
}

Invalid service dates

The service dates you provide must be within the past 2 years. COB checks don't support requests with dates outside of this range.

Don't send service dates that are in the future. Future service dates typically result in errors from the payer.

Inactive coverage

For COB checks to return a positive result, the patient must have active coverage. Sometimes, you can receive a false negative or error on a COB check when a patient's coverage has very recently changed. For example, if the patient recently became eligible for coverage within the last few days, that information may not yet be reflected in the COB member data, and you will receive a Subscriber/Insured Not Found error.

Payers typically update COB member data on a weekly basis. If you receive an error and the patient's coverage has recently changed, we recommend trying again next week to give the changes time to propagate to the COB database.

AAA errors

The COB response may contain one or more AAA errors specify issues with your request and any recommended follow-up actions. Stedi includes this information in the aaaErrors object in the response JSON.

AAA errors can be present at multiple different levels in the response, depending on the type. In the COB response, the subscriber, dependent, and provider objects can each contain their own aaaErrors array.

Common causes for AAA errors include:

  • Missing or incorrect information for the subscriber, dependent, provider, or payer. In this case, you should correct any errors before resubmitting.
  • Issues with payer enrollment. Many of these issues require that the provider contact the payer directly to resolve, due to PHI/HIPAA guidelines.

Each error contains a code field that corresponds to a followupAction:

  • C - Please correct and resubmit
  • N - Resubmission not allowed | Note that this code doesn't mean you should never resubmit the request. Intermediary clearinghouses may send this code when they have temporarily lost connection to the payer, so this code indicates that you should wait at least a few minutes before retrying instead of retrying immediately.
  • P - Please resubmit original transaction
  • R - Resubmission allowed
  • S - Do not resubmit; Inquire initiated to a third party
  • Y - Do not resubmit; We will hold your request and respond again shortly

On this page