Alianza Account User API

The Account User API from Alianza — 3 operation(s) for account user.

Operations 7

GET /v2/partition/{partitionId}/account/{accountId}/accountuser Get user list #
POST /v2/partition/{partitionId}/account/{accountId}/accountuser Create user #
GET /v2/partition/{partitionId}/account/{accountId}/accountuser/{userId} Retrieve user #
PUT /v2/partition/{partitionId}/account/{accountId}/accountuser/{userId} Update user #
DELETE /v2/partition/{partitionId}/account/{accountId}/accountuser/{userId} Delete user #
PATCH /v2/partition/{partitionId}/account/{accountId}/accountuser/{userId} Update user #
PUT /v2/partition/{partitionId}/account/{accountId}/accountuser/{userId}/resetpassword Reset user password #

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/alianza-account-user-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

alianza-account-user-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Alianza Account User API
  version: '2'
  description: 'Operations tagged Account User across 3 of this provider''s published API definitions: alianza-account-user-api-openapi.yml, alianza-apidocs-swagger2-original.json, alianza-openapi-original.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.d2.alianza.com
  description: Development
- url: https://api.q2.alianza.com
  description: QA
- url: https://api.b2.alianza.com
  description: Beta
- url: https://api.alianza.com
  description: Production
tags:
- name: Account User
paths:
  /v2/partition/{partitionId}/account/{accountId}/accountuser:
    servers:
    - url: https://api.d2.alianza.com
      description: Development
    - url: https://api.q2.alianza.com
      description: QA
    - url: https://api.b2.alianza.com
      description: Beta
    - url: https://api.alianza.com
      description: Production
    get:
      tags:
      - Account User
      summary: Get user list
      description: Use to retrieve a list of users. limitedData is provided to enable large result sets retreived without long retrieval times
      operationId: list
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      - name: limitedData
        in: query
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: AccountUserX
              $ref: '#/components/schemas/AccountUserX_2'
          content:
            application/json:
              schema:
                type: array
                items:
                  originalRef: AccountUserX
                  $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid partition or account ID
        '404':
          description: Not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: AccountUserX
              $ref: '#/components/schemas/AccountUserX_2'
          schema:
            type: array
            items:
              originalRef: AccountUserX
              $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid partition or account ID
        '404':
          description: Not found
    post:
      tags:
      - Account User
      summary: Create user
      description: Use to create a user
      operationId: create_2
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
          content:
            application/json:
              schema:
                originalRef: AccountUserX
                $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid user object
        '404':
          description: User not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
          schema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid user object
        '404':
          description: User not found
      requestBody:
        content:
          application/json:
            schema:
              originalRef: AccountUserX
              $ref: '#/components/schemas/AccountUserX_2'
        description: End user object
        required: true
  /v2/partition/{partitionId}/account/{accountId}/accountuser/{userId}:
    servers:
    - url: https://api.d2.alianza.com
      description: Development
    - url: https://api.q2.alianza.com
      description: QA
    - url: https://api.b2.alianza.com
      description: Beta
    - url: https://api.alianza.com
      description: Production
    get:
      tags:
      - Account User
      summary: Retrieve user
      description: Use to retrieve a user
      operationId: getUser
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      - name: userId
        in: path
        description: ID of end-user
        required: true
        schema:
          type: string
      - name: idType
        in: query
        description: Defines if the Id is the userid for the username
        required: false
        schema:
          type: string
          enum:
          - Id
          - UserName
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
          content:
            application/json:
              schema:
                originalRef: AccountUserX
                $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid account ID or user ID
        '404':
          description: Account user not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
          schema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid account ID or user ID
        '404':
          description: Account user not found
    put:
      tags:
      - Account User
      summary: Update user
      description: Use to update a user
      operationId: update_3
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      - name: userId
        in: path
        description: ID of end-user
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
          content:
            application/json:
              schema:
                originalRef: AccountUserX
                $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid user ID or user object
        '404':
          description: User not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
          schema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid user ID or user object
        '404':
          description: User not found
      requestBody:
        content:
          application/json:
            schema:
              originalRef: AccountUserX
              $ref: '#/components/schemas/AccountUserX_2'
        description: Account user object
        required: true
    delete:
      tags:
      - Account User
      summary: Delete user
      description: Use to delete a user
      operationId: delete_3
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      - name: userId
        in: path
        description: ID of end-user
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            type: string
          content:
            application/json:
              schema:
                type: string
        '400':
          description: Invalid user ID
        '404':
          description: Account user not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            type: string
          schema:
            type: string
        '400':
          description: Invalid user ID
        '404':
          description: Account user not found
    patch:
      tags:
      - Account User
      summary: Update user
      description: Use to update a user
      operationId: patch_3
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      - name: userId
        in: path
        description: ID of end-user
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
          content:
            application/json:
              schema:
                originalRef: AccountUserX
                $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid user ID or user object
        '404':
          description: User not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
          schema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid user ID or user object
        '404':
          description: User not found
      requestBody:
        content:
          application/json:
            schema:
              originalRef: AccountUserX
              $ref: '#/components/schemas/AccountUserX_2'
        description: Account user object
        required: true
  /v2/partition/{partitionId}/account/{accountId}/accountuser/{userId}/resetpassword:
    servers:
    - url: https://api.d2.alianza.com
      description: Development
    - url: https://api.q2.alianza.com
      description: QA
    - url: https://api.b2.alianza.com
      description: Beta
    - url: https://api.alianza.com
      description: Production
    put:
      tags:
      - Account User
      summary: Reset user password
      description: Use to reset the password of a user
      operationId: resetPassword_1
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      - name: userId
        in: path
        description: ID of end-user
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
          content:
            application/json:
              schema:
                originalRef: AccountUserX
                $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid user ID
        '404':
          description: User not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
          schema:
            originalRef: AccountUserX
            $ref: '#/components/schemas/AccountUserX_2'
        '400':
          description: Invalid user ID
        '404':
          description: User not found
components:
  schemas:
    AccountUserX_2:
      type: object
      properties:
        partitionId:
          type: string
        accountId:
          type: string
        userId:
          type: string
        subDomain:
          type: string
        username:
          type: string
        password:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        mustChangePassword:
          type: boolean
        languageTag:
          type: string
        id:
          type: string
  securitySchemes:
    X-Auth-Token:
      type: apiKey
      in: header
      name: X-AUTH-TOKEN
x-refined-from:
- alianza-account-user-api-openapi.yml
- alianza-apidocs-swagger2-original.json
- alianza-openapi-original.yml