v1

latestOpenAPI 3.1.02026-08-063776831.4 MB
Practitioner

Update NPI and Location NPI Participation Date for a practitioner at a location-network

Updates only the NPI and/or Location NPI Participation Date (networkPractitionerEffectiveDate) for a practitioner at a specific location-network. All other TenantGroupLocationPractitionerNetwork data fields are preserved. Pass null for npi or npiParticipationDate to leave those values unchanged. NPI is a location-network attribute and is not editable at the practitioner-location level.

put/practitioners/{practitionerId}/locations/{locationId}/networks/{networkId}/npi-par-date

Path parameters

locationIdstring required

ID of the tenant group location

networkIdstring required

ID of the network

practitionerIdstring required

ID of the practitioner (certify practitioner ID)

Headers

tenant-idstring

Request body

groupIdstring required

Certify (core) group ID of the group to which the practitioner belongs.

npistring

NPI for this practitioner at the location-network. Pass null to leave the existing value unchanged.

npiParticipationDatestring

Location NPI Participation Date (ISO-8601 date string, e.g. "2024-01-15"). Pass null to leave the existing value unchanged.

Example request

{
  "groupId": "8e8a377a-39f0-4032-9067-dbb23bc52c84",
  "npi": "1234567890",
  "npiParticipationDate": "2024-01-15"
}

Response

Successfully updated NPI and/or participation date

tenantGroupPractitionerIdstring

ID of the tenant group practitioner

tenantGroupLocationIdstring

ID of the tenant group location

networkIdstring

ID of the network

groupPractitionerLocationIdstring

ID of the group practitioner location association

tenantGroupLocationPractitionerNetworkIdstring

ID of the tenant group location practitioner network association

status'created' | 'updated' | 'failed'

Status of an update operation

Example response

{
  "tenantGroupPractitionerId": "tgp-456",
  "tenantGroupLocationId": "tgl-123",
  "networkId": "net-789",
  "groupPractitionerLocationId": "gpl-456",
  "tenantGroupLocationPractitionerNetworkId": "tglpn-789",
  "status": "updated"
}