# Get Clinical Concept Procedure

Retrieve a specific procedure clinical concept associated with a subject by its ID.

Endpoint: GET /api/v1/patient-registry/clinical-concepts/procedure/{id}
Version: V1
Security: bearer

## Path parameters:

  - `id` (string, required)

## Query parameters:

  - `subjectId` (string, required)
    Subject ID (GUID)

## Header parameters:

  - `ProjectId` (string, required)

## Response 200 fields (application/json):

  - `id` (string, required)
    Unique identifier for the procedure record

  - `documentIds` (array, required)
    List of document IDs associated with the procedure

  - `codes` (array)
    Codes from source documents. Type "standard" indicates the code that determined the OMOP concept assignment

  - `procedure` (string)
    Procedure name or description

  - `procedureLocation` (string)
    Location where the procedure was performed

  - `procedureReason` (string)
    Reason for the procedure

  - `procedureStartDate` (string)
    Start date of the procedure (ISO string)

  - `procedureEndDate` (string)
    End date of the procedure (ISO string)

  - `cancerRelated` (boolean)
    Whether the procedure is cancer related

  - `procedureCategory` (string)
    Category of the procedure

  - `status` (string)
    Status of the procedure

