# Get Single Project Viewer Retrieve detailed information about a specific project viewer. Endpoint: GET /project-viewers/{viewerId} Version: 2.0.0 Security: oauth2, apiKey ## Path parameters: - `viewerId` (integer, required) ID of the project viewer (user_id) Example: 100 ## Query parameters: - `workspace_id` (integer, required) ID of the workspace Example: 1 ## Response 200 fields (application/json): - `success` (boolean) Example: true - `data` (object) - `data.id` (integer, required) Unique identifier for the project viewer (user_id) Example: 100 - `data.email` (string, required) Email address of the project viewer Example: "viewer@example.com" - `data.firstname` (string, required) First name of the project viewer Example: "John" - `data.lastname` (string, required) Last name of the project viewer Example: "Doe" - `data.status` (string,null) Status of the project viewer Enum: "active", "inactive", "left" - `data.member_since` (string,null) Timestamp when project viewer was added to workspace Example: "2024-01-15T09:00:00Z" - `data.projects` (array) List of projects assigned to this viewer - `data.projects.project_id` (integer) ID of the project Example: 100 - `data.projects.project_name` (string) Name of the project Example: "Marketing Campaign Q1" - `message` (string) Example: "Project viewer retrieved successfully" - `meta` (object) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 400 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 401 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 403 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 404 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 500 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string)