Pular para o conteúdo principal
GET
/
engagements
/
v1
/
engagements
/
recent
/
modified
Get recent engagements
curl --request GET \
  --url https://api.hubapi.com/engagements/v1/engagements/recent/modified
{
  "results": [
    {}
  ],
  "hasMore": true,
  "offset": 123,
  "total": 123
}

Parâmetros de consulta

count
integer

The number of items to include in the response. Defaults to 20, has a maximum value of 100.

Intervalo obrigatório: x <= 100
offset
integer

Used to page through the recent engagements. Each response will include an offset value that can be used with this parameter to get the next set of records.

since
integer

A Unix timestamp in milliseconds. If this parameter is included, only records modified after the specified time will be returned.

Resposta

200 - application/json

Successful response - Recently modified engagements

results
object[]
hasMore
boolean
offset
integer
total
integer
Last modified on April 13, 2026