Skip to content
URL:
https://<root>/security/psa
Methods:
GET
Operations:
Update, Enable, Disable
Version Introduced:
12.0

Description

The psa resource provides access to operations that configure the credentials and the login privileges of the primary site administrator account. This account is stored within server and can be used to log into the server and perform administrative workflows.

Request parameters

ParameterDetails

f

(Required)

The output format for this operation. The default value is html.

Values: html | json | pjson

token

(Required)

Users interacting programmatically with this endpoint must generate a token that must be included as a request parameter. A token can be obtained using the Generate Token operation.

Response properties

PropertyDetails

disabled

The disabled property indicates whether the site's primary site administrator account is currently enabled or disabled.

Values: True | False

username

The username associated with the primary site administrator account.

Example usage

The following is a sample request URL used to access the psa operation:

Use dark colors for code blocksCopy
1
https://organization.example.com/video/admin/security/psa?f=pjson

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
{
    "disabled": "<True | False>",
    "username": "<Primary Site Administrator Account Name>"
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
{
    "disabled": false,
    "username": "videoadmin"
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.