watchTowr IP Addresses API
The IP Addresses API from watchTowr — 5 operation(s) for ip addresses.
The IP Addresses API from watchTowr — 5 operation(s) for ip addresses.
openapi: 3.0.3
info:
title: watchTowr Platform Client Activity Log IP Addresses API
description: 'The watchTowr Platform Client API provides read and write access to your external attack surface managed by the watchTowr Preemptive Exposure Management platform: discovered assets (domains, subdomains, IP addresses and ranges, ports, containers, cloud storage, mobile applications, SaaS platforms and source code repositories), security findings, hunts, certificates, business units, points of interest, service listings, suspicious domains and the activity log. Data is retrieved over HTTPS using paginated list endpoints and authenticated with a per-tenant API bearer token. Reconstructed by API Evangelist from the official watchtowr/watchtowr-api-sdk (OpenAPI Generator) Python client.'
version: '1.0'
contact:
name: watchTowr
url: https://watchtowr.com
servers:
- url: https://{tenant}.{region}.watchtowr.io
description: Per-tenant watchTowr Platform instance
variables:
tenant:
default: your-tenant
description: Your watchTowr tenant name
region:
default: your-region
description: Your watchTowr region
security:
- bearerAuth: []
tags:
- name: IP Addresses
paths:
/api/client/assets/ip/list:
get:
tags:
- IP Addresses
summary: List all IP address assets
operationId: get_list_asset_ips
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Unauthorized'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ForbiddenResponse'
parameters:
- name: page
in: query
required: false
description: Pagination page. The default value is 1.
schema:
type: number
- name: page_size
in: query
required: false
description: Pagination size. The default value is 10 and the maximum is 30.
schema:
type: number
/api/client/assets/ip/show/{id}:
get:
tags:
- IP Addresses
summary: Show the details of an IP address asset
operationId: get_asset_ip_details
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Unauthorized'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ForbiddenResponse'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/NotFound'
parameters:
- name: id
in: path
required: true
description: Identifier of the id.
schema:
type: string
/api/client/assets/ip/show/{id}/port/list:
get:
tags:
- IP Addresses
summary: List ports for an IP address asset
operationId: get_asset_ip_ports
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Unauthorized'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ForbiddenResponse'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/NotFound'
parameters:
- name: id
in: path
required: true
description: Identifier of the id.
schema:
type: string
- name: page
in: query
required: false
description: Pagination page. The default value is 1.
schema:
type: number
- name: page_size
in: query
required: false
description: Pagination size. The default value is 10 and the maximum is 30.
schema:
type: number
/api/client/assets/ip/show/{ipId}/port/show/{portId}:
get:
tags:
- IP Addresses
summary: Show the details of a port on an IP address asset
operationId: get_asset_ip_port_details
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Unauthorized'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ForbiddenResponse'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/NotFound'
parameters:
- name: ipId
in: path
required: true
description: Identifier of the ipId.
schema:
type: string
- name: portId
in: path
required: true
description: Identifier of the portId.
schema:
type: string
/api/client/assets/ip/update-status/{id}:
put:
tags:
- IP Addresses
summary: Update the status of an IP address asset
operationId: update_asset_ip_status
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Unauthorized'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ForbiddenResponse'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/NotFound'
'422':
description: Unprocessable Content
content:
application/json:
schema:
$ref: '#/components/schemas/UnprocessableContent'
parameters:
- name: id
in: path
required: true
description: Identifier of the id.
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
type: object
components:
schemas:
Unauthorized:
type: object
properties:
message:
type: string
example: Unauthenticated.
UnprocessableContent:
type: object
properties:
message:
type: string
errors:
type: object
NotFound:
type: object
properties:
message:
type: string
example: Resource not found.
ForbiddenResponse:
type: object
properties:
message:
type: string
example: This action is unauthorized.
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: API key issued from the watchTowr Platform dashboard (Settings -> API Management / Integrations -> Client API), sent as a Bearer token.