Case Notes
Notes associated with collaboration requests
Authorizations
Path parameters
tokenstringRequired
The token provided by TSANet for the collaboration request
Query parameters
updatedAfterstring · date-timeOptional
Filter by notes that were updated after (YYYY-MM-DDTHH:MM:SSZ)
createdAfterstring · date-timeOptional
Filter by notes that were created after (YYYY-MM-DDTHH:MM:SSZ)
includeRemovedbooleanOptionalDefault:
Filter to include removed notes - excluded by default
falseResponses
200
List of notes
401
Unauthorized
get
/v1/collaboration-requests/{token}/notesGET /v1/collaboration-requests/{token}/notes HTTP/1.1
Host: connect2.tsanet.org
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": 1,
"caseId": 1,
"companyName": "text",
"creatorUsername": "text",
"creatorEmail": "text",
"creatorName": "text",
"summary": "text",
"description": "text",
"priority": "LOW",
"status": "ENTERED",
"token": "text",
"createdAt": "2025-10-28T01:59:49.549Z",
"updatedAt": "2025-10-28T01:59:49.549Z"
}
]Authorizations
Path parameters
tokenstringRequired
The token provided by TSANet for the collaboration request
Body
summarystring · max: 500Required
descriptionstring · max: 5000Required
prioritystring · enumOptionalPossible values:
Responses
200
Note created successfully
400
Bad request
post
/v1/collaboration-requests/{token}/notesPOST /v1/collaboration-requests/{token}/notes HTTP/1.1
Host: connect2.tsanet.org
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 204
{
"summary": "text",
"description": "text",
"priority": "LOW",
"submittedBy": {
"id": 1,
"username": "text",
"firstName": "text",
"lastName": "text",
"email": "text",
"phone": "text",
"phoneCountryCode": "text",
"city": "text"
}
}{
"id": 1,
"caseId": 1,
"companyName": "text",
"creatorUsername": "text",
"creatorEmail": "text",
"creatorName": "text",
"summary": "text",
"description": "text",
"priority": "LOW",
"status": "ENTERED",
"token": "text",
"createdAt": "2025-10-28T01:59:49.549Z",
"updatedAt": "2025-10-28T01:59:49.549Z"
}Last updated