Skip to content

List calendar events

GET
/calendar/events
curl --request GET \
--url 'https://app.buildworkpro.com/api/v1/calendar/events?start=2026-04-15T12%3A00%3A00Z&end=2026-04-15T12%3A00%3A00Z' \
--header 'Authorization: Bearer <token>'

Returns a list of calendar events within the given time window. Aggregates projects, tasks, phases, leads, bids and activities. Max window 366 days.

start
required
string format: date-time
end
required
string format: date-time
types
string
assignedTo
integer | null
projectId
integer | null

Events

Media type application/json
object
data
required
Array<object>
object
id
required
Any of:
string
type
required
string
Allowed values: task phase project lead activity bid
title
required
string
start
required
Any of:
string format: date-time
end
required
Any of:
string format: date-time
projectId
integer | null
assignedTo
integer | null
meta
required
object
request_id

Server-generated request identifier

string
pagination
object
cursor
required

Opaque cursor for the next page; null when no more results

string | null
has_more
required

Whether more pages are available after this one

boolean
count
required

Items in this page

integer
Example
{
"data": [
{
"type": "task"
}
]
}

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"
}
]
}

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"
}
]
}