Get basic information about the operator
/operator/information
This endpoint returns basic information about the MaaS provider.
HTTP Request
`GET https://platform.tier-services.io/data-sharing/tier_utrecht/tomp/operator/information
curl --location --request GET 'https://platform.tier-services.io/data-sharing/tier_utrecht/tomp/operator/information' \
-H 'x-api-key: API_KEY' \
-H 'maas-id: 1324A-DFB3482-32ACD' \
-H 'api-version: 1.3.0' \
-H 'Accept-Language: en'
Click to expand JSON data response
{
"systemId": "tier",
"language": [
"en"
],
"name": "TIER",
"timezone": "UTC",
"typeOfSystem": "VIRTUAL_STATION_BASED",
"url": "https://platform.tier-services.io/data-sharing/tier_utrecht/tomp",
"assetClasses": [
"MOPED",
"BICYCLE"
],
"storeUriAndroid": "https://97uq.adj.st?adjust_t=wumq8m4&adjust_deeplink=tier%3A%2F%2Fopen%3Fattribution%3DGBFSGeneric",
"storeUriIOS": "https://97uq.adj.st?adjust_t=wumq8m4&adjust_deeplink=tier%3A%2F%2Fopen%3Fattribution%3DGBFSGeneric"
}
Get all implemented endpoints
/operator/meta
This endpoint returns all the implemented endpoints that is defined in the TOMP-API specification.
HTTP Request
GET https://platform.tier-services.io/data-sharing/tier_utrecht/tomp/operator/meta
curl --location --request GET 'https://platform.tier-services.io/data-sharing/tier_utrecht/tomp/operator/meta' \
-H 'x-api-key: API_KEY' \
-H 'maas-id: 1324A-DFB3482-32ACD' \
-H 'api-version: 1.3.0' \
-H 'Accept-Language: en'
Click to expand JSON data response
[
{
"version": "1.3.0",
"baseUrl": "https://platform.tier-services.io/data-sharing/tier_london/tomp",
"endpoints": [
{
"method": "GET",
"path": "/operator/meta",
"status": "IMPLEMENTED"
},
{
"method": "GET",
"path": "/operator/available-assets",
"status": "IMPLEMENTED"
},
{
"method": "POST",
"path": "/plannings",
"status": "IMPLEMENTED"
},
{
"method": "POST",
"path": "/bookings",
"status": "IMPLEMENTED"
},
{
"method": "POST",
"path": "/bookings/:id/events",
"status": "IMPLEMENTED"
},
{
"method": "GET",
"path": "/operator/stations",
"status": "IMPLEMENTED"
},
{
"method": "GET",
"path": "/operator/regions",
"status": "IMPLEMENTED"
},
{
"method": "GET",
"path": "/operator/information",
"status": "IMPLEMENTED"
},
{
"method": "GET",
"path": "/operator/pricing-plans",
"status": "IMPLEMENTED"
},
{
"method": "POST",
"path": "/legs/:id/events",
"status": "IMPLEMENTED"
},
{
"method": "GET",
"path": "/payment/journal-entry",
"status": "IMPLEMENTED"
}
],
"scenarios": [],
"processIdentifiers": {
"planning": [
"ASSET_BASED",
"QR_SCAN"
],
"booking": [],
"general": [],
"operatorInformation": [
"DEFAULT"
],
"support": [],
"payment": [],
"tripExecution": []
}
}
]