List organizations
Returns a paginated, filterable, and sortable grid of all organizations in the workspace.
What are Organizations? Organizations represent external business partners that your company has contact with:
- Customers: Existing business partners with ongoing projects
- Prospects: Potential customers with first contact or active offers
- Suppliers: External providers of goods or services
- Partners: Strategic partners or resellers
- Competitors: Competitors in the same industry
- Service Providers: Supporting external providers (e.g., for support)
- Investors: Financial or institutional investors
- Authorities: Public institutions or government agencies
- Educational Institutions: Universities, schools, or research institutes
- Target Groups: Companies that belong to your target customer group
Organizations are the foundation for managing external projects, contacts (organization members), invoices, and business relationships. They allow you to structure and analyze all external partnerships in one place.
What is returned:
- Organization identification (ID, name, short name, type, color, icon)
- Status information (active/inactive)
- Relationship data (number of linked projects, number of members/contacts)
- Creation and update timestamps
- Logo information
Filtering and search:
- Quick search across organization name, short name, and other fields
- Advanced filtering by type, status, and other attributes
- Sorting by any sortable field
- Server-side pagination for large organization lists
Note: This endpoint requires the Organizations.view permission. Retrieves a paginated grid of organizations with filtering and sorting capabilities. Quick search available on: name, shortName. Filterable fields: id, name, shortName, type, isActive, email, phoneNumber, website, addressCity, addressCountry, addressStreet, addressZip, startOfCollaboration, createdAt, editedAt, isFavorite, parentOrganizationId, parentOrganizationName. Sortable fields: id, name, shortName, type, isActive, addressCity, addressCountry, startOfCollaboration, createdAt, editedAt, isFavorite, parentOrganizationId.
/organizationsAuthorizationOAuth2 access token · headerrequiredapi:readAuthorizationBearer token (JWT) · headerrequiredpagenumberpageSizenumberviewIdstringquickSearchstringfiltersstringsortstringfieldsToReturnany[]curl -X GET "https://leadtime.app/api/public/organizations" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"const response = await fetch("https://leadtime.app/api/public/organizations", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.get(
"https://leadtime.app/api/public/organizations",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)