Skip to main content
GET
/
api
/
admin
/
security
/
threats
/
scope
List the accounts + institutions visible to the caller (threat panel selectors)
curl --request GET \
  --url https://pria.praxislxp.com/api/admin/security/threats/scope \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "institutions": [
    {
      "_id": "<string>",
      "name": "<string>",
      "accountId": "<string>",
      "accountName": "<string>"
    }
  ],
  "accounts": [
    {
      "_id": "<string>",
      "name": "<string>"
    }
  ]
}

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Response

Managed scope (institutions + their accounts)

success
boolean
institutions
object[]
accounts
object[]