Add payer_patient_id + DOB to claim webhook example#28
Merged
Conversation
Companion to LakeEriePartners/stream PR #14403 (CRAWL-5552 + CRAWL-5553). Stream now serializes: - `payer_patient_id` on the claim and on each dependent (Anthem PAA FHIR Patient GUID; stable carrier-side identifier). - `patient_date_of_birth` on the claim, `date_of_birth` on each dependent. Example payload updated so integrators see the shape they will receive.
Stream's CRAWL-5552 PR moved per-carrier patient identifiers from a flat dependents[].payer_patient_id string to a payer_identities list, backed by a junction table so a Dependent on multiple PAA carriers carries one identity row per carrier. Example payload updated to show the list shape with payer_id + payer_patient_id. Companion to LakeEriePartners/stream#14403.
There was a problem hiding this comment.
Pull request overview
Updates the documented new-claim webhook example payload to include three newly serialized fields (payer_patient_id, patient_date_of_birth, and dependent date_of_birth / payer_identities) so integrators can preview the shape they will receive once the companion Stream PR lands.
Changes:
- Added
date_of_birthand apayer_identitiesarray (withpayer_id+payer_patient_id) on the example dependent. - Added
patient_date_of_birthand top-levelpayer_patient_idon the example claim.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Companion to LakeEriePartners/stream#14403 (CRAWL-5552 + CRAWL-5553).
Stream now serializes these fields on the new-claim webhook payload (and the v3 claim API):
payer_patient_iddependents[]patient_date_of_birthdate_of_birthdependents[]Example payload in
docs/connect/webhook-examples.mdupdated so integrators see the shape they'll start receiving once #14403 lands.Related PRs