Get Submittal

GET /public/v1/projects/{projectId}/submittals/{submittalId}

Headers

  • X-COMPANY-ID string Required

    The company's unique ID

Path parameters

  • projectId integer(int64) Required
  • submittalId integer(int64) Required

Query parameters

  • loadCalculatedFields boolean

    Default value is false.

Responses

  • 500 */*

    Internal Server Error

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • response string

      Reviewer’s response or comments for the submittal

    • id integer(int64)

      Id

    • userId string(uuid)

      User Id

    • submittal object
      Hide submittal attribute Show submittal attribute object
      • projectId Required
    • createdDate string(date-time)

      Created date

    • updatedDate string(date-time)

      Updated date

    • createdByEmail string

      Email of the user who created the submittal response

    • createdByUserName string

      Name of the user who created the submittal response

GET /public/v1/projects/{projectId}/submittals/{submittalId}
curl \
 --request GET 'https://live.smartpmtech.com/public/v1/projects/{projectId}/submittals/{submittalId}' \
 --header "X-API-KEY: $API_KEY" \
 --header "X-COMPANY-ID: string"
Response examples (500)
{}
Response examples (200)
{
  "response": "Approved as submitted",
  "id": 1,
  "userId": "123e4567-e89b-12d3-a456-426614174000",
  "submittal": {},
  "createdDate": "2025-10-27T14:30:00+00:00",
  "updatedDate": "2025-10-29T14:30:00+00:00",
  "createdByEmail": "jane.smith@constructionco.com",
  "createdByUserName": "Jane Smith"
}