Version 4.0.0 of project44's API
Version 4.0.0 of project44's API
API used for registering and managing OAuth 2.0 client applications. See the "Authentication" section above for more information. To authorize API requests to project44 for an API integration, first your client application must be registered with project44, which will issue your application a client id and secret. These credentials can then be used to generate bearer tokens, which can be included on all other API requests to authorize your client application. The client application is authorized through the project44 user management UI as a machine user with username "app-{client_id}@client-applications.project44.com".
An admin user (with VOC user role "Customer Admin") must use HTTP Basic Authentication with this API to manage client applications. Basic Authentication is deprecated for all other APIs, besides token generation, in favor of passing the access token generated via OAuth 2.0.
API for OAuth 2.0 token generation. See the "Authentication" section above for more information. Once your client application is registered, you can use the token generation endpoint to authenticate with your application's client id and secret in exchange for a bearer token to be included on all other API requests to authenticate as that client application. The client application is authorized through the project44 user management UI as a machine user with username "app-{client_id}@client-applications.project44.com".
To generate an access token, you may authenticate your client application by providing its client id and secret either in the body of the request or in the form of HTTP Basic Authentication (but you may not use both ways in the same request).
project44's Truckload Tracking endpoints give you or your customers visibility into your truckload shipments, including such features as predictive ETAs and temperature tracking. Use these endpoints to initialize (POST), track (GET), update (PUT), cancel (POST) or delete(DELETE) truckload shipments. You can return shipment information by either unique system ID or by identifier.
Track parcel shipments. Before parcel shipments can be tracked, they must first be initialized with a shipment identifier. Shipments cannot be modified once initialized and tracking has begun. To stop tracking a shipment, delete it.
Use these APIs to initialize (POST), track (GET), or delete (DELETE) parcel shipments.
curl -i -X POST \ https://na12.api.project44.com/services/document/v1/documents \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Content-Type: multipart/form-data' \ -F document=string \ -F upload_file=string
Successful Response
The date and time when this document was created. This value is read only.
The date and time when this document was deleted. This value is read only.
The list of identifiers related to this document. When x-tenant-role is 'CARRIER' InternalEntityType.SHIPPER_TENANT_UUID is MANDATORY if you want to associate this Document to Shipment. InternalEntityType.SHIPPER_TENANT_UUID is number identifying Shipper in project44.
The date and time when this document was last modified. This value is read only.
{ "addedByCompany": "string", "addedByUser": "string", "createdDateTime": "2019-08-24T14:15:22Z", "deletedDateTime": "2019-08-24T14:15:22Z", "files": [ { … } ], "identifiers": [ { … } ], "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "lastModifiedDateTime": "2019-08-24T14:15:22Z", "name": "string", "type": "BILL_OF_LADING" }
curl -i -X GET \ 'https://na12.api.project44.com/services/document/v1/documents/{documentId}' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
The list of identifiers related to this document. When x-tenant-role is 'CARRIER' InternalEntityType.SHIPPER_TENANT_UUID is MANDATORY if you want to associate this Document to Shipment. InternalEntityType.SHIPPER_TENANT_UUID is number identifying Shipper in project44.
curl -i -X PUT \ 'https://na12.api.project44.com/services/document/v1/documents/{documentId}' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Content-Type: application/json' \ -d '{ "identifiers": [ { "type": "AIR_WAYBILL", "value": "string" } ], "name": "string", "type": "BILL_OF_LADING" }'
curl -i -X DELETE \ 'https://na12.api.project44.com/services/document/v1/documents/{documentId}' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
curl -i -X PATCH \ 'https://na12.api.project44.com/services/document/v1/documents/{documentId}' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Content-Type: application/json' \ -d '{ "identifiers": [ { "type": "AIR_WAYBILL", "value": "string" } ], "name": "string", "type": "BILL_OF_LADING" }'