Get Next Number Range

Service Url: GET

Path Parameters: None

Query Parameters:

rangeDefinitionId – String

rangeScopeId – String

Request Body: None

Response Body:

GetNextNumberRangeResponse

rangeDefinitionId – String

rangeScopeId – String

numberRanges – List<INumberRange>

Example Request:1http://localhost:8080/WebRestApi/rest/allocatedNumberRanges?rangeDefinitionId=InvContainers&rangeScopeId=Location_1003

Example Response:

{
    "rangeDefinitionId": "InvContainers",
    "rangeScopeId": "Location_1003",
    "numberRanges": [
        {
            "rangeStart": 1387,
            "rangeEnd": 0,
            "thresholdForNextRangeUpdate": 0
        },
        {
            "rangeStart": 0,
            "rangeEnd": 1485,
            "thresholdForNextRangeUpdate": 1435
        }
    ]
}
Go to Top