Download OpenAPI specification:Download
To begin working with the Navix API, you'll need the following. Your Navix customer success manager will provide you with these details:
Every API request should include an X-Tenant-Uuid
header that contains your Tenant UUID and an X-Api-Key
header containing your API key.
Our APIs are generally broken into three categories:
⚠️ Provisional Endpoints Support
Do not use provisional endpoints unless you've been explicitly authorized to use them by your Navix account team. Outside of authorized, tenant-specific use cases, we will not provide support for these endpoints, and their use could have unintended side effects.
Note that additive changes to an endpoint are not considered breaking. For instance, adding a new property to an endpoint isn't considered breaking, since the API consumer should ignore unknown properties by default. Likewise, it's important for API consumers not to send any data that isn't documented here. Although we ignore unrecognized fields, sending an unsupported property could cause a conflict if we later add a new property with that name.
Note that some of our API endpoints operate asynchronously and may not be instantaneous. There are a number of reasons for this. Usually, these operations end up in a queue, providing greater resiliency. Sometimes, there's a multiple step workflow that takes a bit of time to run. Either way, we want our endpoint to validate the request and quickly return a response indicating if there are any errors.
Following RESTful best practices, our asynchronous endpoints return a 202 Accepted
response, rather than a 200 OK
. For instance, when creating an order (with POST /v2/orders
), several validations are run; if any of them fail, a 400 Bad Request
is returned with additional detail on which validations failed. If the POSTed data is valid, a 202 Accepted
is returned, which indicates the order will be added to our queue of orders to import. The order may not immediately appear within other API requests or within the UI. Usually, these asynchronous operations run within seconds; occasionally, such as during usage spikes, it may take longer.
Below are some terms (in bold) that have specific meaning in Navix, listed with some synonyms commonly used in the industry.
Some additional terms used in this document:
The primary consumers of this API are tenant's TMS integrations (or the TMS itself). Throughout this section, we refer to "TMS" (Transportation Management System) -- but this could be any consumer of the Navix API.
Navix's API is flexible, and there are multiple ways a TMS can integrate with it. This section focuses on the most common scenarios.
A simple TMS integration has two integration points with Navix:
A more complex integration may have several integration points with Navix:
It's worth noting that there may be data (usually invoices and supporting documents) that are being sent to Navix without going through the TMS. For instance, vendors (carriers) may be sending EDI 210 documents directly to Navix. Vendors may also be sending invoices and supporting documents via email.
Returns the raw binary file of a document associated with an invoice. The Content-Type
header will contain the MIME type of the file, such as application/pdf
. The
Content-Disposition
header will contain the original name of the file (such as the filename in the email that was sent to Navix).
This is intended to be used after a call to the "Get Audit Result" endpoint. The UUIDs for documents can be found in the returned payload from "Get Audit Results", under
orders.documents
.
tenantUuid required | string <uuid> The UUID of the tenant who owns the vendor invoices |
vendorInvoiceUuid required | string <uuid> The UUID of the vendor invoice who owns the document |
documentUuid required | string <uuid> The UUID of the vendor invoice document |
Get the results of an audit of a single invoice. This endpoint has been deprecated. A newer version is listed under 'API V2'.
tenantUuid required | string <uuid> |
vendorInvoiceUuid required | string <uuid> |
object (Invoice.Models.Integrations.InvoiceAuditResultDetails) | |
Array of objects or null (Invoice.Models.Integrations.InvoiceAuditResultOrder) |
{- "invoiceDetails": {
- "source": "string",
- "number": "string",
- "associatedOrderLineItems": true,
- "invoiceDate": "2019-08-24",
- "totalVendorPaymentAmount": 0.1,
- "currencyCode": "string",
- "createdDate": "2019-08-24",
- "approvedDate": "2019-08-24",
- "approverEmail": "string",
- "terminatedReason": "string",
- "terminatedMessage": "string",
- "lineItems": [
- {
- "orderLineItemId": "string",
- "description": "string",
- "weight": 0.1,
- "weightUnit": "string",
- "class": 0.1,
- "nmfcCode": "string",
- "totalPieces": 0,
- "handlingUnitCount": 0
}
], - "invoiceReferenceNumbers": [
- {
- "type": "string",
- "number": "string"
}
], - "vendor": {
- "scacCode": "string",
- "externalId": "string",
- "description": "string"
}
}, - "orders": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "orderNumber": "string",
- "vendorCharges": [
- {
- "charge": 0.1,
- "type": "string",
- "typeUuid": "6a87f189-a468-4e1e-8312-64f7db98dbc9",
- "code": "string",
- "description": "string",
- "reason": "string"
}
], - "customerCharges": [
- {
- "charge": 0.1,
- "type": "string",
- "typeUuid": "6a87f189-a468-4e1e-8312-64f7db98dbc9",
- "code": "string",
- "description": "string",
- "reason": "string"
}
], - "documents": [
- {
- "type": "string",
- "standardizedType": "Invoice",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "name": "string",
- "isRedacted": true,
- "redactedDocumentUuid": "6e16270a-f343-40a5-95b2-1e067b13bc84",
- "hasSignature": true,
- "modifiedDate": "2019-08-24",
- "modifiedBy": "string"
}
], - "orderReferenceNumbers": [
- {
- "type": "string",
- "number": "string"
}
], - "freightChargeTerms": "string",
- "vendorExternalId": "string",
- "customerExternalId": "string"
}
]
}
Retrieves a paginated list containing the unique identifier (UUID) of each of the vendor invoices finalized between the specified StartTime
and EndTime
. This
endpoint is intended to be polled on a regular basis.
tenantUuid required | string <uuid> The UUID of the tenant who owns the finalized Vendor Invoices |
StartTime required | string <date-time> Start time range to find Vendor Invoices which have finalized after this start time. This start time is exclusive. Start time time zone is interpreted as UTC. |
EndTime | string <date-time> End time range to find Vendor Invoices which have finalized before this start time. This start time is inclusive. Default: Present time. End time time zone is interpreted as UTC. |
SortOrder | string Sort order applied to the finalization time. Values: ASC, DESC. Default value is DESC |
PageSize | integer <int32> Number of records per page. Default value is 20, maximum value is 100 |
PageNumber | integer <int32> Page index of the records to return. First page and default value is 0 |
ResultsDelivered | boolean Flag filter to return only Finalized Invoices which have been delivered or not. If this flag is not set, then the filter is not applied. Values: true, false, Null. Default value is Null |
currentPage | integer <int32> |
totalPages | integer <int32> |
pageSize | integer <int32> |
totalRecords | integer <int32> |
Array of objects or null (Invoice.Models.Responses.FinalizedInvoiceResponse) |
{- "currentPage": 0,
- "totalPages": 0,
- "pageSize": 0,
- "totalRecords": 0,
- "records": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "status": "string",
- "finalizationDate": "2019-08-24T14:15:22Z",
- "source": "string"
}
]
}
This endpoint terminates an invoice. Once an invoice is terminated, it can no longer be audited or approved.
tenantUuid required | string <uuid> The UUID of the tenant who owns the Vendor Invoices |
invoiceUuid required | string <uuid> The UUID of the Vendor Invoice |
version required | string |
{- "type": "string",
- "title": "string",
- "status": 0,
- "detail": "string",
- "instance": "string",
- "errors": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "property1": null,
- "property2": null
}
This endpoint is deprecated. Use the "Create an Order" endpoint listed under "API V2" instead.
This endpoint will always create a new composite order - it is not idempotent. If an existing Order with the same Order Number is found, it will be replaced with the new one. In the case the existing order is matched to an invoice, it will also be replaced, given that the invoice has not been approved yet.
The enableValidations
property on the request body is used to determine whether or not to perform validations on the order. If validations are performed, any bad data will result in an error being returned; if validation are disabled, just about any data will be accepted. The validated fields include:
tenantUuid required | string <uuid> The UUID of the tenant who owns the composite order |
orderNumber | string or null The unique identifier for the Order (i.e, "Load Number", "Shipment Number"). This value should be the commonly known identifier for the order that is shared with Vendors (i.e., "Carrier"). |
transportationMode | string or null The mode for the order. This field is required if validations are enabled. Possible values are:
|
transportationServiceLevel | string or null The service level for the order. This field is required if validations are enabled. Possible values are:
|
transportationServiceType | string or null The service type for the order. Possible values if validations are enabled or it can be undefined:
|
currency | string or null The currency for the order. Defaults to USD. Possible values are:
|
freightChargeTerms | string or null The freight charge terms for the order. This field is required if validations are enabled. Possible values are:
|
plannedShipmentWeight | number or null <double> |
actualShipmentWeight | number or null <double> |
cubicMeter | number or null <double> |
shipDate | string or null <date-time> |
deliveredDate | string or null <date-time> |
deliverTime | string or null |
customerCharge | number or null <double> |
billingTerm | string or null The billing term for the order. This field is required if validations are enabled. Possible values are:
|
paymentTerms | string or null |
distance | number or null <double> |
metadata | string or null |
ratingEngineInfo | string or null Rating Engine information used by the Navix Rating Engine Integration. This field is optional and should be a list of key value pairs as json.
Here are some predefined pairs: |
uuid | string or null <uuid> |
enableValidations | boolean If set to true, the order will be validated before being created, and an error will be returned if any validations fail. |
object (Vendor.Models.Requests.Integrations.VendorRequest) | |
object (Customer.Api.Models.Requests.Integrations.CustomerRequest) | |
division | string or null A tenant's arbitrary way to segment the order amongst multiple orders. Ex. values could be names of different departments at the tenant, or names of different teams |
Array of objects or null (Order.Models.Integrations.OrderCompositeStopRequest) | |
Array of objects or null (Order.Models.Integrations.OrderCompositeReferenceNumberRequest) | |
Array of objects or null (Order.Models.Integrations.OrderCompositeLineItemRequest) | |
Array of objects or null (Order.Models.Integrations.OrderCompositeChargeRequest) Deprecated Deprecated. Replaced by VendorCharges | |
Array of objects or null (Order.Models.Integrations.OrderCompositeChargeRequest) | |
Array of objects or null (Order.Models.Integrations.OrderCompositeChargeRequest) |
{- "orderNumber": "string",
- "transportationMode": "string",
- "transportationServiceLevel": "string",
- "transportationServiceType": "string",
- "currency": "string",
- "freightChargeTerms": "string",
- "plannedShipmentWeight": 0.1,
- "actualShipmentWeight": 0.1,
- "cubicMeter": 0.1,
- "shipDate": "2019-08-24T14:15:22Z",
- "deliveredDate": "2019-08-24T14:15:22Z",
- "deliverTime": "0.00:00:00",
- "customerCharge": 0.1,
- "billingTerm": "string",
- "paymentTerms": "string",
- "distance": 0.1,
- "metadata": "string",
- "ratingEngineInfo": "string",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "enableValidations": true,
- "vendor": {
- "externalId": "string",
- "name": "string",
- "address1": "string",
- "address2": "string",
- "city": "string",
- "zip": "string",
- "zip4": "string",
- "country": "string",
- "state": "string",
- "scacCode": "string",
- "mcNumber": "string",
- "dotNumber": "string"
}, - "customer": {
- "externalId": "string",
- "description": "string",
- "currencyId": "string",
- "billingTermId": "string",
- "addressName": "string",
- "address1": "string",
- "address2": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "zip4": "string",
- "country": "string",
- "principalContact": {
- "contactName": "string",
- "contactPhone": "string",
- "contactEmail": "string",
- "department": "string"
}
}, - "division": "string",
- "stops": [
- {
- "stopSequence": 0,
- "orderStopType": "string",
- "addressName": "string",
- "address1": "string",
- "address2": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "zip4": "string",
- "country": "string",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
}
], - "referenceNumbers": [
- {
- "value": "string",
- "referenceNumberType": "BOLNumber",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
}
], - "lineItems": [
- {
- "description": "string",
- "sequenceNum": "string",
- "handlingUnit": "string",
- "handlingUnitCount": 0,
- "totalPieces": 0,
- "weight": 0.1,
- "weightUnit": "string",
- "class": 0.1,
- "nmfcCode": "string",
- "length": 0.1,
- "width": 0.1,
- "height": 0.1,
- "dimUnits": "string",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
}
], - "charges": [
- {
- "chargeType": "string",
- "chargeTypeUuid": "7c73f8a6-e89b-4447-bee3-5ca4f77dd6b4",
- "currencyId": 0,
- "currency": "string",
- "charge": 0.1,
- "metaData": "string",
- "vendorId": 0,
- "code": "string",
- "description": "string",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
}
], - "customerCharges": [
- {
- "chargeType": "string",
- "chargeTypeUuid": "7c73f8a6-e89b-4447-bee3-5ca4f77dd6b4",
- "currencyId": 0,
- "currency": "string",
- "charge": 0.1,
- "metaData": "string",
- "vendorId": 0,
- "code": "string",
- "description": "string",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
}
], - "vendorCharges": [
- {
- "chargeType": "string",
- "chargeTypeUuid": "7c73f8a6-e89b-4447-bee3-5ca4f77dd6b4",
- "currencyId": 0,
- "currency": "string",
- "charge": 0.1,
- "metaData": "string",
- "vendorId": 0,
- "code": "string",
- "description": "string",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
}
]
}
"string"
This returns the complete list of disputes on a single invoice. It's assumed that the total number of disputes is relatively small, so there's no paging, filtering, etc. Note that communications are not included, those must be retrieved separately.
Note that the list is returned in an undefined order.
A dispute is associated with a single party. However, there may be multiple reasons for a single dispute, and they may be created or resolved at different times.
invoiceUuid required | string <uuid> (Required) The UUID of the invoice. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
uuid | string <uuid> The unique identifier of the dispute |
eTag | string A concurrency key for the dispute. When mutating a dispute, the request will be rejected as a 409 Conflict if the eTag doesn't match the current eTag value for the dispute |
createdAt | string <date-time> The date on which the dispute was created |
resolvedAt | string <date-time> The date on which the dispute was resolved. The dispute is considered resolved when all dispute reasons have been resolved. This is null on an active (unresolved) dispute |
party | string Enum: "Vendor" "Tenant" "Customer" The party to which the dispute applies |
Array of objects (disputeReasonResponse) The reasons for the dispute. Note that a single dispute may have multiple reasons |
[- {
- "Uuid": "35391636-5091-4722-b8d9-8d67993287b1",
- "ETag": null,
- "CreatedAt": "2025-03-21T20:29:33.1296262Z",
- "ResolvedAt": "2025-03-25T20:29:33.1296286Z",
- "Party": "Tenant",
- "Reasons": [
- {
- "Description": "Approval Required",
- "CreatedAt": "2025-03-21T20:29:33.1296301Z",
- "ResolvedAt": "2025-03-25T20:29:33.1296308Z"
}
]
}, - {
- "Uuid": "31f84f80-9b06-47b2-98b3-03e8a6aa4605",
- "ETag": null,
- "CreatedAt": "2025-03-21T20:29:33.1296323Z",
- "ResolvedAt": "2025-03-25T20:29:33.1296324Z",
- "Party": "Vendor",
- "Reasons": [
- {
- "Description": "Accessorial Waived",
- "CreatedAt": "2025-03-21T20:29:33.1296326Z",
- "ResolvedAt": "2025-03-25T20:29:33.1296327Z"
}
]
}
]
This returns a single dispute on a single invoice. Note that communications are not included, those must be retrieved separately.
invoiceUuid required | string <uuid> (Required) The UUID of the invoice. |
disputeUuid required | string <uuid> (Required) The UUID of the dispute. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
uuid | string <uuid> The unique identifier of the dispute |
eTag | string A concurrency key for the dispute. When mutating a dispute, the request will be rejected as a 409 Conflict if the eTag doesn't match the current eTag value for the dispute |
createdAt | string <date-time> The date on which the dispute was created |
resolvedAt | string <date-time> The date on which the dispute was resolved. The dispute is considered resolved when all dispute reasons have been resolved. This is null on an active (unresolved) dispute |
party | string Enum: "Vendor" "Tenant" "Customer" The party to which the dispute applies |
Array of objects (disputeReasonResponse) The reasons for the dispute. Note that a single dispute may have multiple reasons |
{- "Uuid": "b7efb25b-3f24-44a5-966c-58ecc91586cc",
- "ETag": null,
- "CreatedAt": "2025-03-21T20:29:33.2304005Z",
- "ResolvedAt": "2025-03-25T20:29:33.2304025Z",
- "Party": "Tenant",
- "Reasons": [
- {
- "Description": "Approval Required",
- "CreatedAt": "2025-03-21T20:29:33.2304035Z",
- "ResolvedAt": "2025-03-25T20:29:33.2304039Z"
}
]
}
This returns a single attachment file for the given communication.
invoiceUuid required | string <uuid> (Required) The UUID of the invoice. |
disputeUuid required | string <uuid> (Required) The UUID of the dispute. |
communicationUuid required | string <uuid> (Required) The UUID of the communication. |
identifier required | string (Required) The identifier should be the name of the attachment. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
Content-Disposition | string Specifies the presentation and file type of the response content. |
Content-Type | string Specifies the MIME type of the response content. |
This returns the complete list of communications associated with a dispute.
If a communication was an email, it'll contain an email
property that includes email-specific fields. If the email
property isn't present, it indicates the communication was internal to the Navix app and wasn't emailed.
Note that the list is returned in an undefined order.
invoiceUuid required | string <uuid> (Required) The UUID of the invoice. |
disputeUuid required | string <uuid> (Required) The UUID of the dispute. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
uuid | string <uuid> The unique identifier of the communication |
createdAt | string <date-time> The date on which the communication was created |
text | string The text of the communication. If it was an email, this is the email body |
object (communicationEmailResponse) If the communication was an email, this is the email-specific parts of the communication; otherwise this is null | |
Array of objects (communicationAttachmentResponse) A list of attachments on the communication |
[- {
- "Uuid": "a4376db0-64a9-4a33-9a2c-a7858887f3e4",
- "CreatedAt": "2025-03-21T20:29:33.1488111Z",
- "Text": "Weight on order did not match invoice, please provide a Weight Certificate or Inspection Certificate for L12345",
- "Email": {
- "Subject": "Required Documentation Missing | Load L12345"
}, - "Attachments": [ ]
}, - {
- "Uuid": "ca5e0326-1f5b-4a54-a605-379ae2004246",
- "CreatedAt": "2025-03-22T20:29:33.1488164Z",
- "Text": "Please see the attached weight certificate for L12345",
- "Email": {
- "Subject": "Weight Certificate Attached"
}, - "Attachments": [
- {
- "Identifier": "687ee6ed-2757-4af1-ae85-57488e074e20"
}
]
}
]
This creates a communication on a dispute.
If prior communications on the dispute have generated emails, then this endpoint will send out a corresponding email for the created communication.
invoiceUuid required | string <uuid> (Required) The UUID of the invoice. |
disputeUuid required | string <uuid> (Required) The UUID of the dispute. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
(Required) The communication to create.
text | string The text of the communication. If the dispute generates emails, this will be the body of the emails |
subject | string The subject of the communication. If the dispute generates emails, this will be the subject of the emails |
uuid | string <uuid> The unique identifier for the communication |
{- "text": "string",
- "subject": "string"
}
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
}
Get the results of an audit of a single invoice.
This is intended to be called after either:
INVOICE_APPROVED
webhook callbackNote that this endpoint will return audit results for any finalized invoice, whether approved or terminated, but will return a 404 for any invoices that are still being audited.
tenantUuid required | string <uuid> |
vendorInvoiceUuid required | string <uuid> |
object (Invoice.Models.Integrations.InvoiceAuditResultDetailsV2) | |
Array of objects or null (Invoice.Models.Integrations.InvoiceAuditResultOrderV2) Additional information about the order/load |
{- "invoiceDetails": {
- "source": "Manual",
- "number": "123457",
- "associatedOrderLineItems": true,
- "invoiceDate": "2019-08-24",
- "totalVendorPaymentAmount": 100.3,
- "currencyCode": "USD",
- "createdDate": "2019-08-24",
- "approvedDate": "2019-08-24",
- "terminatedReason": "Not My Bill",
- "terminatedMessage": "string",
- "receivedDate": "2019-08-24",
- "tags": {
- "property1": null,
- "property2": null
}, - "lineItems": [
- {
- "orderLineItemId": "1",
- "description": "Widget",
- "weight": 50.5,
- "weightUnit": "LBS",
- "class": 55,
- "nmfcCode": "123456",
- "totalPieces": 1,
- "handlingUnitCount": 1
}
], - "invoiceReferenceNumbers": [
- {
- "type": "ShipmentNumber",
- "number": "SHIP-123456"
}
], - "vendor": {
- "scacCode": "ABCD",
- "externalId": "ATRUCK101",
- "description": "A Plus Trucking"
}
}, - "orders": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "orderNumber": "ORD-12345",
- "vendorCharges": [
- {
- "charge": 100.3,
- "type": "Base Rate",
- "typeUuid": "6a87f189-a468-4e1e-8312-64f7db98dbc9",
- "code": "LHS",
- "description": "Linehaul Surcharge",
- "reason": "string"
}
], - "customerCharges": [
- {
- "charge": 200.3,
- "type": "FSC",
- "typeUuid": "6a87f189-a468-4e1e-8312-64f7db98dbc9",
- "code": "Fuel",
- "description": "Fuel Surcharge",
- "reason": "string"
}
], - "documents": [
- {
- "type": "Invoice",
- "standardizedType": "Invoice",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "submittedName": "Invoice file name",
- "name": "Invoice file name",
- "isRedacted": true,
- "redactedDocumentUuid": "6e16270a-f343-40a5-95b2-1e067b13bc84",
- "hasSignature": true,
- "modifiedDate": "2019-08-24",
- "modifiedBy": "John Doe"
}
], - "orderReferenceNumbers": [
- {
- "type": "ShipmentNumber",
- "number": "SHIP-123456"
}
], - "freightChargeTerms": "Collect",
- "vendorExternalId": "ATRUCK101",
- "customerExternalId": "CUST123",
- "metadata": {
- "AnyValue": {
- "ForInstanceATrackingNumber": "123-789",
- "OrAnything": "2024-10-14"
}, - "SomeOtherValue": {
- "Sample1": "Value1"
}
}
}
]
}
This creates a new order.
The endpoint validates the order, and returns a 400 if there's any invalid data being passed. A 202 response indicates the message has been durably stored and entered a highly-resilient workflow, and API consumers can assume the order will be successfully ingested.
X-Idempotency-Key | string (Optional) Provide an X-Idempotency-Key to safely retry the request without accidentally performing the same operation twice. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
(Required) The Order to create.
orderNumber required | string [ 0 .. 128 ] characters The unique identifier for the Order |
externalId | string [ 0 .. 255 ] characters Default: "OrderNumber" The external id of the order. If not provided will default to the order number provided |
shipDate required | string <date-time> non-empty The date on which the freight was shipped. Date Only |
deliveryDate | string or null <date-time> The date on which the freight was delivered. Date Only |
Array of objects or null (orderStopRequest) The list of Stops | |
Array of objects or null (orderItemRequest) The list of Items | |
required | Array of objects (orderVendorRequest) The list of Vendors. At least one is required. If multiple are provided, each externalId must appear only once. |
required | object (orderCustomerRequest) The Order Customer |
Array of objects or null (orderReferenceNumberRequest) An optional list of Reference Numbers | |
object or null Optional Order metadata, expressed as a key-value pair of key-value pairs. Note that this does not accept arbitrary JSON data, and does not support arrays. Top-level keys cannot have literal values, their children must be objects. For instance, the following is valid:
You can use any valid JSON name for the key names on both parent and child objects, except for the | |
object or null (orderTagsRequest) The Order Tags |
externalId | string The external identifier for the Order |
{- "OrderNumber": "123456-789",
- "ExternalId": "123456-789",
- "ShipDate": "2025-03-25T20:29:33.1697149Z",
- "DeliveryDate": "2025-03-26T20:29:33.1697173Z",
- "Stops": [
- {
- "Type": "Origin",
- "Sequence": 1,
- "Vendors": [
- "ATRUCK101"
], - "Address": {
- "Name": "This is where the freight is picked up from",
- "Address1": "123 Origin St",
- "Address2": "Apartment 100",
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}
}, - {
- "Type": "Destination",
- "Sequence": 2,
- "Vendors": [
- "ATRUCK101"
], - "Address": {
- "Name": "This is where the freight is delivered to",
- "Address1": "456 Destination St",
- "Address2": null,
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}
}, - {
- "Type": "Origin",
- "Sequence": 3,
- "Vendors": [
- "BTRUCK102"
], - "Address": {
- "Name": "Second segment/movement/leg where freight is picked up from by new carrier",
- "Address1": "456 Destination St",
- "Address2": null,
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}
}, - {
- "Type": "Destination",
- "Sequence": 4,
- "Vendors": [
- "BTRUCK102"
], - "Address": {
- "Name": "Second segment/movement/leg where freight is delivered to by new carrier",
- "Address1": "Final Destination Lane",
- "Address2": "Apartment 301",
- "City": "Mytown",
- "State": "PA",
- "Country": "USA",
- "PostalCode": "19876"
}
}
], - "Items": [
- {
- "Id": "1",
- "Class": 55,
- "Description": "Widget",
- "HandlingUnit": "Pallet",
- "HandlingUnitCount": 1,
- "NMFCCode": "123456",
- "TotalCount": 1,
- "Dimensions": {
- "System": "Imperial",
- "Weight": null,
- "Height": 60,
- "Length": 48,
- "Width": 40,
- "Stackable": false
}
}
], - "Vendors": [
- {
- "ExternalId": "ATRUCK101",
- "Name": "A Plus Trucking",
- "ScacCode": "ABCD",
- "McNumber": "123456",
- "DotNumber": "97865",
- "Type": "Carrier",
- "Currency": "USD",
- "ChargeTerms": "Collect",
- "PaymentTerms": "Net10",
- "BillToAddress": {
- "Name": null,
- "Address1": "123 Truck St",
- "Address2": null,
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}, - "RemitToAddress": {
- "Name": null,
- "Address1": "Factoring Company x",
- "Address2": null,
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}, - "Address": {
- "Name": null,
- "Address1": "123 Truck St",
- "Address2": null,
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}, - "Contact": {
- "Name": "Joe Smith",
- "Phone": "123-456-7890",
- "Department": "Customer Service"
}, - "Service": {
- "Mode": "Ground",
- "Type": "LTL",
- "Level": "Standard",
- "Equipment": "Flatbed"
}, - "Charges": [
- {
- "Charge": 500,
- "ItemId": null,
- "Code": {
- "Description": "Base Rate",
- "Value": "PWT"
}
}
]
}, - {
- "ExternalId": "BTRUCK102",
- "Name": "B Trucking Inc",
- "ScacCode": "EFGH",
- "McNumber": "567890",
- "DotNumber": "45678",
- "Type": "Carrier",
- "Currency": "USD",
- "ChargeTerms": "Collect",
- "PaymentTerms": "Net15",
- "BillToAddress": {
- "Name": null,
- "Address1": "345 Truck St",
- "Address2": null,
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}, - "RemitToAddress": null,
- "Address": {
- "Name": null,
- "Address1": "345 Truck St",
- "Address2": null,
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}, - "Contact": {
- "Name": "Kurt Vite",
- "Phone": "444-222-9384",
- "Department": "Customer Service"
}, - "Service": {
- "Mode": "Ground",
- "Type": "LTL",
- "Level": "Standard",
- "Equipment": "Flatbed"
}, - "Charges": [
- {
- "Charge": 300,
- "ItemId": null,
- "Code": {
- "Description": "Base Rate",
- "Value": "BLC"
}
}
]
}
], - "Customer": {
- "ExternalId": "CUST123",
- "Name": "Acme Corp",
- "BillingTerms": "Net20",
- "Currency": "USD",
- "Contact": {
- "Name": "John Smith",
- "Phone": "123-456-7890",
- "Department": "Accounts Payable"
}, - "Charges": [
- {
- "Charge": 280,
- "ItemId": "361",
- "Code": {
- "Description": "Base Rate",
- "Value": "Base"
}
}
]
}, - "ReferenceNumbers": [
- {
- "Type": "ShipmentNumber",
- "Value": "SHIP-123456-789",
- "Description": "Shipment"
}
], - "Metadata": {
- "AnyValue": {
- "ForInstanceATrackingNumber": "123-789",
- "OrAnything": "2025-03-26"
}, - "SomeOtherValue": {
- "sample1": "value1"
}
}, - "Tags": {
- "Division": "Eastern"
}
}
{- "externalId": "string"
}
A webhook is a callback mechanism that causes Navix to make an API request to a consumer system when events occur within Navix.
Our webhooks are "thin". That is, they're lightweight and usually contain IDs that can be used to retreive additional data via API.
All webhooks have the same payload structure as this example:
{
"id": "00000000-0000-0000-0000-000000000000",
"type": "DISPUTE_CREATED",
"time": "1/1/1970 00:00:00Z",
"data": "\{ \"invoiceUuid\": \"<uuid>\" \}"
}
id
is a unique identifier for the event. Note that this is not the identifier for the object (invoice, dispute, etc.) which triggered the event.type
is the specific type of event that triggered the webhook. Possible values include:INVOICE_CREATED
INVOICE_APPROVED
DISPUTE_CREATED
DISPUTE_UPDATED
DISPUTE_COMMUNICATION_CREATED
time
is the UTC time of when the event occurred.data
contains a JSON object with details for the event. The specific data varies depending on the type of event that occurred. Note that the JSON has been escaped.The webhook consumer should return a status code between 200 and 299 (inclusive) within about 20 seconds.
If the consumer is unreachable, doesn't respond promptly, or returns a status code less than 200 or greater than 299, we will consider the delivery attempt failed and will make another attempt.
We use an exponential backoff algorithm to determine the time between delivery attempts, starting at a few seconds and increasing to a maximum of 1 hour. We will continue to attempt delivery for 8 hours beyond the initial attempt, after which the message will be discarded.
We aim for at-least-once delivery, so a single event may hit the webhook receiver multiple times. When that occurs, the id
will be the same across the multiple requests, so it can be used as an idempotency key by consumers.
We cannot guarantee that webhooks will arrive in order. That is, if a dispute is updated twice, the webhook for the second update could arrive before the first. If that's likely to cause issues, we recommend recording the time
field on the webhook and comparing that stored time to the time on any received webhook.
INVOICE_CREATED
This event is raised whenever an invoice is created.
data
object{
"invoiceUuid": "00000000-0000-0000-0000-000000000000"
}
invoiceUuid
is the identifier for the invoice which was created.INVOICE_APPROVED
This event is raised whenever an invoice is approved. Note that this is only raised for approvals, not for terminated invoices.
data
object{
"invoiceUuid": "00000000-0000-0000-0000-000000000000"
}
invoiceUuid
is the identifier for the invoice which was approved.DISPUTE_CREATED
This event is raised whenever a new dispute is created.
data
object{
"invoiceUuid": "00000000-0000-0000-0000-000000000000",
"disputeUuid": "00000000-0000-0000-0000-000000000000"
}
invoiceUuid
is the identifier for the invoice on which the dispute was created.disputeUuid
is the identifier for the newly created dispute.DISPUTE_UPDATED
This event is raised whenever a dispute is updated. Note that creating and updating are separate events, so this event isn't raised when the dispute is initially created.
data
object{
"invoiceUuid": "00000000-0000-0000-0000-000000000000",
"disputeUuid": "00000000-0000-0000-0000-000000000000"
}
invoiceUuid
is the identifier for the invoice associated with the dispute that was updated.disputeUuid
is the identifier for the updated dispute.DISPUTE_COMMUNICATION_CREATED
This event is raised whenever a new communication is created on a dispute.
Communications are immutable, so there's no corresponding webhook for updates to a communication.
Note that whenever a dispute is created, an initial communication is usually created at the same time. It's possible the DISPUTE_COMMUNICATION_CREATED
webhook will arrive before the DISPUTE_CREATED
webhook.
data
object{
"invoiceUuid": "00000000-0000-0000-0000-000000000000",
"disputeUuid": "00000000-0000-0000-0000-000000000000",
"communicationUuid": "00000000-0000-0000-0000-000000000000"
}
invoiceUuid
is the identifier for the invoice associated with the dispute.disputeUuid
is the identifier for the dispute.communicationUuid
is the identifier for the created communication.This endpoint ingests documents as a base64 string. As the process is asynchronous the processed documents will not appear in the system instantaneously.
Uploads to this endpoint go through a complex machine learning process. It differs from the 'Document Attachment' endpoint which simply allows files to be uploaded and associated with an existing invoice record.
This process works with models trained on an existing suite of auditing documents, and is occasionally supplemented by a human-in-the-loop to help guide and improve training.
It performs the following steps:
You must be explicitly granted access to use this endpoint. Please contact your Customer Success Manager to request access.
X-Idempotency-Key | string (Optional) Provide an X-Idempotency-Key to safely retry the request without accidentally performing the same operation twice. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
(Required) The documents to create.
externalOrderId | string The unique identifier the tenant has assigned for the Invoice, if any |
externalInvoiceId | string |
required | Array of objects (supportingDocumentRequest) A list of documents in Base64 format |
{- "ExternalOrderId": "Order123",
- "ExternalInvoiceId": "Invoice123",
- "Files": [
- {
- "FileBase64String": "SGVsbG8sIFdvcmxkIQ==",
- "FileName": "invoice.png"
}
]
}
{- "Title": "One or more validation errors occurred.",
- "Status": 400,
- "TraceId": "5eee0c1a-1656-462a-ab6c-a3ee502fbd4f",
- "Errors": {
- "InvoiceNumber": [
- "The InvoiceNumber field must be less than or equal to 64 characters long."
]
}
}
This endpoint attaches a document, encoded as a base64 string, to an invoice.
invoiceUuid required | string <uuid> (Required) The UUID of the invoice. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
(Required) The documents to create.
name | string The file name to attach to the invoice. It doesn't need to be unique across files attached to the invoice. |
type | string Enum: "Unset" "Invoice" "DeliveryReceipt" "ProofOfDelivery" "BillOfLading" "NoticeOfAssignment" "RateConfirmation" "WeightAndInspectionCertificate" "LetterOfAuthority" "LumperReceipt" "PackingList" "GeneratedInvoice" "Email" "CommercialInvoice" "CertificateOfOrigin" "CustomerRateConfirmation" "ElectronicInterchangeReceipt" "GatePass" "InsuranceCertificate" "OtherReceipt" "W9" "DeliveryOrder" "WeightScaleTicket" "TrailerInterchangeReceipt" "PurchaseOrder" "EscortTicket" "PermitReceipt" "ServiceOrder" "CertificateOfDestruction" "DonationReceipt" "SmartAndFinalStamp" "InboundTripReport" "WeighmasterCertificate" "CargoActivitySheet" "WeberBOL" "TimeCard" "TransferSheet" "TripManifest" "TrailerControlRecord" "TargetTripSheet" "ExitPass" "PortOfArthurBOL" "ColdChainCustodyForm" "IGFFreightDispatch" "EquipmentSubmissionForm" "Release" "ACIManifest" "TrailerPicture" "MaterialSafetyDataSheet" "ShipTicket" "DeliveryTicket" "InvoiceCorrected" "EIRTicket" "PalletReceipt" "HistoricalAuditDocuments" "DetentionReceipt" "Unknown" "Manifest" "CustomerRateApproval" "LoadCoverSheet" "SafetyChecklist" The document type. |
base64String | string The document file to attach, encoded in base64. |
{- "Name": "invoice_sample-1693412540139.pdf",
- "Type": "Invoice",
- "Base64String": "SGVsbG8sIFdvcmxkIQ=="
}
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
}
This endpoint accepts an External Id (Id used in the caller's system) and returns the corresponding UUID.
Every invoice is assigned a UUID with Navix. It can also, depending on its origin, have an External Id, assigned by the tenant or their TMS. This endpoint translates between those two Ids.
externalId required | string <uuid> (Required) The ExternalId of the invoice. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
invoiceUuid | string <uuid> |
{- "invoiceUuid": "d7b1f0c6-56bf-43f4-8d08-5baf1e1acebc"
}
This endpoint accepts a UUID and returns the corresponding External Id.
Every invoice is assigned a UUID with Navix. It can also, depending on its origin, have an External Id, assigned by the tenant or their TMS. This endpoint translates between those two Ids.
invoiceUuid required | string <uuid> (Required) The UUID of the invoice. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
externalId | string |
{- "externalId": "string"
}
This endpoint creates a new invoice. It's designed to be used if you want to create invoices directly from your TMS (or other system), instead of using EDI or email. Note that the invoice is not created immediately; it may take several minutes for the invoice to be fully ingested.
Please note this endpoint is in provisional testing with beta tenants. Please reach out to your implementation manager or customer success contact to discuss the use of this endpoint.
X-Idempotency-Key | string (Optional) Provide an X-Idempotency-Key to safely retry the request without accidentally performing the same operation twice. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
(Required) The Invoice to create.
type | string Default: "Invoice" Enum: "Invoice" "BalanceDue" "Supplemental" The invoice type. Defaults to 'Invoice' when empty. |
invoiceNumber required | string [ 0 .. 25 ] characters The unique identifier for the Invoice |
invoiceDate required | string <date-time> non-empty The date on which the Invoice was generated |
shipDate required | string <date-time> non-empty The date on which the freight was shipped |
deliveryDate | string <date-time> The date on which the freight was delivered |
Array of objects (invoiceStopRequest) The list of stops | |
Array of objects (invoiceItemRequest) The list of items | |
required | object (invoiceVendorRequest) The Tenant's unique identifier for the Vendor. This value should match the value used when creating Orders programatically. |
currency | string Default: "USD" Enum: "USD" "CAD" The three character ISO 4217 code for the Invoice currency. Defaults to 'USD' when empty |
chargeTerms | string Enum: "Collect" "Prepaid" "PrepaidAdd" "ThirdParty" The freight payment terms |
paymentTerms | string Enum: "Net0" "Net1" "Net2" "Net3" "Net4" "Net5" "Net6" "Net7" "Net8" "Net9" "Net10" "Net11" "Net12" "Net13" "Net14" "Net15" "Net16" "Net17" "Net18" "Net19" "Net20" "Net21" "Net22" "Net23" "Net24" "Net25" "Net26" "Net27" "Net28" "Net29" "Net30" "Net31" "Net32" "Net33" "Net34" "Net35" "Net36" "Net37" "Net38" "Net39" "Net40" "Net41" "Net42" "Net43" "Net44" "Net45" "Net46" "Net47" "Net48" "Net49" "Net50" "Net51" "Net52" "Net53" "Net54" "Net55" "Net56" "Net57" "Net58" "Net59" "Net60" "Net61" "Net62" "Net63" "Net64" "Net65" "Net66" "Net67" "Net68" "Net69" "Net70" "Net71" "Net72" "Net73" "Net74" "Net75" "Net76" "Net77" "Net78" "Net79" "Net80" "Net81" "Net82" "Net83" "Net84" "Net85" "Net86" "Net87" "Net88" "Net89" "Net90" "Net91" "Net92" "Net93" "Net94" "Net95" "Net96" "Net97" "Net98" "Net99" "Net100" "Net101" "Net102" "Net103" "Net104" "Net105" "Net106" "Net107" "Net108" "Net109" "Net110" "Net111" "Net112" "Net113" "Net114" "Net115" "Net116" "Net117" "Net118" "Net119" "Net120" "Net121" "Net122" "Net123" "Net124" "Net125" "Net126" "Net127" "Net128" "Net129" "Net130" "Net131" "Net132" "Net133" "Net134" "Net135" "Net136" "Net137" "Net138" "Net139" "Net140" "Net141" "Net142" "Net143" "Net144" "Net145" "Net146" "Net147" "Net148" "Net149" "Net150" "Net151" "Net152" "Net153" "Net154" "Net155" "Net156" "Net157" "Net158" "Net159" "Net160" "Net161" "Net162" "Net163" "Net164" "Net165" "Net166" "Net167" "Net168" "Net169" "Net170" "Net171" "Net172" "Net173" "Net174" "Net175" "Net176" "Net177" "Net178" "Net179" "Net180" "Net181" "Net182" "Net183" "Net184" "Net185" "Net186" "Net187" "Net188" "Net189" "Net190" "Net191" "Net192" "Net193" "Net194" "Net195" "Net196" "Net197" "Net198" "Net199" "Net200" "Net201" "Net202" "Net203" "Net204" "Net205" "Net206" "Net207" "Net208" "Net209" "Net210" "Net211" "Net212" "Net213" "Net214" "Net215" "Net216" "Net217" "Net218" "Net219" "Net220" "Net221" "Net222" "Net223" "Net224" "Net225" "Net226" "Net227" "Net228" "Net229" "Net230" "Net231" "Net232" "Net233" "Net234" "Net235" "Net236" "Net237" "Net238" "Net239" "Net240" "Net241" "Net242" "Net243" "Net244" "Net245" "Net246" "Net247" "Net248" "Net249" "Net250" "Net251" "Net252" "Net253" "Net254" "Net255" "Net256" "Net257" "Net258" "Net259" "Net260" "Net261" "Net262" "Net263" "Net264" "Net265" "Net266" "Net267" "Net268" "Net269" "Net270" "Net271" "Net272" "Net273" "Net274" "Net275" "Net276" "Net277" "Net278" "Net279" "Net280" "Net281" "Net282" "Net283" "Net284" "Net285" "Net286" "Net287" "Net288" "Net289" "Net290" "Net291" "Net292" "Net293" "Net294" "Net295" "Net296" "Net297" "Net298" "Net299" "Net300" "Net301" "Net302" "Net303" "Net304" "Net305" "Net306" "Net307" "Net308" "Net309" "Net310" "Net311" "Net312" "Net313" "Net314" "Net315" "Net316" "Net317" "Net318" "Net319" "Net320" "Net321" "Net322" "Net323" "Net324" "Net325" "Net326" "Net327" "Net328" "Net329" "Net330" "Net331" "Net332" "Net333" "Net334" "Net335" "Net336" "Net337" "Net338" "Net339" "Net340" "Net341" "Net342" "Net343" "Net344" "Net345" "Net346" "Net347" "Net348" "Net349" "Net350" "Net351" "Net352" "Net353" "Net354" "Net355" "Net356" "Net357" "Net358" "Net359" "Net360" "Net361" "Net362" "Net363" "Net364" "Net365" "Prepaid" The invoice payment terms |
object (invoiceServiceRequest) The invoice service information | |
Array of objects (invoiceChargeRequest) non-empty The list of charges | |
object (invoiceCustomerRequest) If applicable, tenants can send in the associated Customer on an Invoice. This externalId will not be validated and if the Customer is not found in Navix we will show in UI as no customer selected | |
Array of objects (invoiceReferenceNumberRequest) An optional list of reference numbers | |
externalId | string or null [ 0 .. 255 ] characters Default: "InvoiceNumber" The external id of the invoice. If not provided will default to the invoice number provided |
externalId | string The external identifier for the Invoice |
{- "Type": "Invoice",
- "InvoiceNumber": "INV#123456-789",
- "InvoiceDate": "2024-09-12T00:00:00",
- "ShipDate": "2024-09-08T00:00:00",
- "DeliveryDate": "2024-09-09T00:00:00",
- "Stops": [
- {
- "Type": "Origin",
- "Sequence": 1,
- "Address": {
- "Name": "This is where the freight is picked up from",
- "Address1": "123 Origin St",
- "Address2": "Apartment 100",
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}
}, - {
- "Type": "Destination",
- "Sequence": 2,
- "Address": {
- "Name": "This is where the freight is delivered to",
- "Address1": "456 Destination St",
- "Address2": null,
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}
}, - {
- "Type": "BillTo",
- "Sequence": 3,
- "Address": {
- "Name": "Shipper c/o 3PL LLC",
- "Address1": "Send money here Ave",
- "Address2": "Suite 123",
- "City": "Brooklyn",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "11210"
}
}, - {
- "Type": "RemitTo",
- "Sequence": 4,
- "Address": {
- "Name": "Factoring Company x",
- "Address1": "123 Factor St",
- "Address2": null,
- "City": "Anytown",
- "State": "NY",
- "Country": "USA",
- "PostalCode": "12345"
}
}
], - "Items": [
- {
- "Id": "1",
- "Description": "Widget",
- "Class": 55,
- "NMFCCode": "123456",
- "HandlingUnit": "Pallet",
- "HandlingUnitCount": 1,
- "TotalCount": 1,
- "Dimensions": {
- "System": "Imperial",
- "Weight": 10000,
- "Volume": null,
- "Height": 60,
- "Length": 48,
- "Width": 40,
- "Stackable": false
}
}
], - "Vendor": {
- "ExternalId": "ATRUCK101",
- "ScacCode": "ABCD",
- "DotNumber": "97865",
- "McNumber": "123456"
}, - "Currency": "USD",
- "ChargeTerms": "Collect",
- "PaymentTerms": "Net10",
- "Service": {
- "Mode": "Ground",
- "Type": "TL",
- "Level": "Standard",
- "Equipment": "Flatbed"
}, - "Charges": [
- {
- "Charge": 500,
- "ItemId": "1",
- "Code": {
- "Type": "Vendor",
- "Description": "Base Rate",
- "Value": "400"
}
}, - {
- "Charge": 45,
- "ItemId": "1",
- "Code": {
- "Type": "Vendor",
- "Description": "Liftgate",
- "Value": "LFG"
}
}
], - "Customer": {
- "ExternalId": "CUST123"
}, - "ReferenceNumbers": [
- {
- "Type": "OrderNumber",
- "Description": "OrderNumber",
- "Value": "123456-789"
}, - {
- "Type": "ShipmentNumber",
- "Description": "ShipmentNumber",
- "Value": "SHIP-123456-789"
}
], - "ExternalId": "INV#123456-789"
}
{- "Title": "One or more validation errors occurred.",
- "Status": 400,
- "TraceId": "5eee0c1a-1656-462a-ab6c-a3ee502fbd4f",
- "Errors": {
- "InvoiceNumber": [
- "The InvoiceNumber field must be less than or equal to 64 characters long."
]
}
}
This returns an invoice. Unlike the 'Get Audit Results' endpoint, this can be used to return an invoice that's in any state, including one that hasn't been approved or terminated.
This endpoint takes a UUID. If you know the invoice's External Id, but not it's UUID, use the 'Get Invoice Uuid' endpoint first to translate the External Id to a UUID.
invoiceUuid required | string <uuid> (Required) The invoice UUID. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
uuid | string <uuid> |
type | string |
invoiceNumber | string |
invoiceDate | string or null <date-time> |
shipDate | string or null <date-time> |
deliveryDate | string or null <date-time> |
object (vendorInvoiceStatePublicDto) | |
Array of objects (vendorInvoiceStopPublicDto) | |
Array of objects (vendorInvoiceItemPublicDto) | |
object (vendorInvoiceVendorPublicDto) | |
currency | string |
chargeTerms | string |
object (vendorInvoiceServicePublicDto) | |
object (vendorInvoiceCustomerPublicDto) | |
Array of objects (vendorInvoiceReferenceNumberPublicDto) | |
Array of objects (vendorInvoiceDocumentUuidsPublicDto) | |
object | |
receivedDate | string or null <date-time> |
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "type": "string",
- "invoiceNumber": "string",
- "invoiceDate": "2019-08-24T14:15:22Z",
- "shipDate": "2019-08-24T14:15:22Z",
- "deliveryDate": "2019-08-24T14:15:22Z",
- "state": {
- "finalized": true
}, - "stops": [
- {
- "type": "string",
- "sequence": 0,
- "address": {
- "name": "string",
- "address1": "string",
- "address2": "string",
- "city": "string",
- "state": "string",
- "country": "string",
- "postalCode": "string"
}
}
], - "items": [
- {
- "id": 0,
- "description": "string",
- "class": 0.1,
- "nmfcCode": "string",
- "handlingUnit": "string",
- "handlingUnitCount": 0,
- "totalCount": 0,
- "dimensions": {
- "system": "string",
- "weight": 0.1,
- "volume": 0.1,
- "height": 0.1,
- "length": 0.1,
- "width": 0.1,
- "stackable": true
}
}
], - "vendor": {
- "externalId": "string"
}, - "currency": "string",
- "chargeTerms": "string",
- "service": {
- "mode": "string",
- "type": "string",
- "level": "string",
- "equipment": "string"
}, - "customer": {
- "externalId": "string"
}, - "referenceNumbers": [
- {
- "type": "string",
- "description": "string",
- "value": "string"
}
], - "documents": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "type": "Unset"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}, - "receivedDate": "2019-08-24T14:15:22Z"
}
Gets the invoice PDF document. This will return the raw PDF file. There will be a Content-Disposition
header that includes the name of the document.
invoiceUuid required | string <uuid> (Required) The invoice UUID. |
documentUuid required | string <uuid> (Required) The document UUID. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
{- "Title": "One or more validation errors occurred.",
- "Status": 400,
- "TraceId": "5eee0c1a-1656-462a-ab6c-a3ee502fbd4f",
- "Errors": {
- "InvoiceNumber": [
- "The InvoiceNumber field must be less than or equal to 64 characters long."
]
}
}
Returns the Uuids of all the invoices matched to an order, based on the order's External Id.
orderExternalId required | string (Required) The order ID used in a tenant's system. This is the externalId in the Order shape. |
X-Tenant-Uuid required | string (Required) Your tenant UUID. |
uuid | string <uuid> |
[- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
}
]
Navix provides the ability to call out to an endpoint in your system that can utilize your rating engine. Our system will allow an auditor to send an updated invoice from our system to your rating engine endpoint to get rated.
This is a webhook in the Navix system but it does not have the same guarantees as the other webhooks.
We will attempt to call your rating engine endpoint 1 time. If it fails to return a 2xx status code, we might try again based on the status code that was returned. We won't retry 4xx status codes but we may retry 5xx status codes.
In other words, calls to your rating engine webhook are managed in a different manner than other tenant provided webhooks. The mechanism, manner and guarantees of this webhook are different from the Webhooks tab mentioned earlier in the documentation.
It is important that performance is taken into account inside of rating engines. An auditor in the UI can call the rating engine with the press of a button. If a rating engine takes 15 seconds to complete, each audit will take an additional 15 seconds to complete with each rating engine call.
Getting started is straight forward. Our team and your team have a few tasks that need to be accomplished so you use this feature.
Our system will make a call out to an endpoint url that you specify. That endpoint will need to handle the payload that we send, rate the payload and then return a response. You can view request payload and response structure in the Rating Engine Payload
and Rating Engine Response
sections below respectively. We do into more detail in the Endpoint Contract
section
Here are the tasks for your team:
Endpoint Contract
sectionEndpoint Contract
section.Here are the tasks for the Navix team:
In order for the Navix system to contact your rating engine we need an endpoint that meets the following requirements:
POST
request.apikey
query string argument. The apikey
value is one that our team has generated for you. You can get this by contacting your account manager. Your endpoint should validate that the apikey
value is the same that we provided you. If it is not, you should return a 401 Unauthorized
status code.Rating Engine Payload
section below.Rating Engine Response
section below.Rating Engine Response
section below. Please note that we are expecting a single rating engine response from your endpoint. You might have a rating engine that rate shops multiple vendors, please trim down your response to only include the selected vendor response. If your rating engine throws an exception, it is beneficial to the auditor to return a 2xx response and populate the RawResponse
field with the exception. These exceptions provides feedback to the auditors so they can make corrections or let them know that a system is temporarily down.If the endpoint returns a 2xx response we mark that as a success. All other responses are treated as failures and retry attempts happen where it makes sense.
We can visualize the contract the following way:
Our payload is an invoice from our system. We have provided an example below to show the structure and a sample of data. An explanation of the fields is below the example.
{
"Uuid": "e4c3b17a-d207-43f9-ba2d-f61d068c7808",
"ExternalOrderId": "MyOrderId",
"FreightChargeTerms": "Prepaid",
"DeliveryDate": "2024-04-11T12:34:56Z",
"ShipDate": "2024-04-01T08:00:00Z",
"Vendor": {
"ExternalId": "147-888",
"SCAC": "SAIA"
},
"Customer": {
{
"ExternalId": "6594HH4",
},
"Stops": [
{
"Type": "Origin",
"City": "Beverly Hills",
"Zip": "90210",
"CountryCode": "USA",
"StateCode": "CA"
},
{
"Type": "Destination",
"City": "Dallas",
"Zip": "75080",
"CountryCode": "USA",
"StateCode": "TX"
}
],
"LineItems": [
{
"Description": "Navix branded shoes",
"HandlingUnit": "Pallet",
"HandlingUnitCode": "PLT",
"HandlingUnitCount": 4,
"Weight": 231.1,
"WeightUnit": "Imperial",
"Class": 100
}
],
"VendorCharges": [
{
"Code": "ACH"
}
]
}
Uuid
is a unique identifier for the invoice in the Navix system.ExternalOrderId
is the order id in your system that this invoice is for.FreightChargeTerms
is how the freight is paid. Possible values include: Collect, Prepaid, PrepaidAdd and ThirdPartyDeliveryDate
is the UTC datetime of when the shipment was delivered.ShipDate
is the UTC datetime of when the shipment was shipped.Vendor
ExternalId
is the id in your system that this vendor is known as.SCAC
is the SCAC code for this vendor.Customer
ExternalId
is the id in your system that this customer is known as.Stops
Stops.Type
is what type of stop this is. Possible values include: Origin, Destination and BillTo.Stops.City
is city for this stop.Stops.Zip
is the zip code for this stop.Stops.CountryCode
is the country code for this stop. Possible values include: USA, CAN and MEX.Stops.StateCode
is the state code for this stop.LineItems
LineItems.Description
is the description for this line item.LineItems.HandlingUnit
is the container for this line item. Possible values include: Pallet, Drum, Bag, Barrels, Crates, Bundles, Piece, Loose, Boxes, Cases, Carton and Totes.LineItems.HandlingUnitCode
is the alias for the HandlingUnit above.LineItems.HandlingUnitCount
is how many containers are used for this line itemLineItems.Weight
is the weight for this line item.LineItems.WeightUnit
is the weight system used for this line item. Possible values include: Imperial and MetricLineItems.Class
is the shipping class.VendorCharges
Code
the charge code in your system for this charge.Once the invoice has been rated, we need the results mapped in a format our system can understand. Please note that we are expecting a single rating engine response from your endpoint. You might have a rating engine that rate shops multiple vendors, please trim down your response to only include the selected vendor response.
We have provided an example below to show the structure and a sample of data. An explanation of the fields is below the example.
{
"RawResponse": "...",
"RawResponseType": "JSON",
"VendorCharges": [
{
"Code": "ACH",
"Description": "LIMITED ACCESS DELIVERY",
"Amount": 53.35
}
],
"CustomerCharges": [
{
"Code": "ACH",
"Description": "LIMITED ACCESS DELIVERY",
"Amount": 59.35
}
]
}
RawResponse
is a raw response from your rating engine. This can be the response when a rate was returned or in the case where there was an exception from the rating engine. Providing this can be beneficial to auditors. Auditors will have the visibility to see this response in the UI.RawResponseType
is format of the RawResponse
field. Possible values include: Json, Xml and Text.VendorCharges
Code
the charge code in your system for this charge.Description
is a description of the charge.Amount
is the amount for this charge.CustomerCharges
Code
is the as VendorCharges.Code
above.Description
is the as VendorCharges.Description
above.Amount
is the as VendorCharges.Amount
above but relevant to a customer.