---
title: "Associate practitioners with a group"
method: POST
path: "/groups/{id}/practitioners"
tags: ["Group"]
---

# Associate practitioners with a group

`POST /groups/{id}/practitioners`

Associates one or more practitioners with a group, creating group–practitioner membership records. Optionally also associates each practitioner with one or more specific locations within the group. Suitable for initial population as well as incremental additions. Idempotent — an UPSERT_DATA merge keyed on the group and practitioner, so calling again for an already-associated practitioner re-merges the supplied data into the existing association rather than creating a duplicate or returning a conflict.

## Path parameters

- `id` string, required

## Headers

- `tenant-id` string

## Request body

- AssociateGroupPractitionersRequest — Request to associate one or more practitioners with a group
  - `practitioners` GroupPractitionerRequest[], required — List of practitioners to associate with the group
    - `certifyPractitionerId` string, required — Certify Practitioner ID (Core Practitioner ID)
    - `groupPractitionerData` object — Group-practitioner relationship data
    - `locations` GroupPractitionerLocationRequest[] — List of locations to associate with this practitioner
      - `tenantGroupLocationId` string, required — ID of the tenant group location
      - `locationData` object — Location-specific data for the practitioner
      - `networks` LocationNetwork1[] — List of networks to associate with this practitioner at this specific location
        - `networkId` string, required — Network ID
        - `data` object — Network participation data (effectiveDate, status, etc.)
    - `networks` PractitionerNetwork[] — List of networks to associate with this practitioner at the group level
      - `networkId` string, required — Network ID
      - `data` object — Network participation data (effectiveDate, status, etc.)

## Response `201`

Practitioners successfully associated with the group

- AssociateGroupPractitionersResponse — Response for associating practitioners with a group
  - `associations` GroupPractitionerAssociationResponse[] — List of created/updated practitioner associations
    - `certifyPractitionerId` string — Certify Practitioner ID
    - `tenantGroupPractitionerId` string — ID of the created/updated tenant group practitioner association
    - `locations` GroupPractitionerLocationResponse[] — List of location associations
      - `tenantGroupLocationId` string — ID of the tenant group location
      - `groupPractitionerLocationId` string — ID of the created/updated group practitioner location association

## Other responses

- `400` — Invalid request body or missing required parameters
- `401` — Unauthorized - Authentication required
- `403` — Forbidden - Insufficient permissions
- `404` — Group, practitioner, or location not found
- `500` — Internal server error during request processing

---

[API](https://skmtc.net/certifyos/apis/certify-api-layer.md) · [All operations](https://skmtc.net/certifyos/apis/certify-api-layer/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/certifyos/certify-api-layer/revisions/563848e0ecc0/schema)
