You can use the Serialized Logistics V2 API to integrate the third-party systems with the Serialized Logistics application.
The Serialized Logistics V2 API uses the Representational State Transfer (REST) standard to interact with other systems.
The Serialized Logistics V2 API is an extension of the Serialized Logistics application of Movilitas.Cloud and enables you to send requests from external systems to the application.
This article describes how to get an Advanced Shipping Notification from Movilitas.Cloud by using the Serialized Logistics V2 API.
API Tool to Use
In this document, we provide examples by using the cURL command-line tool. To send the API request, you can find a lot of user-friendly REST API tools on the Internet, for example, Postman.
Before You Begin
Before you start sending any messages:
1. You must enable the Serialized Logistics application in the Admin UI.
2. You must create an API key and secret.
3. You must create a shopfloor channel with Serialized Logistics V2 API source. You will need the channel key for your requests.
4. You must configure the Serialized Logistics application.
5. You must have the authentication token to send requests over API. Select one of the following ways:
- Apply a dynamic token. Send an authentication request over the Authentication API. For more information about the Authentication API, open the Tenant Dashboard in Movilitas.Cloud, select API keys, and choose Authentication API Documentation. Also, see Authentication Request.
- Apply a static token. Generate a static token for your previously created API key.
For more information, see Configuring the Movilitas.Cloud APIs.
Procedure
1. Use the GET method and the following URL:
2. Define the query params.
Key | Required or Optional? | Type | Action |
---|---|---|---|
supplier_tag | Optional | String | Provide the supplier tag that identifies your supplier. Note: Make sure that you have registered the supplier in the Serialized Logistics application --> Site management --> Suppliers tab and apply the value given in the Supplier tag field. |
purchase_order_id | Optional* | String | Provide the purchase order ID. |
dispatch_advice_id | Optional* | String | Provide the despatch advice ID. |
include_aggregations | Required | Boolean | Specify whether you want to include aggregations. In the current implementation, the allowed value is "false". |
*One of the two is required. If the purchase order ID or the despatch advice ID is provided, the other field is optional.
3. For the header, define the authentication token and the channel key. The token can be given in one of the following ways:
- As x-access-token header.
- As Authorization header by using the Bearer schema.
Header Option 1:
Key | Action |
---|---|
x-access-token | Provide the authentication token. |
x-channel-key | Provide the channel key of your Serialized Logistics V2 API channel. |
Header Option 2:
Key | Action |
---|---|
Authorization | Provide the authentication token as Bearer <token>. |
x-channel-key | Provide the channel key of your Serialized Logistics V2 API channel. |
4. Leave the body of the request empty.
5. Send the request.
Sample cURL Request
curl -X GET \ https://api.movilitas.cloud/v1/serialized_logistics/v2/api/suppliers/get_advanced_shipping_notification?purchase_order_id=PO2&include_aggregations=false&dispatch_advice_id=DA1 \ -H 'x-access-token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXkiOiJzX2FqazQyS2RLQWhHciE3TUZtY1Q2UzhTQ3NDQ2hzc2RoTXRFUlNBIUNwUDhlZDkzU2htQ0hoaHIyTmg3Y0dBIiwiX2lkIjoiNWQyNzA4ZDc3NDQ1OTcxYjI5MmY4ZDI3IiwiaWF0IjoxNTY0MDU5ODc2LCJleHAiOjE1NjQxNDYyNzZ9.TBMv71CaxCNtE1opQMk0f1ncfbnZ0Cwnu7MWkTzkQqA' \ -H 'x-channel-key: Ky1SpfEXmjj05fW3USBFD3pgoEi9AQ29Atsnj4Zy'
The application sends back a response that contains the following fields in the body:
Field | Type | Description |
---|---|---|
success | Boolean | Indicates whether the request was successful (true) or not (false). |
message | String | Message response. |
data | Object | The shipment data. |
products | Object[] | The object array of the products. Each product object contains the details of a product:
Note: The application returns the top-level trade items only. Containers (SSCCs) are not returned. |
code | String | The product code (GTIN). |
batches | Object[] | The object array of the batches. Each batch object contains the details of a batch:
|
id | String | The batch ID. |
expiration_date | String | Product expiration date. GS1 format YYMMDD. For example, 2021 December 15 is "211215". |
serials | String[] | The array of serial numbers. The serial numbers follow the GS1 standard. |
Sample Response
{ "success": true, "message": "Advanced Shipping Notification", "data": { "products": [ { "code": "30300040244510", "batches": [ { "id": "0424C", "expiration_date": "270424", "serials": [ "3YZAB23061400", "3YZAB23061401", "3YZAB23061402", "3YZAB23061403" ] } ] } ] } }
Errors and Resolution
This section lists some of the most general error messages or error types when sending the request.
Error Message or Error Type | Error Code | Description |
---|---|---|
No token provided | ERR0001 | No authentication token is provided. Ensure that you add the authentication token to the header of the request. |
Failed to authenticate token | ERR0000 | Failed to authenticate the provided token. Double-check if your token has expired or has been revoked. Obtain a valid token by generating a static one or by getting a dynamic one through Authentication API. |
Channel ID is missing or it needs to be in correct format | - | The channel key of your Serialized Logistics V2 API channel is not specified in the request. To get the channel key, go to Tenant Dashboard --> Channels in the Admin UI, open your Serialized Logistics V2 API channel, and find the channel key on the top of the Edit shopfloor channel panel. |
Validation error | - | The given data is invalid. It does not follow the required data type or pattern. The response includes details about the specific issue. Follow the explanation in the response and correct your data. |
No upload found with provided id | - | There is no Advanced Shipping Notification in Movilitas.Cloud with the provided ID. Make sure that you provide an ID that comes from an existing Advanced Shipping Notification in Movilitas.Cloud. You can add an Advanced Shipping Notification to Movilitas.Cloud by receiving an EPCIS file from the supplier in the Serialized Logistics application. |