POST identifier/update?Token={Token}
Update identifier in the system. Application privilege "Edit" for licensed agenda "Identifiers" required.
Request Information
Authorization
- Authorization by token required
Availability
- Method can be used
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Token |
The action is authorized by this token. Token should generated by calling action "POST login". Expiration time of each token is 20 seconds |
globally unique identifier |
Required |
Body Parameters
IdentifierUpdateReqName | Description | Type | Additional information |
---|---|---|---|
InternalNrLong |
Long internal number of the identifer. Leading zeros will be removed |
string |
Required Matching regular expression pattern: [0-9a-fA-F]+ String length: inclusive between 0 and 20 |
RegistrationNr |
Registration number of the identifier |
string |
String length: inclusive between 0 and 100 |
Technology |
Used technology of the identifier. The meaning is : 0 UNIQUE (H4102); 1 High Security (HS); 2 MIFARE (MF); 3 ABA Track; 4 HID; 5 Desfire |
integer |
Matching regular expression pattern: [0,1,2,3,4,5] |
Type |
Type of the idenfier. The meaning is: 0 - Card; 1 - Tag; 2 - Bracelet; 3 - Visiting card; 4 - EntryCode; 5 - Article, not supported by WebAPI |
integer |
Matching regular expression pattern: [0,1,2,3,4] |
Status |
Actual status od the identifier. The meaning is: 0 - free, not yet assigned; 1 - Already assigned, not supported by WebAPI Base identifier management; 2 - Lost; 4 - Configuration, not supported by WebAPI |
integer |
Matching regular expression pattern: [0,2] |
Lock |
Lock flag of the identifier. The meaning is: 0 - open; 1 - locked |
integer |
Range: inclusive between 0 and 1 |
Security |
Security flag of the identifier; The meaning is: 0 - not secure identifier; 1 - secure identifier |
integer |
Range: inclusive between 0 and 1 |
ValidFrom |
The begin of the identifier validity in format "yyyy-MM-ddTHH:mi:ss". The time is included |
date |
None. |
ValidTo |
The end of the identifier validity in format "yyyy-MM-ddTHH:mi:ss". The time is included |
date |
None. |
Request Formats
application/json
{"InternalNrLong":"0105AF00BC","RegistrationNr":"1000234","Technology":2,"Type":1,"Status":0,"Lock":1,"Security":1,"ValidFrom":"\/Date(1732183510663)\/","ValidTo":"\/Date(1826791510663)\/"}
application/xml
<Request> <InternalNrLong>0105AF00BC</InternalNrLong> <RegistrationNr>1000234</RegistrationNr> <Technology>2</Technology> <Type>1</Type> <Status>0</Status> <Lock>1</Lock> <Security>1</Security> <ValidFrom>2024-11-21T10:05:10.6631808Z</ValidFrom> <ValidTo>2027-11-21T10:05:10.6631808Z</ValidTo> </Request>
text/json
{ "InternalNrLong": "sample string 1", "RegistrationNr": "sample string 2", "Technology": 1, "Type": 1, "Status": 1, "Lock": 1, "Security": 1, "ValidFrom": "2024-11-21T12:47:52.3415093+01:00", "ValidTo": "2024-11-21T12:47:52.3415093+01:00" }
text/xml
<Request xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <InternalNrLong>sample string 1</InternalNrLong> <RegistrationNr>sample string 2</RegistrationNr> <Technology>1</Technology> <Type>1</Type> <Status>1</Status> <Lock>1</Lock> <Security>1</Security> <ValidFrom>2024-11-21T12:47:52.3415093+01:00</ValidFrom> <ValidTo>2024-11-21T12:47:52.3415093+01:00</ValidTo> </Request>
Response Information
Response Codes
Http Code | Error Number | Description |
---|---|---|
200 request succesfully done | 0 | Successfully done |
202 Accepted for processing | 0 | Processed with results: Identifier [{0}] remains unchanged |
400 bad request | 1002 | Entry parameter missing or parameter bindigs failed |
401 unauthorized | 1000 | Token {0} not found |
401 unauthorized | 1001 | Token {0} already expired |
401 unauthorized | 1006 | Ip filter violated for ip client address [{0}] |
401 unauthorized | 1007 | Ip filter [{0}] parsing failed |
401 unauthorized | 1008 | Request rate policy violated for [{0}] |
403 server refuses fo fulfill the request | 1142 | Privilege Edit of agenda Indentifiers violated for [{0}] |
403 server refuses fo fulfill the request | 1147 | Record permission Edit of agenda Identifiers violated for [{0}] |
403 server refuses fo fulfill the request | 0 | Processed with results: Identifier [{0}] remains unchanged |
403 server refuses fo fulfill the request | 1 | Db operation failed, agenda missing priviliges |
403 server refuses fo fulfill the request | 2 | Db operation failed, record missing priviliges |
403 server refuses fo fulfill the request | 3 | Db operation failed, Record duplicity |
403 server refuses fo fulfill the request | 4 | Db operation failed, already changed by another user |
403 server refuses fo fulfill the request | 5 | Db operation failed, already deleted by another user |
403 server refuses fo fulfill the request | 6 | Db operation failed, database data consistence violation |
403 server refuses fo fulfill the request | 7 | Db operation failed, operation can not be executed because another problems occured |
403 server refuses fo fulfill the request | 8 | Db operation failed, licence violation |
404 required resource does not exist on the server | 1140 | Identifier [{0}] not found |
415 unsupported Media Type | The request entity has a media type which the server or resource does not support. Only application/json and application/xml are supported | |
500 internal error | Server exception description |
Resource Description
BaseRespOfIdentifierUpdateReqName | Description | Type | Additional information |
---|---|---|---|
Result | RequestResult |
None. |
|
Request | IdentifierUpdateReq |
None. |
Response Formats
application/json
{"Result":{"Message":"Processed with result: ExecOK","Code":0,"ModelStateErr":null},"Request":{"InternalNrLong":"0105AF00BC","RegistrationNr":"1000234","Technology":2,"Type":1,"Status":0,"Lock":1,"Security":1,"ValidFrom":"\/Date(1732183510663)\/","ValidTo":"\/Date(1826791510663)\/"}}
application/xml
<Response> <Result> <Message>Processed with result: ExecOK</Message> <Code>0</Code> </Result> <Request> <InternalNrLong>0105AF00BC</InternalNrLong> <RegistrationNr>1000234</RegistrationNr> <Technology>2</Technology> <Type>1</Type> <Status>0</Status> <Lock>1</Lock> <Security>1</Security> <ValidFrom>2024-11-21T10:05:10.6631808Z</ValidFrom> <ValidTo>2027-11-21T10:05:10.6631808Z</ValidTo> </Request> </Response>
text/json
{ "Result": { "Message": "sample string 1", "Code": 2, "ModelStateErr": [ "sample string 1", "sample string 2" ] }, "Request": { "InternalNrLong": "sample string 1", "RegistrationNr": "sample string 2", "Technology": 1, "Type": 1, "Status": 1, "Lock": 1, "Security": 1, "ValidFrom": "2024-11-21T12:47:52.3570747+01:00", "ValidTo": "2024-11-21T12:47:52.3570747+01:00" } }
text/xml
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Result> <Message>sample string 1</Message> <Code>2</Code> <ModelStateErr> <string>sample string 1</string> <string>sample string 2</string> </ModelStateErr> </Result> <Request> <InternalNrLong>sample string 1</InternalNrLong> <RegistrationNr>sample string 2</RegistrationNr> <Technology>1</Technology> <Type>1</Type> <Status>1</Status> <Lock>1</Lock> <Security>1</Security> <ValidFrom>2024-11-21T12:47:52.3570747+01:00</ValidFrom> <ValidTo>2024-11-21T12:47:52.3570747+01:00</ValidTo> </Request> </Response>