# Get project URL for sharing with interviewees Get the URL for a project to share with interviewees. Accepts a parameter to specify sandbox or production URL. Endpoint: GET /projects/{project_id}/url Version: 1.0.0 Security: api_key, tenant_id ## Path parameters: - `project_id` (string, required) The ID of the project ## Query parameters: - `environment` (string, required) Specify whether the URL should be for a sandbox or production interview Enum: "sandbox", "production" ## Response 200 fields (application/json): - `project_id` (string) Example: "123e4567-e89b-12d3-a456-426614174000" - `url` (string) Example: "https://app.genway.ai/meet/123e4567-e89b-12d3-a456-426614174000" ## Response 400 fields (application/json): - `message` (string) Example: "Invalid request parameters." - `code` (integer) Example: 400 ## Response 404 fields (application/json): - `detail` (object) - `detail.error` (string) Example: "not_found" - `detail.message` (string) Example: "Project not found." ## Response 422 fields (application/json): - `detail` (array) - `detail.loc` (array, required) - `detail.msg` (string, required) Example: "field required" - `detail.type` (string, required) Example: "value_error.missing"