Strivacity Password Quality Policy API

The Password Quality Policy API from Strivacity — 2 operation(s) for password quality policy.

Operations 5

GET /admin/api/v1/passwordPolicies List password quality policies #
POST /admin/api/v1/passwordPolicies Create a password quality policy #
DELETE /admin/api/v1/passwordPolicies/{id} Delete a password quality policy #
GET /admin/api/v1/passwordPolicies/{id} Get a password quality policy #
PUT /admin/api/v1/passwordPolicies/{id} Update a password quality policy #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/strivacity-password-quality-policy-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

strivacity-password-quality-policy-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API documentation of Admin Portal
  title: Admin Portal Password Quality Policy API
  version: v0.0.1
servers:
- url: https://{tenant}
  variables:
    tenant:
      default: example.strivacity.com
      description: Your Strivacity tenant
tags:
- name: Password Quality Policy
paths:
  /admin/api/v1/passwordPolicies:
    get:
      description: 'You can list the existing password quality policies by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | read:config_password_policy |'
      operationId: getAllPasswordPolicies
      parameters:
      - description: Tags used for filtering must exactly match the tag name
        in: query
        name: policyTags
        required: false
        schema:
          uniqueItems: true
          type: array
          items:
            type: string
      - description: Name used for filtering
        in: query
        name: name
        required: false
        schema:
          type: string
      - description: Zero-based page index (0..N)
        in: query
        name: page
        schema:
          type: integer
          format: int64
          default: 0
      - description: The size of the page to be returned
        in: query
        name: size
        schema:
          type: integer
          format: int64
          default: 20
      - description: 'Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.'
        in: query
        name: sort
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PagedModelPasswordPolicyResponse'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
      security:
      - securityScheme:
        - read:config_password_policy
      summary: List password quality policies
      tags:
      - Password Quality Policy
    post:
      description: 'You can create a password quality policy by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | write:config_password_policy |'
      operationId: createPasswordPolicy
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PasswordPolicy_InsertRequest'
        required: true
      responses:
        '201':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PasswordPolicyResponse_PasswordPolicy'
          description: Created
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '409':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Conflict
      security:
      - securityScheme:
        - write:config_password_policy
      summary: Create a password quality policy
      tags:
      - Password Quality Policy
  /admin/api/v1/passwordPolicies/{id}:
    delete:
      description: 'You can delete a password quality policy by calling this endpoint. Password quality policies assigned to identity stores cannot be deleted.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | delete:config_password_policy |'
      operationId: deletePasswordPolicy
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '409':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Policy assigned to some identity stores cannot be deleted.
      security:
      - securityScheme:
        - delete:config_password_policy
      summary: Delete a password quality policy
      tags:
      - Password Quality Policy
    get:
      description: 'You can get a password quality policy by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | read:config_password_policy |'
      operationId: getPasswordPolicy
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PasswordPolicyResponse_PasswordPolicy'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - read:config_password_policy
      summary: Get a password quality policy
      tags:
      - Password Quality Policy
    put:
      description: 'You can update a password quality policy by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | write:config_password_policy |'
      operationId: updatePasswordPolicy
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PasswordPolicyUpsertRequest_PasswordPolicy'
        required: true
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PasswordPolicyResponse_PasswordPolicy'
          description: OK
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
        '409':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Conflict
      security:
      - securityScheme:
        - write:config_password_policy
      summary: Update a password quality policy
      tags:
      - Password Quality Policy
components:
  schemas:
    ProblemJson:
      type: object
      properties:
        detail:
          type: string
        entityName:
          type: string
          description: The name of the entity within the error has occurred
        errorKey:
          type: string
          description: A unique identifier of the error
        fieldErrors:
          type: array
          description: Field constraint violation errors
          items:
            $ref: '#/components/schemas/FieldError'
        message:
          type: string
          description: A unique identifier in format of 'error.{errorKey}'
        params:
          type: array
          description: Further information related to the actual error
          items:
            type: object
            additionalProperties:
              type: object
        path:
          type: string
          description: Request URI
        status:
          type: integer
          description: Status code
          format: int32
        title:
          type: string
      description: Based on [RFC 7807](https://datatracker.ietf.org/doc/html/rfc7807)
    PasswordPolicyConstraints_PasswordPolicy:
      required:
      - enforcePasswordChange
      - filterNumericCharacterSequences
      - filterPreviousPasswords
      - filterRepeatedCharacters
      - passwordChangeReminder
      type: object
      properties:
        enforcePasswordChange:
          $ref: '#/components/schemas/PasswordPolicyConstraints.EnforcePasswordChange_PasswordPolicy'
        exclude:
          uniqueItems: true
          type: array
          items:
            type: string
            enum:
            - USERNAME_PART
            - GIVEN_NAME
            - FAMILY_NAME
          default: []
        filterNumericCharacterSequences:
          $ref: '#/components/schemas/PasswordPolicyConstraints.FilterNumericCharacterSequences_PasswordPolicy'
        filterPreviousPasswords:
          $ref: '#/components/schemas/PasswordPolicyConstraints.FilterPreviousPasswords_PasswordPolicy'
        filterRepeatedCharacters:
          $ref: '#/components/schemas/PasswordPolicyConstraints.FilterRepeatedCharacters_PasswordPolicy'
        maximumLength:
          maximum: 256
          minimum: 8
          type: integer
          format: int32
          default: 256
        minimumLength:
          maximum: 64
          minimum: 8
          type: integer
          format: int32
          default: 8
        passwordChangeReminder:
          $ref: '#/components/schemas/PasswordPolicyConstraints.PasswordChangeReminder_PasswordPolicy'
        required:
          uniqueItems: true
          type: array
          items:
            type: string
            enum:
            - UPPERCASE
            - LOWERCASE
            - NUMERIC
            - SPECIAL
          default: []
        restrictedCharacters:
          maxLength: 1024
          minLength: 0
          type: string
      description: Represents constraints the policy poses.
    PageMetadata:
      type: object
      properties:
        number:
          type: integer
          format: int64
        size:
          type: integer
          format: int64
        totalElements:
          type: integer
          format: int64
        totalPages:
          type: integer
          format: int64
    PasswordPolicyConstraintsResponse.FilterNumericCharacterSequences:
      type: object
      properties:
        enabled:
          type: boolean
        maxAllowed:
          type: integer
          format: int32
      description: Filter sequential numbers in passwords
    PasswordPolicyConstraintsResponse.EnforcePasswordChange:
      type: object
      properties:
        enabled:
          type: boolean
        maxAgeDays:
          type: integer
          format: int32
      description: Enforce password change after certain days
    PasswordPolicyUpsertRequest_PasswordPolicy:
      required:
      - id
      - name
      - policy
      type: object
      properties:
        breachedPasswordProtection:
          type: boolean
          default: true
        description:
          maxLength: 1024
          minLength: 0
          type: string
        id:
          type: string
        name:
          maxLength: 64
          minLength: 3
          pattern: ^$|^[\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*°]([\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*° ]*[\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*°])?$
          type: string
        passwordRequirementIndicator:
          type: boolean
          default: true
        policy:
          $ref: '#/components/schemas/PasswordPolicyConstraints_PasswordPolicy'
        policyTag:
          pattern: ^[a-z0-9_]{2,32}$
          type: string
          description: Must be an existing policy tag name
    PasswordPolicyConstraints.FilterNumericCharacterSequences_PasswordPolicy:
      type: object
      properties:
        enabled:
          type: boolean
          default: false
        maxAllowed:
          maximum: 5
          minimum: 1
          type: integer
          format: int32
          default: 2
      description: Filter sequential numbers in passwords
    PagedModelPasswordPolicyResponse:
      type: object
      properties:
        content:
          type: array
          items:
            $ref: '#/components/schemas/PasswordPolicyResponse'
        page:
          $ref: '#/components/schemas/PageMetadata'
    PasswordPolicyConstraintsResponse.PasswordChangeReminder:
      type: object
      properties:
        enabled:
          type: boolean
        reminderIntervalDays:
          type: integer
          format: int32
        reminderStartAgeDays:
          type: integer
          format: int32
      description: Password change reminder shown after certain days
    PasswordPolicyConstraintsResponse.FilterRepeatedCharacters:
      type: object
      properties:
        enabled:
          type: boolean
        maxAllowed:
          type: integer
          format: int32
      description: Filter repeated characters in passwords
    PasswordPolicyConstraintsResponse_PasswordPolicy:
      type: object
      properties:
        enforcePasswordChange:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse.EnforcePasswordChange_PasswordPolicy'
        exclude:
          uniqueItems: true
          type: array
          items:
            type: string
            enum:
            - USERNAME_PART
            - GIVEN_NAME
            - FAMILY_NAME
        filterNumericCharacterSequences:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse.FilterNumericCharacterSequences_PasswordPolicy'
        filterPreviousPasswords:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse.FilterPreviousPasswords_PasswordPolicy'
        filterRepeatedCharacters:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse.FilterRepeatedCharacters_PasswordPolicy'
        maximumLength:
          type: integer
          format: int32
        minimumLength:
          type: integer
          format: int32
        passwordChangeReminder:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse.PasswordChangeReminder_PasswordPolicy'
        required:
          uniqueItems: true
          type: array
          items:
            type: string
            enum:
            - UPPERCASE
            - LOWERCASE
            - NUMERIC
            - SPECIAL
        restrictedCharacters:
          type: string
      description: Represents constraints the policy poses.
    PasswordPolicyConstraintsResponse.FilterPreviousPasswords_PasswordPolicy:
      type: object
      properties:
        enabled:
          type: boolean
        historySize:
          type: integer
          format: int32
        minAgeDays:
          type: integer
          format: int32
        minAgeDaysEnabled:
          type: boolean
      description: Disallow previously used passwords when changing password
    PasswordPolicyConstraintsResponse.FilterPreviousPasswords:
      type: object
      properties:
        enabled:
          type: boolean
        historySize:
          type: integer
          format: int32
        minAgeDays:
          type: integer
          format: int32
        minAgeDaysEnabled:
          type: boolean
      description: Disallow previously used passwords when changing password
    PasswordPolicyConstraintsResponse.PasswordChangeReminder_PasswordPolicy:
      type: object
      properties:
        enabled:
          type: boolean
        reminderIntervalDays:
          type: integer
          format: int32
        reminderStartAgeDays:
          type: integer
          format: int32
      description: Password change reminder shown after certain days
    FieldError:
      type: object
      properties:
        field:
          type: string
        message:
          type: string
        objectName:
          type: string
    PasswordPolicyResponse_PasswordPolicy:
      type: object
      properties:
        breachedPasswordProtection:
          type: boolean
        description:
          type: string
        id:
          type: string
        name:
          type: string
        passwordRequirementIndicator:
          type: boolean
        policy:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse_PasswordPolicy'
        policyTag:
          type: string
    PasswordPolicyConstraintsResponse.EnforcePasswordChange_PasswordPolicy:
      type: object
      properties:
        enabled:
          type: boolean
        maxAgeDays:
          type: integer
          format: int32
      description: Enforce password change after certain days
    PasswordPolicyConstraintsResponse.FilterRepeatedCharacters_PasswordPolicy:
      type: object
      properties:
        enabled:
          type: boolean
        maxAllowed:
          type: integer
          format: int32
      description: Filter repeated characters in passwords
    PasswordPolicyConstraints.FilterRepeatedCharacters_PasswordPolicy:
      type: object
      properties:
        enabled:
          type: boolean
          default: false
        maxAllowed:
          maximum: 5
          minimum: 1
          type: integer
          format: int32
          default: 2
      description: Filter repeated characters in passwords
    PasswordPolicyConstraintsResponse.FilterNumericCharacterSequences_PasswordPolicy:
      type: object
      properties:
        enabled:
          type: boolean
        maxAllowed:
          type: integer
          format: int32
      description: Filter sequential numbers in passwords
    PasswordPolicy_InsertRequest:
      required:
      - name
      - policy
      type: object
      properties:
        breachedPasswordProtection:
          type: boolean
          default: true
        description:
          maxLength: 1024
          minLength: 0
          type: string
        name:
          maxLength: 64
          minLength: 3
          pattern: ^$|^[\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*°]([\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*° ]*[\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*°])?$
          type: string
        passwordRequirementIndicator:
          type: boolean
          default: true
        policy:
          $ref: '#/components/schemas/PasswordPolicyConstraints_PasswordPolicy'
        policyTag:
          pattern: ^[a-z0-9_]{2,32}$
          type: string
          description: Must be an existing policy tag name
    PasswordPolicyConstraints.EnforcePasswordChange_PasswordPolicy:
      type: object
      properties:
        enabled:
          type: boolean
          description: Enables password `maxAgeDays` restriction
          default: false
        maxAgeDays:
          maximum: 365
          minimum: 1
          type: integer
          description: Enforce password change after a specified number of days
          format: int32
          default: 30
      description: Password age restriction configuration
    PasswordPolicyConstraints.FilterPreviousPasswords_PasswordPolicy:
      type: object
      properties:
        enabled:
          type: boolean
          description: Enables password `historySize` restriction
          default: false
        historySize:
          maximum: 99
          minimum: 1
          type: integer
          description: Specifies a restriction on the number of previous passwords that cannot be reused
          format: int32
          default: 10
        minAgeDays:
          maximum: 99
          minimum: 1
          type: integer
          description: Specifies a minimum time interval in days before a previously used password can be reused.
          format: int32
          default: 3
        minAgeDaysEnabled:
          type: boolean
          description: Enables password `minAgeDays` restriction
          default: false
      description: Password reuse restriction configuration
    PasswordPolicyConstraintsResponse:
      type: object
      properties:
        enforcePasswordChange:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse.EnforcePasswordChange'
        exclude:
          uniqueItems: true
          type: array
          items:
            type: string
            enum:
            - USERNAME_PART
            - GIVEN_NAME
            - FAMILY_NAME
        filterNumericCharacterSequences:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse.FilterNumericCharacterSequences'
        filterPreviousPasswords:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse.FilterPreviousPasswords'
        filterRepeatedCharacters:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse.FilterRepeatedCharacters'
        maximumLength:
          type: integer
          format: int32
        minimumLength:
          type: integer
          format: int32
        passwordChangeReminder:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse.PasswordChangeReminder'
        required:
          uniqueItems: true
          type: array
          items:
            type: string
            enum:
            - UPPERCASE
            - LOWERCASE
            - NUMERIC
            - SPECIAL
        restrictedCharacters:
          type: string
      description: Represents constraints the policy poses.
    PasswordPolicyResponse:
      type: object
      properties:
        breachedPasswordProtection:
          type: boolean
        description:
          type: string
        id:
          type: string
        name:
          type: string
        passwordRequirementIndicator:
          type: boolean
        policy:
          $ref: '#/components/schemas/PasswordPolicyConstraintsResponse'
        policyTag:
          type: string
    PasswordPolicyConstraints.PasswordChangeReminder_PasswordPolicy:
      type: object
      properties:
        enabled:
          type: boolean
          description: Enables password change reminder
          default: false
        reminderIntervalDays:
          maximum: 60
          minimum: 0
          type: integer
          description: Days to wait after Remind Me Later before showing another reminder
          format: int32
          default: 7
        reminderStartAgeDays:
          maximum: 1825
          minimum: 0
          type: integer
          description: Password age when reminders begin
          format: int32
          default: 90
      description: Password change reminder configuration
  securitySchemes:
    securityScheme:
      scheme: bearer
      type: http