The status is a code identifying the Contact resource. Valid codes are:
• C (Completed)
• E (Expected)
• V (voided)
Contact Batch Entry is used to add or change the statuses on contact records. The following describes the logic of how this program adds and updates records.
If the program is passed the status of C (for Completed) - the program updates any matching contact records with a status of E to the status of C. If no matching record exists, then the program creates a contact record with a status of C.
If the program is passed the status of E (for Expected) - the program always adds a contact record with a status of E.
If the program is passed the status of V (for Voided) - the program updates any matching contact records with a status of E to the status of V. If a matching record is found, the program does not add another contact record with the status of V. If a matching contact record with a status of C is found, the program does not update the contact record.