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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/vectranetworks-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
openapi: 3.2.0
info:
title: Vectranetworks Users API
version: '1.0'
description: 'Operations tagged Users across 2 of this provider''s published API definitions: vectranetworks-detect-v2.3-openapi.yml, vectranetworks-rux-v3.3-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{fqdn}/api/{apiVersion}
description: Vectra Detect API
variables:
fqdn:
description: The FQDN or IP to join the Vectra Detect instance
default: detect-api.demo.vectra.io
apiVersion:
description: The API version to use
default: v2.3
- url: https://{vectra_portal_url}/api/v3.3
description: Vectra Platform API Server
variables:
vectra_portal_url:
default: platform.vectra.ai
tags:
- name: Users
description: Dedicated endpoint to Users.
paths:
/users:
description: Work on several Vectra Users
parameters:
- name: username
description: Filter by user name
in: query
schema:
$ref: '#/components/schemas/name'
- name: role
description: Filter by role
in: query
schema:
$ref: '#/components/schemas/userRole'
- name: account_type
description: Filter by user type
in: query
schema:
$ref: '#/components/schemas/userType'
- name: authentication_profile
description: Filter by authentication profile
in: query
schema:
$ref: '#/components/schemas/userAuthProfile'
- name: last_login_gte
description: Filters for User's that have logged in since the given timestamp
in: query
schema:
$ref: '#/components/schemas/isoDate'
get:
operationId: usersGetSeveral
summary: Search Vectra Users
tags:
- Users
responses:
'200':
description: Vectra Users search succesfull
content:
application/json:
schema:
$ref: '#/components/schemas/resultsOfUsers'
examples:
Users List:
$ref: '#/components/examples/multipleExample'
None Users:
$ref: '#/components/examples/noneUsers'
'400':
$ref: '#/components/responses/invalidQueryParameter'
'401':
$ref: '#/components/responses/invalidToken'
'403':
$ref: '#/components/responses/invalidPermissions'
security:
- VectraToken: []
servers:
- url: https://{fqdn}/api/{apiVersion}
description: Vectra Detect API
variables:
fqdn:
description: The FQDN or IP to join the Vectra Detect instance
default: detect-api.demo.vectra.io
apiVersion:
description: The API version to use
default: v2.3
/users/{userID}:
description: Work on a single Vectra User
parameters:
- name: userID
description: ID of the Vectra User you're working on
in: path
schema:
$ref: '#/components/schemas/ID'
get:
operationId: usersGetSingle
summary: Describe a single Vectra User
tags:
- Users
responses:
'200':
description: A single Vectra user response
content:
application/json:
schema:
$ref: '#/components/schemas/user'
examples:
Admin User:
$ref: '#/components/examples/userAdminExample'
Local User:
$ref: '#/components/examples/userLocalExample'
SAML User:
$ref: '#/components/examples/userSAMLExample'
'401':
$ref: '#/components/responses/invalidToken'
'403':
$ref: '#/components/responses/invalidPermissions'
security:
- VectraToken: []
servers:
- url: https://{fqdn}/api/{apiVersion}
description: Vectra Detect API
variables:
fqdn:
description: The FQDN or IP to join the Vectra Detect instance
default: detect-api.demo.vectra.io
apiVersion:
description: The API version to use
default: v2.3
components:
examples:
multipleExample:
value:
count: 3
next: null
previous: null
results:
- id: 20
last_login: '2022-01-01T12:34:56Z'
username: admin
email: ''
account_type: local
authentication_profile: null
role: Super Admin
- id: 101
last_login: '2022-01-01T12:34:56Z'
username: dummy-user
email: ''
account_type: local
authentication_profile: null
role: Read-Only
- id: 129
last_login: '2022-01-01T12:34:56'
username: SAML:dummy-user@company.com
email: dummy-user@company.com
account_type: SAML
authentication_profile: Company SE
role: Custom Admin
userLocalExample:
value:
id: 101
last_login: '2022-01-01T12:34:56Z'
username: dummy-user
email: ''
account_type: local
authentication_profile: null
role: Read-Only
noneUsers:
value:
count: 0
next: null
previous: null
results: []
userSAMLExample:
value:
id: 129
last_login: '2022-01-01T12:34:56'
username: SAML:dummy-user@company.com
email: dummy-user@company.com
account_type: SAML
authentication_profile: Company SE
role: Custom Admin
userAdminExample:
value:
id: 20
last_login: '2022-01-01T12:34:56Z'
username: admin
email: ''
account_type: local
authentication_profile: null
role: Super Admin
schemas:
userAuthProfile:
description: Vectra User authentication profile when coming from SAML or LDAP
type:
- string
- 'null'
userRole:
description: Vectra User Role
type: string
email:
type: string
format: email
error:
type: object
properties:
detail:
description: A human readable error message
type: string
details:
description: A human readable error message
type: string
positiveInt:
type: integer
format: int32
minimum: 0
name:
type: string
minLength: 1
isoDate:
description: ISO representation of a date
type: string
format: date-time
example: '2022-01-01T00:00:00Z'
link:
description: URL Link
type:
- string
- 'null'
format: uri
example: https://dummy.link
user:
description: Vectra User object
type: object
properties:
id:
$ref: '#/components/schemas/ID'
last_login:
$ref: '#/components/schemas/isoDate'
username:
$ref: '#/components/schemas/name'
email:
$ref: '#/components/schemas/email'
account_type:
$ref: '#/components/schemas/userType'
authentication_profile:
$ref: '#/components/schemas/userAuthProfile'
role:
$ref: '#/components/schemas/userRole'
required:
- id
- last_login
- username
- email
- account_type
- authentication_profile
- role
ID:
description: ID
type: integer
format: int32
minimum: 1
userType:
description: Vectra User type
type: string
enum:
- local
- SAML
resultsOfUsers:
allOf:
- $ref: '#/components/schemas/results'
- type: object
properties:
results:
type: array
items:
$ref: '#/components/schemas/user'
results:
type: object
properties:
count:
$ref: '#/components/schemas/positiveInt'
next:
$ref: '#/components/schemas/link'
previous:
$ref: '#/components/schemas/link'
User:
type: object
properties:
id:
type: integer
username:
type: string
email:
type: string
role:
type: string
last_login_timestamp:
type: string
format: date-time
responses:
invalidQueryParameter:
description: Invalid Query Parameter
content:
application/json:
schema:
$ref: '#/components/schemas/error'
example:
details: 'The following query parameter(s) are invalid: xxx.'
invalidPermissions:
description: Invalid User Permissions
content:
application/json:
schema:
$ref: '#/components/schemas/error'
example:
details: You do not have permission to perform this action.
invalidToken:
description: Invalid User Token
content:
application/json:
schema:
$ref: '#/components/schemas/error'
example:
details: Invalid token.
securitySchemes:
VectraToken:
type: apiKey
name: authorization
in: header
oauth2:
type: oauth2
flows:
clientCredentials:
tokenUrl: https://{vectra_portal_url}/oauth2/token
scopes: {}
x-refined-from:
- vectranetworks-detect-v2.3-openapi.yml
- vectranetworks-rux-v3.3-openapi.yml