Pieces in Inventory


DESCRIPTION

Web Service that returs information of pieces received in Miami inventory.

Request

Method: GET

Content-Type: application/json

URL:

Test Environment: https://training.logiztikalliance.com:5005/logCloudWSSprint/api/ClientesExternosA/ListarCodigosDeBarraDisponiblesUbicacion/{CUSTOMERCODE}/{TOKEN}
Production Environment: https://cloud.logiztikalliance.com:5005/logCloudWS/api/ClientesExternosA/ListarCodigosDeBarraDisponiblesUbicacion/{CUSTOMERCODE}/{TOKEN}
INPUT PARAMETERS
Name Type Required Description
CustomerCode string(50) Yes Customer code.
AuthenticationToken string(50) Yes Alliance cloud security token.
Response

 

Output Success

 

BODY

Name Type Description
barcode string(11) Barcode number that was received in Miami warehouse and is currently in our inventory.
rack string(64) Location of our Miami warehouse, where the piece is stored.

EXAMPLE

[
    {
        “barcode”: “12202605462”,
        “rack”: “4B03C”
    }
]
 
Output Error

 

BODY

Name Type Description
mensaje string(400) In case of an error, we return the error message in this field.

EXAMPLE

{
    “mensaje”: “Error in database connection.”
}
 
ERRORS MESSAGES

 

ERROR IN DATABASE CONNECTION

 

{
    “mensaje”: “Error in database connection.”
}
WRONG TOKEN

 

[]
ERROR IN CUSTOMER CODE

 

[]
MISSING PARAMETERS

(Empty string)