Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Use this method to get a list of Box-types ordered by Box-type code.

Valid Tokens: Company and Vendor.


Related Articles

Request


URL: https://api.kometsales.com/api/boxtype.list

Method: GET

Content-Type: URL Parameters


Input parameters

authenticationToken (required)(string:50)

Komet Sales security token.


id (optional)(integer:20)

Komet Sales internal Box-Type ID.


code (optional)(string:3)

The Box-Type code.


https://api.kometsales.com/api/boxtype.list?
authenticationToken=token_info_goes_here

Response


status (integer:1)

Transaction status.

Valid values: 1 = Success | 0 = Failure


message (string:500)

Transaction status description.


boxtypes (array)

An array containing the Box-Types.


code (string:3)

The Box-Type code.


kometNetworkName (string:5)

The Komet Network Code Box-Type name.


fbe (decimal:10,2)

The Full Box Equivalent.


id (integer:20)

The Komet Sales internal Box-Type ID.


kometNetworkId(integer:4)

The Komet Network Code Box-Type ID.


{
    "status": "1",
    "message": "OK",
    "boxtypes": 
    [
         {
            "code": "FB",
            "kometNetworkName": "FB",
            "fbe": 1,
            "id": 1056,
            "kometNetworkId": 900
        },
        {
            "code": "HB",
            "kometNetworkName": "HB",
            "fbe": 0.5,
            "id": 1057,
            "kometNetworkId": 901
        }
    ]
}

  • No labels