List events
/v1/eventsEvery event with its invitee counts (invited, signed, bounced). Pass status to list only the active or only the closed ones.
Authentication
Send an organization-scoped API key in the Authorization header. Keep credentials on your server.
events:readParameters
querystringAllowed: active, closed
Responses
200 Response schema
application/json
arrayrequiredView item fields
string · uuidrequiredstringrequiredstring · uuidrequiredstring | nullrequiredstring | nullrequiredstring | nullrequiredstringrequiredAllowed values: "active", "closed"
objectrequiredView nested fields
integerrequiredRange: -9007199254740991 to 9007199254740991.
integerrequiredRange: -9007199254740991 to 9007199254740991.
integerrequiredRange: -9007199254740991 to 9007199254740991.
integerrequiredRange: -9007199254740991 to 9007199254740991.
View complete response schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$"
},
"name": {
"type": "string"
},
"templateId": {
"type": "string",
"format": "uuid",
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$"
},
"locationId": {
"anyOf": [
{
"type": "string",
"format": "uuid",
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$"
},
{
"type": "null"
}
]
},
"startsAt": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
]
},
"endsAt": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
]
},
"status": {
"type": "string",
"enum": [
"active",
"closed"
]
},
"counts": {
"type": "object",
"properties": {
"invited": {
"type": "integer",
"minimum": -9007199254740991,
"maximum": 9007199254740991
},
"signed": {
"type": "integer",
"minimum": -9007199254740991,
"maximum": 9007199254740991
},
"pending": {
"type": "integer",
"minimum": -9007199254740991,
"maximum": 9007199254740991
},
"bounced": {
"type": "integer",
"minimum": -9007199254740991,
"maximum": 9007199254740991
}
},
"required": [
"invited",
"signed",
"pending",
"bounced"
],
"additionalProperties": false
}
},
"required": [
"id",
"name",
"templateId",
"locationId",
"startsAt",
"endsAt",
"status",
"counts"
],
"additionalProperties": false
}
}
},
"required": [
"items"
],
"additionalProperties": false
}401 Response schema
application/json
objectrequiredView nested fields
stringrequiredstringrequiredstringrequiredvalueView complete response schema
{
"type": "object",
"properties": {
"error": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
},
"requestId": {
"type": "string"
},
"details": {}
},
"required": [
"code",
"message",
"requestId"
],
"additionalProperties": false
}
},
"required": [
"error"
],
"additionalProperties": false
}403 Response schema
application/json
objectrequiredView nested fields
stringrequiredstringrequiredstringrequiredvalueView complete response schema
{
"type": "object",
"properties": {
"error": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
},
"requestId": {
"type": "string"
},
"details": {}
},
"required": [
"code",
"message",
"requestId"
],
"additionalProperties": false
}
},
"required": [
"error"
],
"additionalProperties": false
}404 Response schema
application/json
objectrequiredView nested fields
stringrequiredstringrequiredstringrequiredvalueView complete response schema
{
"type": "object",
"properties": {
"error": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
},
"requestId": {
"type": "string"
},
"details": {}
},
"required": [
"code",
"message",
"requestId"
],
"additionalProperties": false
}
},
"required": [
"error"
],
"additionalProperties": false
}422 Response schema
application/json
objectrequiredView nested fields
stringrequiredstringrequiredstringrequiredvalueView complete response schema
{
"type": "object",
"properties": {
"error": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
},
"requestId": {
"type": "string"
},
"details": {}
},
"required": [
"code",
"message",
"requestId"
],
"additionalProperties": false
}
},
"required": [
"error"
],
"additionalProperties": false
}429 Response schema
application/json
objectrequiredView nested fields
stringrequiredstringrequiredstringrequiredvalueView complete response schema
{
"type": "object",
"properties": {
"error": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
},
"requestId": {
"type": "string"
},
"details": {}
},
"required": [
"code",
"message",
"requestId"
],
"additionalProperties": false
}
},
"required": [
"error"
],
"additionalProperties": false
}Authentication and validation failures use the shared error envelope. Save the request ID when diagnosing a failed call.
Build the surrounding workflow
Read the events and invitations guide for ordering, verification and recovery. Browse the other events and invitations endpoints when you need the next operation.