POST SecurityMap

Request Information

URI Parameters

None.

Body Parameters

SecurityMap
NameDescriptionTypeAdditional information
ID

integer

None.

SecurityRoleID

integer

None.

SecurityRouteID

integer

None.

ElementFilters

string

None.

AllowAccess

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "SecurityRoleID": 2,
  "SecurityRouteID": 3,
  "ElementFilters": "sample string 4",
  "AllowAccess": true
}

application/xml, text/xml

Sample:
<SecurityMap xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Layers.Data.Model">
  <AllowAccess>true</AllowAccess>
  <ElementFilters>sample string 4</ElementFilters>
  <ID>1</ID>
  <SecurityRoleID>2</SecurityRoleID>
  <SecurityRouteID>3</SecurityRouteID>
</SecurityMap>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SecurityMap'.

Response Information

Resource Description

IAPIResponseBase
NameDescriptionTypeAdditional information
Code

ResultCodes

None.

APITransactionID

string

None.

Result

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 200,
  "APITransactionID": "sample string 1",
  "Result": "OK"
}

application/xml, text/xml

Sample:
<IAPIResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Veripro.API.Base">
  <APITransactionID>sample string 1</APITransactionID>
  <Code>OK</Code>
</IAPIResponseBase>