List organization letters
What are Organization Letters? Organization letters are formal business correspondence documents that can be created, managed, and stored directly in Leadtime. They provide centralized, traceable communication linked to each organization, reducing media discontinuity and making it easier to document business correspondence.
What this endpoint does: Returns a paginated, sortable, and filterable list of all organization letters in the workspace. You can view letters for a specific organization or all letters across the workspace.
What data is returned:
- Letter metadata: ID, subject, date, organization, member (if applicable)
- Timestamps: creation date, last update date
- Creator information: who created the letter
- Address type: whether the letter is addressed to the organization or a specific member
Supported operations: Retrieves a paginated grid of organization letters with filtering and sorting capabilities. Quick search available on: subject. Filterable fields: id, organizationId, organizationName, memberId, subject, dateOfLetter, addressType, createdAt, lastUpdated, createdBy. Sortable fields: id, organizationId, organizationName, memberId, subject, dateOfLetter, addressType, createdAt, lastUpdated, createdBy.
Use cases:
- View all letters for a specific organization
- Search and filter letters by subject, date, or member
- Track letter creation and modification history
- Export letter lists for reporting
Note: Requires seeLetters permission on the Organizations resource.
/organizations/lettersAuthorizationOAuth2 access token · headerrequiredapi:readAuthorizationBearer token (JWT) · headerrequiredpagenumberpageSizenumberviewIdstringquickSearchstringfiltersstringsortstringfieldsToReturnany[]curl -X GET "https://leadtime.app/api/public/organizations/letters" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"const response = await fetch("https://leadtime.app/api/public/organizations/letters", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.get(
"https://leadtime.app/api/public/organizations/letters",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)