GET identifier/getAccessPrivileges?InternalNrLong={InternalNrLong}&Token={Token}

Get access of the identifier. Application privilege "View" for licensed agenda "Identifiers" required. Data may also be restricted by record permission "View" of agenda "Identifiers"

Request Information

Authorization

  • Authorization by token required

Availability

  • Method can be used

URI Parameters

NameDescriptionTypeAdditional information
InternalNrLong

Internal number of the identifier in hex format

string

Required

Matching regular expression pattern: ([0-9a-fA-F]+)

String length: inclusive between 0 and 20

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

None.

Response Information

Response Codes

Http CodeError NumberDescription
200 request succesfully done 0 Successfully done
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 1141 Privilege View of agenda Identifiers violated for [{0}]
403 server refuses fo fulfill the request 1144 Record permission View of agenda Identifiers violated for [{0}]
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

IdentifierAccessPrivilegesGetResp
NameDescriptionTypeAdditional information
InternalNrLong

Unique identification of the identifier

string

None.

Priviliges

Collection of AccessPriviliges

None.

Response Formats

application/json, text/json

Sample:
{
  "InternalNrLong": "sample string 1",
  "Priviliges": [
    {
      "IdentifyingMode": 1,
      "AccessModeTitle": "sample string 2",
      "HwStructNodePath": "sample string 1",
      "OptionAccess": 2,
      "OptionAttendance": 3,
      "ValidFrom": "sample string 4",
      "ValidTo": "sample string 5"
    },
    {
      "IdentifyingMode": 1,
      "AccessModeTitle": "sample string 2",
      "HwStructNodePath": "sample string 1",
      "OptionAccess": 2,
      "OptionAttendance": 3,
      "ValidFrom": "sample string 4",
      "ValidTo": "sample string 5"
    }
  ]
}

application/xml, text/xml

Sample:
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <InternalNrLong>sample string 1</InternalNrLong>
  <AccessPriviliges>
    <AccessPriviliges>
      <IdentifyingMode>1</IdentifyingMode>
      <AccessModeTitle>sample string 2</AccessModeTitle>
      <HwStructNodePath>sample string 1</HwStructNodePath>
      <OptionAccess>2</OptionAccess>
      <OptionAttendance>3</OptionAttendance>
      <ValidFrom>sample string 4</ValidFrom>
      <ValidTo>sample string 5</ValidTo>
    </AccessPriviliges>
    <AccessPriviliges>
      <IdentifyingMode>1</IdentifyingMode>
      <AccessModeTitle>sample string 2</AccessModeTitle>
      <HwStructNodePath>sample string 1</HwStructNodePath>
      <OptionAccess>2</OptionAccess>
      <OptionAttendance>3</OptionAttendance>
      <ValidFrom>sample string 4</ValidFrom>
      <ValidTo>sample string 5</ValidTo>
    </AccessPriviliges>
  </AccessPriviliges>
</Response>