Update multiple Identifier items by link_id
Create or Update multiple Identifier items.
This request is used by Link
management system. Link adds to each identifier and apartment link_id
and apartment_link_id
to link them together.
They can be added to multiple panels and removed by link_id
param using DELETE /access/identifier/items/link
- application/json
Request Body required
- list_items object[]
list of identifiers from link
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
- Created
- Updated
- Identifiers exceeded
Schema
result object[]
resulting array of ids
link_id uuidUnique entity set by the server to bind some parameters with each other. By default return null value
success booleanstatus of operation
extended_info stringPossible values: [
created
,updated
,deleted
,entity_not_found
,number_taken_by_another_identifier
,bound_time_profile_doesnt_exist
,face_id_not_supported
,number_of_face_identifiers_exceeded
,number_of_identifiers_exceeded
]Entity state information result
{
"result": [
{
"link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
"success": true,
"extended_info": "created"
}
]
}
{
"result": [
{
"link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
"success": true,
"extended_info": "created"
}
]
}
{
"result": [
{
"link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
"success": true,
"extended_info": "updated"
}
]
}
{
"result": [
{
"link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
"success": false,
"extended_info": "number_of_identifiers_exceeded"
}
]
}
Wrong JSON body
Log In
Loading...