Meetings
The Meetings API provides a powerful mechanism to capture notes, provide talking points or track action items from both 1:1 and group meetings. It does not provide functionality to record or host meetings.
Created
Bad Request – invalid request payload.
Unauthorized – missing or invalid JWT.
Forbidden – insufficient permissions.
Not Found – no Entity with that ID.
POST /api/v1/meeting HTTP/1.1
Host: api.peoplelogic.dev
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 46
{
"name": "text",
"type": "text",
"recurring": true
}
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"recurring": true,
"organization": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
],
"events": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"meetingId": "123e4567-e89b-12d3-a456-426614174000",
"startTime": "2025-08-29T22:13:53.036Z",
"endTime": "2025-08-29T22:13:53.036Z",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
]
}
]
}
OK
Bad Request – invalid request payload.
Unauthorized – missing or invalid JWT.
Forbidden – insufficient permissions.
Not Found – no Entity with that ID.
GET /api/v1/meeting/{id} HTTP/1.1
Host: api.peoplelogic.dev
Authorization: Bearer JWT
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"recurring": true,
"organization": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
],
"events": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"meetingId": "123e4567-e89b-12d3-a456-426614174000",
"startTime": "2025-08-29T22:13:53.036Z",
"endTime": "2025-08-29T22:13:53.036Z",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
]
}
]
}
OK
Bad Request – invalid request payload.
Unauthorized – missing or invalid JWT.
Forbidden – insufficient permissions.
Not Found – no Entity with that ID.
PATCH /api/v1/meeting/{id} HTTP/1.1
Host: api.peoplelogic.dev
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 46
{
"name": "text",
"type": "text",
"recurring": true
}
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"recurring": true,
"organization": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
],
"events": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"meetingId": "123e4567-e89b-12d3-a456-426614174000",
"startTime": "2025-08-29T22:13:53.036Z",
"endTime": "2025-08-29T22:13:53.036Z",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
]
}
]
}
OK
Bad Request – invalid request payload.
Unauthorized – missing or invalid JWT.
Forbidden – insufficient permissions.
Not Found – no Entity with that ID.
POST /api/v1/meeting/{meetingId}/participant HTTP/1.1
Host: api.peoplelogic.dev
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 26
{
"entityIdOrEmail": "text"
}
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"recurring": true,
"organization": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
],
"events": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"meetingId": "123e4567-e89b-12d3-a456-426614174000",
"startTime": "2025-08-29T22:13:53.036Z",
"endTime": "2025-08-29T22:13:53.036Z",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
]
}
]
}
OK
Bad Request – invalid request payload.
Unauthorized – missing or invalid JWT.
Forbidden – insufficient permissions.
Not Found – no Entity with that ID.
DELETE /api/v1/meeting/{meetingId}/participant/{entityIdOrEmail} HTTP/1.1
Host: api.peoplelogic.dev
Authorization: Bearer JWT
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"recurring": true,
"organization": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
],
"events": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"meetingId": "123e4567-e89b-12d3-a456-426614174000",
"startTime": "2025-08-29T22:13:53.036Z",
"endTime": "2025-08-29T22:13:53.036Z",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
]
}
]
}
Created
Bad Request – invalid request payload.
Unauthorized – missing or invalid JWT.
Forbidden – insufficient permissions.
Not Found – no Entity with that ID.
POST /api/v1/meeting/{meetingId}/event HTTP/1.1
Host: api.peoplelogic.dev
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 91
{
"name": "text",
"startTime": "2025-08-29T22:13:53.036Z",
"endTime": "2025-08-29T22:13:53.036Z"
}
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"recurring": true,
"organization": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
],
"events": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"meetingId": "123e4567-e89b-12d3-a456-426614174000",
"startTime": "2025-08-29T22:13:53.036Z",
"endTime": "2025-08-29T22:13:53.036Z",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
]
}
]
}
OK
Bad Request – invalid request payload.
Unauthorized – missing or invalid JWT.
Forbidden – insufficient permissions.
Not Found – no Entity with that ID.
DELETE /api/v1/meeting/{meetingId}/event/{eventId} HTTP/1.1
Host: api.peoplelogic.dev
Authorization: Bearer JWT
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"recurring": true,
"organization": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
],
"events": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"meetingId": "123e4567-e89b-12d3-a456-426614174000",
"startTime": "2025-08-29T22:13:53.036Z",
"endTime": "2025-08-29T22:13:53.036Z",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
]
}
]
}
OK
Bad Request – invalid request payload.
Unauthorized – missing or invalid JWT.
Forbidden – insufficient permissions.
Not Found – no Entity with that ID.
PATCH /api/v1/meeting/{meetingId}/event/{eventId} HTTP/1.1
Host: api.peoplelogic.dev
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 91
{
"name": "text",
"startTime": "2025-08-29T22:13:53.036Z",
"endTime": "2025-08-29T22:13:53.036Z"
}
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"recurring": true,
"organization": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
],
"events": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"meetingId": "123e4567-e89b-12d3-a456-426614174000",
"startTime": "2025-08-29T22:13:53.036Z",
"endTime": "2025-08-29T22:13:53.036Z",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"active": true,
"status": {
"current": "text",
"changedAt": "2025-08-29T22:13:53.036Z",
"changedBy": "123e4567-e89b-12d3-a456-426614174000"
},
"created": {
"createdAt": "2025-08-29T22:13:53.036Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000"
},
"assignees": [
{
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"entityType": "text"
}
],
"organization": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"dueDate": "2025-08-29",
"connectedTo": {
"entityId": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"organization": "123e4567-e89b-12d3-a456-426614174000"
},
"notes": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"note": "text",
"author": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-08-29T22:13:53.036Z"
}
],
"order": 1,
"mappings": [
{
"app": "123e4567-e89b-12d3-a456-426614174000",
"namespace": "text",
"mappedId": "text",
"reference": "text",
"mappingData": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"mappingSecrets": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
]
}
]
}
Was this helpful?