# BIM API ## Module Name ### `GET api/v1/Project/GetProjectDetail` - get a detail project **Request** | Parameter | Description | Schema | | ------------ | ----------- | ------ | | projectId | | number | **Response** | Parameter | Description | Schema | | ------------ | ----------- | ------ | | projectId | | number | | projectCode | | string | | projectDate | | string | | projectDescription | | string | | projectLocationCode | | string | | projectLogoUrl | | string | | projectName | | string | | projectOwner | | number | #### Example Response ```json { "data": [ { "projectId": 1, "projectCode": "Project Info 0101", "projectDate": "", "projectDescription": "Posted on August 12,2011 by Test1", "projectLocationCode": "11223344", "projectLogoUrl": "https://sourcing-platform.s3-ap-southeast-1.amazonaws.com/manual-file/UserManualForVendor.pdf", "projectName": "Project A0101", "projectOwner": "Test01", } ] "status": 0, "message": "string" }