get: operationId: customercareProgram tags: - Customer management summary: All practices and their participation in care programs. description: |- Enumerates all practices for which the current customer (user) is responsible in the care group. The customer identified with the JWT must be the group manager, otherwise the API will respond with a HTTP not authorized response. The care group must also be responsible for the underlying practices. Some care groups are organized in a way that they are not allowed to process data of the member practices. These groups are ignored by this API and produce empty output. responses: '200': description: All practices for which the care group takes responsibility. content: application/json: schema: type: array items: type: object properties: practice: description: The name of the practice. type: string careprograms: type: array items: $ref: '../schemas/CareProgram-enum.yaml' gpis: $ref: '../schemas/GPIS.yaml' '401': $ref: '../zoo-api.yaml/#/components/responses/NoAuth' '403': $ref: '../zoo-api.yaml/#/components/responses/NoAccess'