ObservePoint Users API

Endpoints for managing users including creation, authentication, permissions, and user account management

Operations 7

GET /users Return all users for current user account #
GET /users/{userId} Return user data by given id. #
PUT /users/{userId} Update user data by given userId.Accessible only for admin users or if {userId}… #
DELETE /users/{userId} Delete user by given id. Accessible only for admin users #
GET /users/{userId}/folders Return folders list shared with user by given id. #
POST /users/{userId}/folders Add given folders as shared for user with given userId.Accessible only for… #
PUT /users/{userId}/folders Set given folders as shared for user with given userId. #

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/observepoint-users-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

observepoint-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Endpoints for managing users including creation, authentication, permissions, and user account management
  title: V2 Users API
  version: null
servers:
- url: https://api.observepoint.com/v2
tags:
- description: Endpoints for managing users including creation, authentication, permissions, and user account management
  name: Users
paths:
  /users:
    get:
      description: GET /v2/users
      operationId: getUsers
      parameters:
      - name: withDeleted
        in: query
        description: Include deleted users
        required: false
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/User'
                type: array
        '403':
          description: Not Admin User
      security:
      - API_Key: []
      summary: Return all users for current user account
      tags:
      - Users
  /users/{userId}:
    get:
      description: GET /v2/users/{userId}
      operationId: getUser
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '403':
          description: Not Admin user or id parameter is not equal to current user id
        '404':
          description: Not found user by given id
      security:
      - API_Key: []
      summary: Return user data by given id.
      tags:
      - Users
    put:
      description: PUT /v2/users/{userId}
      operationId: updateUser
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserDocument'
        description: Updated user data
        required: true
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '403':
          description: Not Admin user or id parameter is not equal to current user id
        '404':
          description: Not found user by given id
      security:
      - API_Key: []
      summary: Update user data by given userId.Accessible only for admin users or if {userId}…
      tags:
      - Users
    delete:
      description: DELETE /v2/users/{userId}
      operationId: deleteUser
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: Item was successfully deleted
        '403':
          description: Not Admin user or id parameter is not equal to current user id
        '404':
          description: Not found user by given id
      security:
      - API_Key: []
      summary: Delete user by given id. Accessible only for admin users
      tags:
      - Users
  /users/{userId}/folders:
    get:
      description: GET /v2/users/{userId}/folders
      operationId: getUserFolders
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/UserFolder'
                type: array
        '403':
          description: Not Admin user or id parameter is not equal to current user id
        '404':
          description: Not found user by given id
      security:
      - API_Key: []
      summary: Return folders list shared with user by given id.
      tags:
      - Users
    post:
      description: POST /v2/users/{userId}/folders
      operationId: addUserFolders
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        $ref: '#/components/requestBodies/addUserFoldersBody'
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/UserFolder'
                type: array
        '403':
          description: Not Admin User
        '404':
          description: Not found user by given id
        '422':
          description: Some of provided folder id's is not found
      security:
      - API_Key: []
      summary: Add given folders as shared for user with given userId.Accessible only for…
      tags:
      - Users
    put:
      description: PUT /v2/users/{userId}/folders
      operationId: setUserFolders
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        $ref: '#/components/requestBodies/addUserFoldersBody'
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/UserFolder'
                type: array
        '403':
          description: Not Admin User
        '404':
          description: Not found user by given id
        '422':
          description: Some of provided folder id's is not found
      security:
      - API_Key: []
      summary: Set given folders as shared for user with given userId.
      tags:
      - Users
components:
  requestBodies:
    addUserFoldersBody:
      content:
        application/json:
          schema:
            items:
              format: int32
              type: integer
            type: array
      description: Folders id list
  schemas:
    UserDocument:
      type: object
      required:
      - email
      - firstName
      - lastName
      - timezone
      - username
      properties:
        email:
          type: string
        firstName:
          type: string
        fullUsageDashboardAccess:
          type: number
        lastName:
          type: string
        maxPagesPerAudit:
          type: number
        permissions:
          enum:
          - guest
          - user
          - admin
          type: string
        timezone:
          type: string
        username:
          type: string
      description: User create/update model
    User:
      type: object
      required:
      - accountId
      - created
      - email
      - firstName
      - fullUsageDashboardAccess
      - id
      - lastName
      - maxPagesPerAudit
      - timezone
      - updated
      - username
      properties:
        accountId:
          format: int32
          type: integer
        created:
          format: date-time
          type: string
        deleted:
          description: ISO 8601 date time string with offset when user was deleted, null if not deleted
          type: string
        email:
          type: string
        firstName:
          type: string
        fullUsageDashboardAccess:
          type: boolean
        id:
          format: int32
          type: integer
        lastLogin:
          format: date-time
          type: string
        lastName:
          type: string
        maxPagesPerAudit:
          format: int32
          type: integer
        permissions:
          enum:
          - guest
          - user
          - admin
          type: string
        timezone:
          type: string
        updated:
          format: date-time
          type: string
        username:
          type: string
      description: User model
    UserFolder:
      type: object
      required:
      - accountId
      - id
      - name
      properties:
        accountId:
          format: int32
          type: integer
        id:
          format: int32
          type: integer
        name:
          type: string
      description: User folder model
  securitySchemes:
    API_Key:
      description: 'Use the `Authorization` header in your requests with ObservePoint API key as header value.


        Example: `Authorization: abc123...def456`'
      in: header
      name: Authorization
      type: apiKey