list_size_sequence


GET /list_size_sequence

To get the TOTAL COUNT of list of sizes in groups.

Use this method FIRST to determine how many total records there are for the given criteria.

After you call this method, then call the method below, and pass the required paging parameters.

/list_size_sequence?token=XXXXX

field description
token Credentials provided by Powersoft that allow access to the API

Returns

       {
            "api_response": {
                "response_code": "1",
                "response_msg": "OK",
                "response_id": ""
            },
            "total_count_list_size_in_group": 6
        }
       


GET /list_size_sequence

To get a list of sizes in groups.

/list_size_sequence?token=XXXXX&page_number=1&page_size=10

field description
token Credentials provided by Powersoft that allow access to the API
page_number The page number in the entire list. eg Page 1
page_size The number of rows to return. eg 10 rows

Returns

            {
            "api_response": {
                "response_code": "1",
                "response_msg": "OK",
                "response_id": ""
            },
            "list_size_in_group": [
                {
                    "size_group_code_365": "0-5",
                    "size_group_name": "0 - 5",
                    "size_group_secondary_code": "",
                    "size_code_365": "00",
                    "size_name": "0",
                    "size_name_invoice": "0",
                    "size_secondary_code": "",
                    "size_sequence_no": 1
                },
                {
                    "size_group_code_365": "0-5",
                    "size_group_name": "0 - 5",
                    "size_group_secondary_code": "",
                    "size_code_365": "10",
                    "size_name": "1",
                    "size_name_invoice": "1",
                    "size_secondary_code": "",
                    "size_sequence_no": 2
                },
                {
                    "size_group_code_365": "0-5",
                    "size_group_name": "0 - 5",
                    "size_group_secondary_code": "",
                    "size_code_365": "20",
                    "size_name": "2",
                    "size_name_invoice": "2",
                    "size_secondary_code": "",
                    "size_sequence_no": 3
                },
                {
                    "size_group_code_365": "0-5",
                    "size_group_name": "0 - 5",
                    "size_group_secondary_code": "",
                    "size_code_365": "30",
                    "size_name": "3",
                    "size_name_invoice": "3",
                    "size_secondary_code": "",
                    "size_sequence_no": 4
                },
                {
                    "size_group_code_365": "0-5",
                    "size_group_name": "0 - 5",
                    "size_group_secondary_code": "",
                    "size_code_365": "40",
                    "size_name": "4",
                    "size_name_invoice": "4",
                    "size_secondary_code": "",
                    "size_sequence_no": 5
                },
                {
                    "size_group_code_365": "0-5",
                    "size_group_name": "0 - 5",
                    "size_group_secondary_code": "",
                    "size_code_365": "50",
                    "size_name": "5",
                    "size_name_invoice": "5",
                    "size_secondary_code": "",
                    "size_sequence_no": 6
                }
            ]
        }