The request body for fetching events. Must include either a cursor string from a previous response to continue pagination, or a ResetCursor object to start fetching from a specific time.
Password ManagerPasswordsSecuritySecrets
Properties
Name
Type
Description
limit
integer
The maximum number of event records to return per page.
cursor
string
A cursor from a previous response to continue fetching events from where the last request left off.
start_time
string
An ISO 8601 timestamp to begin fetching events from a specific time. Used to create a new cursor starting from this point.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/1password/refs/heads/main/json-schema/1password-events-event-request-schema.json",
"title": "EventRequest",
"description": "The request body for fetching events. Must include either a cursor string from a previous response to continue pagination, or a ResetCursor object to start fetching from a specific time.",
"type": "object",
"properties": {
"limit": {
"type": "integer",
"description": "The maximum number of event records to return per page.",
"minimum": 1,
"maximum": 1000,
"default": 100
},
"cursor": {
"type": "string",
"description": "A cursor from a previous response to continue fetching events from where the last request left off."
},
"start_time": {
"type": "string",
"format": "date-time",
"description": "An ISO 8601 timestamp to begin fetching events from a specific time. Used to create a new cursor starting from this point."
}
}
}