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/synack-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: Synack Users API
version: 2.0.0
description: 'Comprehensive API for Synack''s security testing platform, providing endpoints for managing assessments, vulnerabilities, users, and security testing operations.
'
contact:
name: Synack Engineering
email: engineering@synack.com
license:
name: Proprietary
servers:
- url: https://api.synack.com
description: Commercial - V1 API
- url: https://api.synack.us
description: FedRAMP (Medium) - V1 API
security:
- BearerAuth: []
- BasicAuth: []
- ApiKeyAuth: []
tags:
- name: Users
description: Operations related to users
paths:
/v1/users/whoami:
get:
operationId: getCurrentUser
summary: Get current user information
description: Retrieve information about the currently authenticated user
tags:
- Users
responses:
'200':
description: User information retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'401':
description: Unauthorized
/v1/users:
get:
tags:
- Users
summary: Fetch users
description: Fetch all organization users (members & admins). Banned users will not be included. Requires admin privileges.
responses:
'200':
description: Successfully fetched users
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/User'
application/xml:
schema:
type: array
items:
$ref: '#/components/schemas/User'
post:
tags:
- Users
summary: Create a new member/admin
description: Create a new member/admin and grant it access to assessments (if any). Requires admin privileges.
requestBody:
description: Request body.
content:
application/json:
schema:
required:
- email
type: object
properties:
email:
type: string
description: E-mail address for the user
first_name:
type: string
description: First name of the user
last_name:
type: string
description: Last name of the user
admin:
type: boolean
description: Flag to indicate whether to grant admin privileges
default: false
assessments:
type: array
description: IDs of assessments to grant user access to
items:
type: string
send_invite:
type: boolean
description: Flag to indicate whether to send the user the invitation URL by e-mail
default: true
required: true
responses:
'201':
description: The newly created user
content:
application/json:
schema:
$ref: '#/components/schemas/User'
application/xml:
schema:
$ref: '#/components/schemas/User'
'400':
description: Payload includes unpermitted parameters, given assessment IDs are invalid or user creation failed (e.g. e-mail already exists)
content: {}
'403':
description: The requesting party does not have admin privileges
content: {}
/v1/users/{id}:
get:
tags:
- Users
summary: Fetch user account
description: Fetch information about a user account. Requires admin privileges.
parameters:
- name: id
in: path
description: ID of the user
required: true
schema:
type: string
responses:
'200':
description: Successfully got users
content:
application/json:
schema:
$ref: '#/components/schemas/User'
application/xml:
schema:
$ref: '#/components/schemas/User'
'404':
description: No such user
content: {}
put:
tags:
- Users
summary: Update user account status
description: Update existing user (reactivate and/or grant admin privileges). The user is automatically notified by e-mail upon account reactivation. Requires admin privileges.
parameters:
- name: id
in: path
description: ID of the user
required: true
schema:
type: string
- name: admin
in: query
description: Flag to indicate whether to grant/remove admin privileges
schema:
type: boolean
- name: reactivate
in: query
description: Flag to indicate whether to reactivate (unban) the user
schema:
type: boolean
responses:
'200':
description: The updated created user
content:
application/json:
schema:
$ref: '#/components/schemas/User'
application/xml:
schema:
$ref: '#/components/schemas/User'
'400':
description: Payload includes unpermitted parameters
content: {}
'403':
description: The requesting party does not have admin privileges
content: {}
'404':
description: No such user
content: {}
delete:
tags:
- Users
summary: Ban/delete user
description: Ban/delete a user account. Requires admin privileges.
parameters:
- name: id
in: path
description: ID of the user
required: true
schema:
type: string
responses:
'200':
description: Successfully banned user
content:
application/json:
schema:
$ref: '#/components/schemas/User'
application/xml:
schema:
$ref: '#/components/schemas/User'
'403':
description: The requesting party does not have admin privileges
content: {}
'404':
description: No such user
content: {}
components:
schemas:
User:
required:
- assessment_ids
- banned
- email
- id
type: object
properties:
id:
type: integer
format: int64
email:
type: string
description: e-mail address of the user
assessment_ids:
type: array
description: IDs of assessments the user has access to
items:
type: string
admin:
type: boolean
description: boolean flag to indicate whether the user has admin privileges (only visible to admin
invite_url:
type: string
description: invitation URL (only visible to admins)
banned:
type: boolean
description: boolean flag to indicate whether the user has been banned
securitySchemes:
BearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
BasicAuth:
type: http
scheme: basic
ApiKeyAuth:
type: apiKey
in: header
name: X-Auth