The following file may be used as example for requesting the FT API via Postman. Please note that you need the credentials to do so.
Web service WSAPIMrvData
{ "info": { "_postman_id": "396c40f6-3e1b-4c30-8161-2a4b4d025cc9", "name": "MRV/UKMRV/IMODCS", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { "name": "Anna - EU MRV Data", "request": { "auth": { "type": "noauth" }, "method": "VIEW", "header": [ { "key": "Content-Type", "name": "Content-Type", "value": "application/x-www-form-urlencoded", "type": "text" } ], "body": { "mode": "raw", "raw": "<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\"> <s:Body xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"> <GetMrvDataByYear> <body> <apiIdentifier> <companyGuid>XXX</companyGuid> <clientGuid>XXX</clientGuid> </apiIdentifier> <year>2022</year> <imoNumbers>911223341</imoNumbers> </body> </GetMrvDataByYear> </s:Body> </s:Envelope>" }, "url": { "raw": "https://my.fleettracker.de/api/1.0/WSAPIMrvData.php", "protocol": "https", "host": [ "my", "fleettracker", "de" ], "path": [ "api", "1.0", "WSAPIMrvData.php" ] } }, "response": [] }, { "name": "Berta - UK MRV Data", "request": { "auth": { "type": "noauth" }, "method": "VIEW", "header": [ { "key": "Content-Type", "name": "Content-Type", "value": "application/x-www-form-urlencoded", "type": "text" } ], "body": { "mode": "raw", "raw": "<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\"> <s:Body xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"> <GetMrvDataByYear> <body> <apiIdentifier> <companyGuid>XXX</companyGuid> <clientGuid>XXX</clientGuid> </apiIdentifier> <year>2022</year> <imoNumbers>911223344</imoNumbers> </body> </GetMrvDataByYear> </s:Body> </s:Envelope>" }, "url": { "raw": "https://my.fleettracker.de/api/1.0/WSAPIMrvUKData.php", "protocol": "https", "host": [ "my", "fleettracker", "de" ], "path": [ "api", "1.0", "WSAPIMrvUKData.php" ] } }, "response": [] }, { "name": "Carla - IMO DCS", "request": { "auth": { "type": "noauth" }, "method": "VIEW", "header": [ { "key": "Content-Type", "name": "Content-Type", "value": "application/x-www-form-urlencoded", "type": "text" } ], "body": { "mode": "raw", "raw": "<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\"> <s:Body xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"> <GetImoDcsDataByYear> <body> <apiIdentifier> <companyGuid>XXX</companyGuid> <clientGuid>XXX</clientGuid> </apiIdentifier> <year>2022</year> <imoNumbers>911223345</imoNumbers> </body> </GetImoDcsDataByYear> </s:Body> </s:Envelope>" }, "url": { "raw": "http://my.fleettracker.de/api/1.0/WSAPIImoDcsData.php", "protocol": "http", "host": [ "my", "fleettracker", "de" ], "path": [ "api", "1.0", "WSAPIImoDcsData.php" ] } }, "response": [] } ] }
Web service WSAPIFormData
To request form data like noon reports, you can first get a list of available forms and then request the form contents. The following Postman collection shows an example:
{
"info": {
"_postman_id": "402391e1-63a3-4bf1-80b6-a07d469b66fb",
"name": "MRV/UKMRV/IMODCS Held Shipping - Noon Reports",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "5707726"
},
"item": [
{
"name": "Noon Report List",
"request": {
"auth": {
"type": "noauth"
},
"method": "VIEW",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\"><s:Body xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"><GetFormDataInfoList><body><apiIdentifier><companyGuid>xxx</companyGuid><clientGuid>xxx</clientGuid></apiIdentifier><timeFrameRequestFilter><startDate>2022-01-01T00:00:00</startDate>2023-01-01T00:00:00<endDate></endDate></timeFrameRequestFilter><ffFolderTemplateTypeTag>PERFORMANCEREPORT</ffFolderTemplateTypeTag></body></GetFormDataInfoList></s:Body></s:Envelope>"
},
"url": {
"raw": "https://my.fleettracker.de/api/1.0/WSAPIFormData.php",
"protocol": "https",
"host": [
"my",
"fleettracker",
"de"
],
"path": [
"api",
"1.0",
"WSAPIFormData.php"
]
}
},
"response": []
},
{
"name": "Noon Report Contents",
"request": {
"auth": {
"type": "noauth"
},
"method": "VIEW",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\"><s:Body xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"><GetFormDataInfoList><body><apiIdentifier><companyGuid>xxx</companyGuid><clientGuid>xxx</clientGuid></apiIdentifier><timeFrameRequestFilter><startDate>2022-01-01T00:00:00</startDate>2023-01-01T00:00:00<endDate></endDate></timeFrameRequestFilter><ffFolderTemplateTypeTag>PERFORMANCEREPORT</ffFolderTemplateTypeTag></body></GetFormDataInfoList></s:Body></s:Envelope>"
},
"url": {
"raw": "https://my.fleettracker.de/api/1.0/WSAPIFormData.php",
"protocol": "https",
"host": [
"my",
"fleettracker",
"de"
],
"path": [
"api",
"1.0",
"WSAPIFormData.php"
]
}
},
"response": []
}
]
}