Skip to content

Download a site log as a daily report PDF

GET
/site-logs/{id}/report.pdf
curl --request GET \
--url https://app.buildworkpro.com/api/v1/site-logs/1/report.pdf \
--header 'Authorization: Bearer <token>'

Renders the site log as an application/pdf daily report: tenant branding, project and address, date and weather, tags, personnel, notes, work performed / materials / visitors / issues, photo thumbnails, and a filed-by / reviewed-by footer. Same renderer and branding as the session GET /api/site-logs/:id/report.pdf route.

id
required
integer

Daily report PDF

Media type application/pdf
string format: binary

Error

Media type application/problem+json
object
type
required

URL identifying the problem type

string format: uri
title
required

Short human-readable summary

string
status
required

HTTP status code

integer
detail

Human-readable explanation

string
request_id

Server-generated request identifier

string
errors

Validation error array (422 only)

Array<object>
object
field
required

Field path that failed validation

string
code
required

Validation error code

string
message
required

Human-readable validation message

string
Example generated
{
"type": "https://example.com",
"title": "example",
"status": 1,
"detail": "example",
"request_id": "example",
"errors": [
{
"field": "example",
"code": "example",
"message": "example"
}
]
}