Transflo Velocity Plus API

-
Navigate to the following URL:
-
Select Transflo Velocity Plus Broker Endpoints in the drop-down menu.
-
Click Explore.
-
Expand each group to see the endpoints related to that tag.

In order to use the Integration WebService API (IntWS) you must first contact Transflo.
Call: 813-386-2378 or open a new help ticket...
Once you have been configured, you will receive a Velocity Plus Command Center API authorization token. This token will need to be provided in the header of each call you make to the service.
Velocity Plus API Authorization Token Examples
The examples below use the following test token:
"dGVzdDp0QkJEQ2c2S09uT0hsamIwaGYzRnhRPT0="
cURL
curl -X POST \ http://webapp.transflodev.com/svc2.transflomobile.com/integration/api/broker/v1/TESTDIVID/carriers/upload
H 'Authorization: Basic dGVzdDp0QkJEQ2c2S09uT0hsamIwaGYzRnhRPT0=' \
H 'Postman-Token: 30cc4bae-5973-40eb-82b6-afa5b241372e' \
H 'cache-control: no-cache'
C#
var client = new RestClient("http://webapp.transflodev.com/svc2.transflomobile.com/integration/api/broker/v1/TESTDIVID/carriers/upload");
var request = new RestRequest(Method.POST);
request.AddHeader("Postman-Token", "4fea26f0-7ec1-4a64-995c-5e0658389b95"); request.AddHeader("cache-control", "no-cache");
request.AddHeader("Authorization", "Basic YWFhYWFhOnlGOUIrdlFGcUJyOU43TnFFK1BUQXc9PQ=="); IRestResponse response = client.Execute(request);
JavaScript
var settings = { "async": true,
"crossDomain": true, "url":
"http://webapp.transflodev.com/svc2.transflomobile.com/integration/api/broker/v1/TESTDIVID/carriers/upload ", "method": "POST",
"headers": {
"Authorization": "Basic YWFhYWFhOnlGOUIrdlFGcUJyOU43TnFFK1BUQXc9PQ==", "cache-control": "no-cache",
"Postman-Token": "5d1691b1-d4a3-4a9c-bdec-1526083bf690"
}
}
$.ajax(settings).done(function (response) { console.log(response);
});

Driver Scanned Documents
Document Delivery Method: Carrier Retrieval Service
Separate instruction manual to install Carrier Retrieval Service for Brokers.
Invoice Package
Document Delivery Method: Carrier Retrieval Service
Separate instruction manual to install Carrier Retrieval Service for Brokers.
Metadata in the Invoice package contains the following info:
{ "LoadId", loadSummary.Id.ToString() },
{ "ServiceType", "VI" },
{ "InvoiceNumber", invoice.InvoiceNumber },
{ "InvoiceId", invoice.InvoiceId.To<string>()},
{ "InvoiceAmount", invoiceAmount.ToString("c2") }