Welcome to the official documentation for Telme Public APIs. This repository serves as a central place for developers and partners to explore the available API endpoints, understand how to authenticate, and learn how to integrate with Telmeβs digital ecosystem.
Telme is a comprehensive platform for managing field service operations, mobile workforce, logistics, and customer interactions. Our system helps companies streamline daily operations by digitizing job planning, documentation, reporting, and communication.
This GitHub repository contains:
- Full API specifications in Markdown
- Example requests/responses in JSON
- Schema definitions (where applicable)
- API changelog
- PDF versions for download
All Telme public APIs are RESTful and return data in JSON format.
https://api.telme.se/v1/
Most APIs require an active session token obtained from a successful login request. Refer to the Authentication.md file for details.
GET /job?session=abc123&job_no=1001
{
"job": {
"job_no": 1001,
"title": "Maintenance Visit",
"status": "OPEN",
...
}
}If you have any questions, want to report bugs, or request new API features:
- π§ Email: [email protected]
- π Website: www.telme.se
- π License: See
LICENSE.mdfor terms of use
If you are a partner or 3rd party developer looking to contribute to or extend Telmeβs APIs, please contact our developer relations team for onboarding.
- All API calls must be made over HTTPS.
- Please respect rate limiting policies.
- Never share your session tokens publicly.
Made with β€οΈ by the Telme Engineering Team
Telme public documentation