Use OData V4 API to integrate with corporate systems, connect BI systems using the Reporting API.
Timetta implements OData v4 API for integration with other systems.
The Open Data Protocol (OData) is an open web protocol for querying and modifying data. The protocol allows to perform operations with resources using HTTP requests and exchange data in JSON format.
OData is one of the best standards for building RESTful APIs.
Reading data:
Data modification:
[GET] /OData/Projects?$select=name,code&$expand=manager($select=name)
[
{
"name": "Shopping center design",
"code": "SUP-02-2021",
"manager": {
"name": "Max Fry"
}
},
{
"name": "CRM Deployment",
"code": "IMP-01-2021",
"manager": {
"name": "Max Fry"
}
},
{
"name": "ERP Finance Module - Deployment",
"code": "IMP-03-2021",
"manager": {
"name": "Max Fry"
}
}
]
Timetta supports the secure OAuth 2.0 authorization protocol: