Strivacity Account API

The Account API from Strivacity — 23 operation(s) for account.

Operations 27

GET /admin/api/v1/identityStores/{identityStoreName}/accounts List accounts #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts Create an account #
DELETE /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId} Delete an account #
GET /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId} Get an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/authenticators Create authenticator for an account #
DELETE /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/authenticators/{authenticatorId} Delete authenticator for an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/disable Disable an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/enable Enable an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/groups Assign groups to an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/identities/identifier Update identifier for an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/impersonation Request impersonation of an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/liftPasscodeLock Lift passcode lock for an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/liftPasswordLock Lift password lock for an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/lock Set lock for an account #
PUT /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/notificationPreferences Update notification preferences for an account #
PUT /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/organization Update organization for an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/password/change Change password for an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/password/reset Request password reset for an account #
PUT /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/personal Update metadata of an account #
GET /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/provisions List provision statuses for an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/provisions/{outboundProvisionId}/sync Set provision target priority for an account #
GET /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/roles List role assignments for an account #
POST /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/roles Assign multiple roles to an organization for an account #
DELETE /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/roles/{roleId} Delete an organization role assignment from an account #
DELETE /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/sessions Clear sessions for an account #
GET /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/sessions List sessions for an account #
DELETE /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/sessions/{sessionId} Delete session for an account #

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-account-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-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API documentation of Admin Portal
  title: Admin Portal Account API
  version: v0.0.1
servers:
- url: https://{tenant}
  variables:
    tenant:
      default: example.strivacity.com
      description: Your Strivacity tenant
tags:
- name: Account
paths:
  /admin/api/v1/identityStores/{identityStoreName}/accounts:
    get:
      description: 'You can list the existing accounts by calling this endpoint. Filtering can be done by the parameters listed below and by custom searchable attributes. The `password` type authenticator will be excluded from the response.


        | REQUIRED API PERMISSION |

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

        | read:account |'
      operationId: listAccounts
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - description: 'Custom filter applicable only for searchable attribute in the following format: `attribute_[path]`, e.g. `attribute_name.givenName`'
        in: query
        name: attribute_[path]
        schema:
          type: string
      - description: Account ID
        in: query
        name: id
        schema:
          type: string
      - description: Login identifier (username, email or phone). Start with `@` to search by email domain. When searching by domain, only email addresses belonging to that domain or its subdomains are returned.
        in: query
        name: loginIdentifier
        schema:
          type: string
      - description: Attribute mapped to the Email native claim. Start with `@` to search by domain. When searching by domain, only email addresses belonging to that domain or its subdomains are returned.
        in: query
        name: emailNativeClaim
        schema:
          type: string
      - description: User name in account info
        in: query
        name: userNameNativeClaim
        schema:
          type: string
      - description: Account is enabled or not
        in: query
        name: enabled
        schema:
          type: boolean
      - description: Start date used for filtering based on updatedAt field. Accepted formats are an ISO 8061 timestamp or an ISO 8061 duration with a +/- prefix.
        in: query
        name: updatedAtStartDate
        schema:
          type: string
          format: date-time
      - description: End date used for filtering based on updatedAt field. Accepted formats are an ISO 8061 timestamp or an ISO 8061 duration with a +/- prefix.
        in: query
        name: updatedAtEndDate
        schema:
          type: string
          format: date-time
      - description: Start date used for filtering based on createdAt field. Accepted formats are an ISO 8061 timestamp or an ISO 8061 duration with a +/- prefix.
        in: query
        name: createdAtStartDate
        schema:
          type: string
          format: date-time
      - description: End date used for filtering based on createdAt field. Accepted formats are an ISO 8061 timestamp or an ISO 8061 duration with a +/- prefix.
        in: query
        name: createdAtEndDate
        schema:
          type: string
          format: date-time
      - description: Start date used for filtering based on disabledAt field. Accepted formats are an ISO 8061 timestamp or an ISO 8061 duration with a +/- prefix.
        in: query
        name: disabledAtStartDate
        schema:
          type: string
          format: date-time
      - description: End date used for filtering based on disabledAt field. Accepted formats are an ISO 8061 timestamp or an ISO 8061 duration with a +/- prefix.
        in: query
        name: disabledAtEndDate
        schema:
          type: string
          format: date-time
      - description: Start date used for filtering based on lastLoggedIn field. Must not be provided if `neverLoggedIn` is true. Accepted formats are an ISO 8061 timestamp or an ISO 8061 duration with a +/- prefix.
        in: query
        name: lastLoginAtStartDate
        schema:
          type: string
          format: date-time
      - description: End date used for filtering based on lastLoggedIn field. Must not be provided if `neverLoggedIn` is true. Accepted formats are an ISO 8061 timestamp or an ISO 8061 duration with a +/- prefix.
        in: query
        name: lastLoginAtEndDate
        schema:
          type: string
          format: date-time
      - description: Flag to filter for accounts that have never logged in.
        in: query
        name: neverLoggedIn
        schema:
          type: boolean
      - description: Start date used for filtering based on lastAuthenticationActivity field. Must not be provided if `neverLoggedIn` is true. Accepted formats are an ISO 8061 timestamp or an ISO 8061 duration with a +/- prefix.
        in: query
        name: lastAuthenticationActivityAtStartDate
        schema:
          type: string
          format: date-time
      - description: End date used for filtering based on lastAuthenticationActivity field. Must not be provided if `neverLoggedIn` is true. Accepted formats are an ISO 8061 timestamp or an ISO 8061 duration with a +/- prefix.
        in: query
        name: lastAuthenticationActivityAtEndDate
        schema:
          type: string
          format: date-time
      - description: Organization ID
        in: query
        name: organization
        schema:
          type: string
      - description: Filter accounts that are under the provided unique identifier organization ID
        in: query
        name: organizationScope
        schema:
          type: string
      - content:
          '*/*':
            schema:
              type: array
              items:
                type: string
        description: Group IDs used for filtering
        in: query
        name: groups
      - description: Type of inclusion used for groups filter. By setting to `exclude` makes it an `AND` relationship within the values of the groups parameter.
        in: query
        name: groupsFilter
        schema:
          type: string
          enum:
          - include
          - exclude
      - content:
          '*/*':
            schema:
              type: array
              items:
                type: string
        description: 'Organization-role pairs used for filtering, should be provided in the following form: `[organizationId]:[roleId]`'
        in: query
        name: roles
      - description: Type of inclusion used for roles filter. By setting to `exclude` makes it an `AND` relationship within the values of the roles parameter.
        in: query
        name: rolesFilter
        schema:
          type: string
          enum:
          - include
          - exclude
      - 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:
                type: array
                items:
                  $ref: '#/components/schemas/AccountResponse_Account'
          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
      security:
      - securityScheme:
        - read:account
      summary: List accounts
      tags:
      - Account
    post:
      description: 'You can create an account by calling this endpoint.


        Identifiers must be set depending on which identifiers are mandatory in the identity store.

        Username: `local.id`

        Email: `email.id`

        Phone: `phone.id`


        | REQUIRED API PERMISSION |

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

        | write:account |'
      operationId: createAccount
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: header
        name: X-Skip-Email-Verification
        required: false
        schema:
          type: boolean
      - in: header
        name: X-Skip-Phone-Verification
        required: false
        schema:
          type: boolean
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccountInsertRequest_Account'
        required: true
      responses:
        '201':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AccountResponse_Account'
          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
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
        '409':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Conflict
      security:
      - securityScheme:
        - write:account
      summary: Create an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}:
    delete:
      description: 'You can delete an account by calling this endpoint.


        | REQUIRED API PERMISSION |

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

        | delete:account |'
      operationId: deleteAccountById
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        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
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - delete:account
      summary: Delete an account
      tags:
      - Account
    get:
      description: 'You can get an account by calling this endpoint.


        | REQUIRED API PERMISSION |

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

        | read:account |'
      operationId: getAccountById
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AccountResponse_Account'
          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:account
      summary: Get an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/authenticators:
    post:
      description: 'You can create an authenticator for an account by calling this endpoint. Authenticator type can be either `email` or `phone`.


        | REQUIRED API PERMISSION |

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

        | write:account_authenticator |'
      operationId: addAuthenticator
      parameters:
      - description: Header containing the client object identifier (not the OIDC client ID)
        in: header
        name: X-Notification-By-Application
        required: false
        schema:
          type: string
      - in: header
        name: X-Skip-Email-Verification
        required: false
        schema:
          type: boolean
      - in: header
        name: X-Skip-Phone-Verification
        required: false
        schema:
          type: boolean
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AuthenticatorAdminInsertRequest_Account'
        required: true
      responses:
        '201':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AuthenticatorResponse_Account'
          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
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
        '409':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Conflict
      security:
      - securityScheme:
        - write:account_authenticator
      summary: Create authenticator for an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/authenticators/{authenticatorId}:
    delete:
      description: 'You can delete an authenticator for an account by calling this endpoint.


        | REQUIRED API PERMISSION |

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

        | delete:account_authenticator |'
      operationId: deleteAuthenticator
      parameters:
      - description: Header containing the client object identifier (not the OIDC client ID)
        in: header
        name: X-Notification-By-Application
        required: false
        schema:
          type: string
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          type: string
      - in: path
        name: authenticatorId
        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
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - delete:account_authenticator
      summary: Delete authenticator for an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/disable:
    post:
      description: 'You can disable an account by calling this endpoint.


        | REQUIRED API PERMISSION |

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

        | write:account |'
      operationId: disableAccount
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          type: string
      responses:
        '200':
          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:
        - write:account
      summary: Disable an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/enable:
    post:
      description: 'You can enable an account by calling this endpoint.


        | REQUIRED API PERMISSION |

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

        | write:account |'
      operationId: enableAccount
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          type: string
      responses:
        '200':
          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:
        - write:account
      summary: Enable an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/groups:
    post:
      description: 'You can assign one or multiple groups to an account by calling this endpoint. To use this endpoint, both `read:config_identity_store` and `write:account` scopes should be granted.


        | REQUIRED API PERMISSION |

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

        | read:config_identity_store |

        | write:account |'
      operationId: addGroupsToAccount
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IdReferenceRequest_Account'
        required: true
      responses:
        '204':
          description: No Content
        '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
      security:
      - securityScheme:
        - read:config_identity_store
        - write:account
      summary: Assign groups to an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/identities/identifier:
    post:
      description: 'You can update the identifier for an account by calling this endpoint.


        | REQUIRED API PERMISSION |

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

        | write:account_identity |'
      operationId: updateAccountIdentifier
      parameters:
      - description: Header containing the client object identifier (not the OIDC client ID)
        in: header
        name: X-Notification-By-Application
        required: false
        schema:
          type: string
      - in: header
        name: X-Skip-Email-Verification
        required: false
        schema:
          type: boolean
      - in: header
        name: X-Skip-Phone-Verification
        required: false
        schema:
          type: boolean
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccountIdentifierUpdateRequest_Account'
        required: true
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/IdentitiesResponse_Account'
          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:account_identity
      summary: Update identifier for an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/impersonation:
    post:
      description: 'You can request an impersonation for an account by calling this endpoint. A impersonation link will be generated to impersonate the corresponding account.


        | REQUIRED API PERMISSION |

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

        | write:account_impersonation |'
      operationId: impersonation
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          minLength: 1
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImpersonationInsertRequest_Account'
        required: true
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ImpersonationResponse_Account'
          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
      security:
      - securityScheme:
        - write:account_impersonation
      summary: Request impersonation of an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/liftPasscodeLock:
    post:
      description: 'You can lift passcode lock for an account by calling this endpoint.


        | REQUIRED API PERMISSION |

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

        | write:account |'
      operationId: liftPasscodeLock
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        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
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - write:account
      summary: Lift passcode lock for an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/liftPasswordLock:
    post:
      description: 'You can lift password lock for an account by calling this endpoint.


        | REQUIRED API PERMISSION |

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

        | write:account |'
      operationId: liftPasswordLock
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        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
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - write:account
      summary: Lift password lock for an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/lock:
    post:
      description: 'You can set a lock for an account by calling this endpoint.


        | REQUIRED API PERMISSION |

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

        | write:account |'
      operationId: lock
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          type: string
      - description: Header containing the client object identifier (not the OIDC client ID)
        in: header
        name: X-Notification-By-Application
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccountLockRequest'
        required: true
      responses:
        '204':
          description: No Content
        '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:account
      summary: Set lock for an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/notificationPreferences:
    put:
      description: 'You can update the notification preferences for an account by calling this endpoint.


        | REQUIRED API PERMISSION |

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

        | write:account |'
      operationId: updateAccountNotificationPreferences
      parameters:
      - description: Header containing the client object identifier (not the OIDC client ID)
        in: header
        name: X-Notification-By-Application
        required: false
        schema:
          type: string
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationPreferencesRequest'
        required: true
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/NotificationPreferencesResponse'
          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
      security:
      - securityScheme:
        - write:account
      summary: Update notification preferences for an account
      tags:
      - Account
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/organization:
    put:
      de

# --- truncated at 32 KB (69 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/strivacity/refs/heads/main/openapi/strivacity-account-api-openapi.yml