v1

latestOpenAPI 3.1.02026-08-063776831.4 MB
Practitioner

Update practitioner network associations

Updates a practitioner's network associations following the roster ingestion pattern. Associates a practitioner with one or more networks within a group, creating or updating TenantGroupPractitionerNetwork relationships.

put/practitioners/{id}/networks

Path parameters

idstring required

Practitioner ID (certifyPractitionerId)

Headers

tenant-idstring

Request body

groupIdstring required

ID of the group to which the practitioner belongs

Example request

{
  "groupId": "group-123",
  "networks": [
    {
      "networkId": "network-123"
    }
  ]
}

Response

Successfully updated practitioner network associations

tenantGroupPractitionerIdstring

ID of the tenant group practitioner

Example response

{
  "tenantGroupPractitionerId": "tgp-456",
  "networkAssociations": [
    {
      "networkId": "net-123",
      "tenantGroupPractitionerNetworkId": "tgpn-789",
      "status": "updated"
    }
  ]
}