Get Available Object Numbers
post
/config/sim/v1/getAvailableObjectNumbers
Gets available object numbers for a module based on count and starting position.
Request
Supported Media Types
- application/json
- multipart/form-data
Request body for get available object numbers.
Root Schema : GetAvailableObjNumRequest
Type:
Show Source
object
-
count:
integer
Default Value:
1
Count of object numbers to be returned.Example:1
-
hierUnitId:
integer
Unique hierarchy unit value. By default, the enterprise hierUnitId is used.Example:
1
-
start:
integer
Default Value:
1
Object number determining the starting position for getting the next object numbers.Example:1
-
startFromHighest:
boolean
Default Value:
false
This can be used if you need to know the available object numbers after the highest value in use. If true, the value of start field is ignored.Example:true
-
tag(required):
string
Allowed Values:
[ "employees: 999999999" ]
Unique tag or insert endpoint of the object for which the available object numbers are requested. Refer to enum for allowed objects and the corresponding maximum values.Example:employees/employees
Response
Supported Media Types
- application/json
200 Response
A list of available object numbers for the module and the hierarchy where the object numbers can be added.
Root Schema : GetAvailableObjNumResponse
Type:
Show Source
object
-
hierUnitId(required):
integer
Unique hierarchy unit value.Example:
1
-
objectNumbers(required):
array objectNumbers
List of available object numbers
Nested Schema : objectNumbers
Type:
array
List of available object numbers
Show Source
Example:
[
"1001",
"1002",
"1004",
"1005"
]
400 Response
400 Bad Request
Root Schema : ErrorDetails
Type:
object
Response body when the request returns an error.
Show Source
-
detail(required):
string
A short, human-readable summary of the problem.Example:
Specified Data is invalid
-
errorDetails(required):
string
A human-readable explanation specific to this occurrence of the problem.Example:
Entity Does Not Exist
-
o:errorCode(required):
integer
Error code of the problemExample:
55223
-
status(required):
integer
HTTP status code.Example:
400
-
title(required):
string
A short, human-readable summary of the problem type.Example:
VALIDATION ERROR
-
type(required):
string
A URI reference that identifies the problem type. When this member is not present, its value is assumed to be "about:blank".Example:
http://www.abc.org/xyz.html