Skip To Content
ArcGIS Developer
Dashboard

/securityPolicy: Security Policy

  • URL:https://[root]/portals/[portalID]/securityPolicy
  • Operations:Update
  • Version Introduced:10.4

Example usage

Below is a sample ArcGIS Online request URL used to access the securityPolicy resource:

https://org.arcgis.com/sharing/rest/portals/0123456789ABCDEF/securityPolicy?f=pjson

Below is a sample ArcGIS Enterprise request URL used to access the securityPolicy resource:

https://machine.domain.com/webadaptor/sharing/rest/portals/0123456789ABCDEF/securityPolicy?f=pjson

Description

This resource lists properties of an organization's security policy and provides the ability to configure the password length, complexity, and history requirements for members with ArcGIS accounts.

Request parameters

ParameterDetails
f

The response format. The default format is html.

Values: html | json | pjson

JSON Response example


{
  "passwordPolicy": {
    "type": "default",
    "minLength": 8,
    "minLetter": 1,
    "minDigit": 1,
    "created": -1,
    "modified": -1
  }
}