Added new Approved Carrier status which is designed for shippers who want to monitor carrier compliance on their own.
Please, see the API reference how to get the list of Approved carriers.
API reference how to mark a carrier as Approved.
Please, read an article on Approved carriers.
The approved
carrier object comes with the following properties:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| ...
{
"status": "success",
"data": {
"object": {
"guid": "string",
"usdot_number": "123456",
"approved": true,
"approved_since": "2019-11-15T10:33:29.112+0000",
"preferred": false,
"preferred_since": null,
"in_blacklist": false,
"in_blacklist_since": null,
"insurance_certificate_holder": false,
"insurance_certificate_holder_since": null,
"insurance_cert_holder_file_url": null,
"insurance_expires_at": null,
"custom_external_id": "CARRIER-0098"
}
}
}
...
|