Production API description
https://time.nepton.com/WebService.php?WSDL
Please also ensure that the necessary IP addresses are opened. Instructions here.
Maximum POST request data size to worktime API is 128 MB.
The Worktime API provides external systems access to certain features of Worktime. Guidance for individual topics is provided in the following articles:
- Authentication in Worktime API
- Events API
- Projects API
- Accruals API
- Worktime Integrations API
- Terminal Services API
- Response codes of Worktime API
Please note that:
- The sent XML has to be valid XML
- Used character encoding is UTF-8
The best way to ensure the validity of XML is to use a SOAP library to handle requests and responses. For example SoapClient in PHP and WCF Web Service Reference in .NET are viable options.
If you are generating XML without the help of an XML library, you need to keep in mind that the following characters need to be represented as entities:
Character | Entity |
---|---|
& |
& |
< |
< |
> |
> |
If you want to represent project name "Project & other work" in XML, it should be done the following way:
<Name>Project & other work</Name>