Palo Alto Networks User Accounts API

The UserAccounts API from Palo Alto Networks — 1 operation(s) for useraccounts.

Operations 2

GET /iam/v1/sso_users Verify a user account #
POST /iam/v1/sso_users Create an SSO 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/palo-alto-networks-useraccounts-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

palo-alto-networks-useraccounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Palo Alto Networks User Accounts API
  version: '1.0'
  contact: {}
  description: 'Operations tagged UserAccounts across 2 of this provider''s published API definitions: palo-alto-sase-iam-useraccounts-openapi.yaml, palo-alto-scm-iam-useraccounts-openapi.yaml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.sase.paloaltonetworks.com
tags:
- name: UserAccounts
paths:
  /iam/v1/sso_users:
    get:
      description: "Verify that the email address provided to this API corresponds to\nan existing [login account](/sase/docs/user-accounts#log-in-accounts).\n\nThis API contains a JSON object in it's response. If the \n`profile_exists` field in that object is `true`, then the\nemail address is associated with a login account. \n\nIf `profile_exists` is `false`, a login account is not found for this email address.\nIn that case, a login account must be created for the user before\nthe user can perform the actions identified by any access policies\nassigned to the user's account. \n"
      operationId: get-iam-v1-sso_users
      parameters:
      - description: 'The email address used to identify the login account that you want to verify.

          '
        in: query
        name: email
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              examples:
                Profile Exists:
                  value:
                    profile_exists: true
          description: Successful response.
      security:
      - Bearer: []
      summary: Verify a user account
      tags:
      - UserAccounts
    post:
      description: "Create a new Palo Alto Networks SSO account. If the email address that you provide to this\nrequest is already used for an existing login account, then this request\nreturns `200` without performing any other operations.\n\nSee [Manage User Accounts](/sase/docs/user-accounts) \nfor information about login accounts.\n"
      operationId: post-iam-v1-sso_users
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/user_register'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/user_register'
          description: Successful response - user registered for SSO
      security:
      - Bearer: []
      summary: Create an SSO account
      tags:
      - UserAccounts
    servers:
    - url: https://api.sase.paloaltonetworks.com
components:
  schemas:
    user_register:
      description: ''
      properties:
        email:
          description: "The email address that you want to use to create this \nSSO user account.\n"
          example: someemail33@somedomain.com
          type: string
        firstname:
          description: 'The user''s familiar name.

            '
          example: John
          type: string
        lastname:
          description: 'The user''s surname, or family name.

            '
          example: Smith
          type: string
      required:
      - email
      - firstname
      - lastname
      title: Root Type for user_register
      type: object
  securitySchemes:
    Bearer:
      scheme: bearer
      type: http
x-refined-from:
- palo-alto-sase-iam-useraccounts-openapi.yaml
- palo-alto-scm-iam-useraccounts-openapi.yaml