### Create BIN Asset Example (Axur API) Source: https://docs.axur.com/en/axur/api/openapi-axur.yaml This example shows the basic structure for creating a BIN asset, including its name and monitoring configuration. ```json { "type": "BIN", "name": "123456", "monitoring": [] } ``` -------------------------------- ### Create APP Asset Example (Axur API) Source: https://docs.axur.com/en/axur/api/openapi-axur.yaml This example shows the JSON format for creating an APP asset, specifying the application name and the monitoring to be enabled. ```json { "type": "APP", "name": "com.axur.app", "monitoring": [ "credentials:user" ] } ``` -------------------------------- ### Update Detection Status (MSSP Example) Source: https://docs.axur.com/en/axur/api/#tag/Threat-Hunting Example demonstrating how to update the status of detections, including multi-tenant support. ```APIDOC ## PATCH /api/exposure-api/{exposureCategory} ### Description Updates the status of one or more detections. This example specifically illustrates the structure for MSSP users. ### Method PATCH ### Endpoint `https://api.axur.com/gateway/1.0/api/exposure-api/{exposureCategory}` ### Parameters #### Path Parameters - **exposureCategory** (string) - Required - The category of the exposure (e.g., 'credit-cards', 'credentials'). #### Request Body - **field** (string) - Required - The field to update, must be 'status'. - **value** (string) - Required - The new status value (e.g., 'DISCARDED', 'SOLVED'). - **ids** (array of strings) - Required - The list of detection IDs to update. - **customer** (string) - Optional - Required for MSSP users to specify the child tenant key. ### Request Example ```json { "field": "status", "value": "DISCARDED", "ids": [ "202411271319565002EF35C72F8C5C298", "202411271319565002EF35C72F8C5C299" ], "customer": "CHILD_KEY" } ``` ### Response #### Success Response (204) No content is returned upon successful operation. #### Response Example (No response body for 204) ``` -------------------------------- ### Create TRACKING_TOKEN Asset Example (Axur API) Source: https://docs.axur.com/en/axur/api/openapi-axur.yaml This example illustrates the creation of a TRACKING_TOKEN asset, including its name and the type of monitoring to be applied. ```json { "type": "TRACKING_TOKEN", "monitoring": [ "database-exposure" ], "properties": { "tokenName": "MAIL" } } ``` -------------------------------- ### Create Asset API Endpoint Examples Source: https://docs.axur.com/en/axur/api/#tag/Threat-Hunting These examples show the different endpoints for creating assets, depending on whether the tenant is the authenticated user's main tenant or a specific tenant being managed. ```http POST /assets-api/asset ``` ```http POST /assets-api/customers/{customerKey}/asset ``` -------------------------------- ### Example Payloads Source: https://docs.axur.com/en/axur/api/openapi-axur.yaml Example JSON payloads for creating different types of assets. ```APIDOC ## Example Payloads ### BRAND Asset ```json { "type": "BRAND", "name": "AXUR", "monitoring": ["phishing", "malware"], "properties": { "officialWebsite": "https://www.axur.com", "brandSize": "enterprise", "nameVariations": ["axur security"], "primaryLocale": ["BR:pt"], "additionalLocale": ["US:en"] } } ``` ### DOMAIN Asset ```json { "type": "DOMAIN", "name": "axur.com", "monitoring": [ "credentials:user", "credentials:employee", "code-secret-leak", "mentions", "cti:infrastructure" ] } ``` ### TRACKING_TOKEN Asset ```json { "type": "TRACKING_TOKEN", "monitoring": ["database-exposure"], "properties": { "tokenName": "MAIL" } } ``` ``` -------------------------------- ### Create THIRD_PARTY_PAGE Asset Example (Axur API) Source: https://docs.axur.com/en/axur/api/openapi-axur.yaml This example demonstrates the JSON structure for creating a THIRD_PARTY_PAGE asset, including the page name and relevant monitoring types. ```json { "type": "THIRD_PARTY_PAGE", "name": "facebook.com/axur", "monitoring": [ "credentials:employee" ] } ``` -------------------------------- ### CSV Credential Extraction Example Source: https://docs.axur.com/en/axur/api/openapi-axur.yaml This example demonstrates how to extract credentials into a CSV file using the Axur API, with options for filtering and pagination. ```APIDOC ## CSV Credential Extraction Example ### Description Extract credentials into a CSV file, filtering by the desired criteria. ### Method GET ### Endpoint /gateway/1.0/api/exposure-api/credentials ### Query Parameters - **status** (String) - Optional - Filter by status (e.g., NEW, DISCARDED). - **user** (String) - Optional - Filter by user. - **sortBy** (String) - Optional - Field to sort by (defaults to 'created'). Allowed fields: date and integer fields. - **page** (Integer) - Optional - Page number for pagination (defaults to 1). - **pageSize** (Integer) - Optional - Number of items per page (defaults to 50, max 1000). - **order** (String) - Optional - Sort order (defaults to 'desc'). - **timezone** (String) - Optional - Timezone for date fields (defaults to 'UTC'). - **fields** (String) - Optional - Comma-separated list of fields to include in the response (defaults to all fields). - **customer** (String) - Required for child tenant searches if user has access to multiple tenants. ### Request Example ```python import requests API_KEY = "" QUERY = "status=NEW,DISCARDED&user=contains:admin&sortBy=created&page=1&pageSize=50&order=asc&timezone=-07:00" BASE_URL = f"https://api.axur.com/gateway/1.0/api/exposure-api/credentials?{QUERY}" headers = { "Content-Type": "application/json", "Authorization": f"Bearer {API_KEY}" } response = requests.get(BASE_URL, headers=headers) print(response.json()) ``` ### Response #### Success Response (200) - **card.isComplete** (String) - Card is complete or not. - **card.level** (String) - Card level. - **card.number** (String) - Card number. - **card.month** (String) - Expiration month. - **card.prepaid** (String) - Is the card prepaid ('TRUE' or 'FALSE'). - **card.type** (String) - Card type. - **card.year** (String) - Expiration year. - **issuer.name** (TEXT) - Issuer Name. - **issuer.phone** (TEXT) - Issuer Phone. - **issuer.website** (TEXT) - Issuer Website. - **sha256CreditCardNumberHash** (STRING) - Credit Card Number Hash (SHA-256). #### Response Example ```json { "data": [ { "card": { "isComplete": "TRUE", "level": "VI", "number": "************1111", "month": "12", "prepaid": "FALSE", "type": "CREDIT", "year": "2025" }, "issuer": { "name": "Example Bank", "phone": "+1234567890", "website": "https://www.examplebank.com" }, "sha256CreditCardNumberHash": "a1b2c3d4e5f6..." } ], "pagination": { "page": 1, "pageSize": 50, "totalItems": 100, "totalPages": 2 } } ``` ``` -------------------------------- ### Get Ticket Count by Status - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to get the count of tickets based on their status (e.g., open, closed). ```Bash curl -X GET "https://api.axur.com/tickets/count?status=open" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Get Takedown Metrics - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to retrieve takedown-related metrics for tickets. ```Bash curl -X GET "https://api.axur.com/tickets/metrics/takedown" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Exposure API Search Queries Source: https://docs.axur.com/en/axur/api Examples of GET requests to the Exposure API for filtering credentials by status, user, and date ranges. These examples demonstrate the use of query parameters for pagination, sorting, and field selection. ```http GET https://api.axur.com/gateway/1.0/api/exposure-api/credentials?status=NEW,DISCARDED&user=contains:admin&sortBy=created&page=1&pageSize=100&order=asc&timezone=-07:00 GET https://api.axur.com/gateway/1.0/api/exposure-api/credentials?created=ge:2024-07-01&updated=le:2024-07-31&sortBy=created&page=1&pageSize=1&order=desc&timezone=-03:00&fields=status,user,password,created,assets,password.hasLetter,password.length ``` -------------------------------- ### Get Takedown Uptime - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to retrieve uptime statistics related to takedown operations. ```Bash curl -X GET "https://api.axur.com/tickets/uptime/takedown" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Get Ticket History - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to retrieve the history or audit log of changes made to a ticket. ```Bash curl -X GET "https://api.axur.com/tickets/history/{ticket_key}" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Enable Asset Capability - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to enable a specific capability for an asset using its key. ```Bash curl -X PATCH "https://api.axur.com/assets/capabilities/enable/{asset_key}" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "capability": "brand_protection" }' ``` -------------------------------- ### POST /customers-api/customer Source: https://docs.axur.com/en/axur/api/openapi-axur.yaml Creates a new MSSP customer tenant for onboarding purposes. ```APIDOC ## POST /customers-api/customer ### Description Creates a new MSSP customer tenant. Requires MSSP Partner Manager permissions. ### Method POST ### Endpoint /customers-api/customer ### Parameters #### Request Body - **customer.name** (string) - Required - Name of the customer. - **customer.segment** (string) - Required - Business segment of the customer. - **customer.ctiEnabled** (boolean) - Optional - Activates CTI workspace and credit consumption. - **asset** (object) - Optional - Asset configuration (BRAND or DOMAIN). ### Request Example { "customer": { "name": "New Client", "segment": "Retail", "ctiEnabled": true } } ### Response #### Success Response (200) - **id** (string) - The ID of the created customer. #### Response Example { "id": "cust_98765", "status": "created" } ``` -------------------------------- ### Get Internal Treatment Metrics - API Request Example Source: https://docs.axur.com/en/axur/api This snippet shows how to retrieve metrics related to the internal treatment of tickets. ```Bash curl -X GET "https://api.axur.com/tickets/metrics/internal-treatment" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Get Ticket Incident Count by Type - API Request Example Source: https://docs.axur.com/en/axur/api This snippet shows how to retrieve the count of incidents categorized by their type. ```Bash curl -X GET "https://api.axur.com/tickets/incident-count?type=security" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Create Ticket - API Request Example Source: https://docs.axur.com/en/axur/api This snippet shows how to create a new ticket in the Axur system. Requires details such as title, description, and type. ```Bash curl -X POST "https://api.axur.com/tickets" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "title": "New Issue", "description": "Details about the issue", "type": "incident" }' ``` -------------------------------- ### Get Ticket Types - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to retrieve a list of all supported ticket types within the Axur system. ```Bash curl -X GET "https://api.axur.com/tickets/types" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Get Feed by ID - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to retrieve integration feed data using a specific feed ID. ```Bash curl -X GET "https://api.axur.com/integration/feed/{feed_id}" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Retrieve Customer Credit Settings - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to retrieve the credit settings for a specific customer using their key. ```Bash curl -X GET "https://api.axur.com/credit/settings/{customer_key}" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Get Internal Treatment Uptime - API Request Example Source: https://docs.axur.com/en/axur/api This snippet shows how to retrieve uptime statistics related to the internal treatment of tickets. ```Bash curl -X GET "https://api.axur.com/tickets/uptime/internal-treatment" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Get Mean Number of Internal Incidents - API Request Example Source: https://docs.axur.com/en/axur/api This snippet shows how to retrieve the mean number of internal incidents reported by Axur customers. ```Bash curl -X GET "https://api.axur.com/tickets/mean-incidents/internal" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Execute Ticket Lifecycle Transition - API Request Example Source: https://docs.axur.com/en/axur/api This snippet shows how to execute a lifecycle transition for a ticket, moving it to a new state. ```Bash curl -X POST "https://api.axur.com/tickets/lifecycle/{ticket_key}" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "transition": "close" }' ``` -------------------------------- ### Add Monitoring to Asset - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to add monitoring configurations to an existing asset using its key. ```Bash curl -X PATCH "https://api.axur.com/assets/monitoring/{asset_key}" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "monitoring_type": "domain_monitoring", "enabled": true }' ``` -------------------------------- ### Get Median Number of Internal Incidents - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to retrieve the median number of internal incidents reported by Axur customers. ```Bash curl -X GET "https://api.axur.com/tickets/median-incidents/internal" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Create Ticket - Python Example Source: https://docs.axur.com/en/axur/api/#tag/Threat-Hunting This Python snippet demonstrates how to create a new ticket using the Axur API. It includes the necessary headers and payload structure, including reference, customer, type, and assets. Ensure you have valid customer and asset identifiers. ```python import requests import json url = "https://api.axur.com/gateway/1.0/api/tickets-api/tickets" headers = { "Content-Type": "application/json", "Authorization": "Bearer YOUR_API_TOKEN" } payload = { "reference": "https://www.a-phishing-url.com/", "customer": "TEST", "type": "phishing", "assets": [ ["TSTAST"] ] } response = requests.post(url, headers=headers, data=json.dumps(payload)) if response.status_code == 200: print("Ticket created successfully:", response.json()) elif response.status_code == 409: print("Reference already exists:", response.json()) else: print("Error creating ticket:", response.status_code, response.json()) ``` -------------------------------- ### Get Mean Number of Incidents by Market Segment - API Request Example Source: https://docs.axur.com/en/axur/api This snippet shows how to retrieve the mean number of incidents, broken down by customer market segment. ```Bash curl -X GET "https://api.axur.com/tickets/mean-incidents/market-segment?segment=enterprise" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Get Median Number of Incidents by Market Segment - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to retrieve the median number of incidents, broken down by customer market segment. ```Bash curl -X GET "https://api.axur.com/tickets/median-incidents/market-segment?segment=SME" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### POST /customers-api/customer Source: https://docs.axur.com/en/axur/api/#tag/Threat-Hunting Creates a new MSSP customer tenant. Requires MSSP Partner Manager permissions. ```APIDOC ## POST /customers-api/customer ### Description Creates a new MSSP customer tenant. If an asset is not provided, the system automatically creates a BRAND asset using the customer name. ### Method POST ### Endpoint https://api.axur.com/gateway/1.0/api/customers-api/customer ### Parameters #### Request Body - **customer** (object) - Required - Contains customer name and segment. - **asset** (object) - Optional - Asset details (BRAND or DOMAIN). - **user** (object) - Optional - Initial user configuration. ### Request Example { "customer": { "name": "Acme Corporation", "segment": "EDUCATION" } } ### Response #### Success Response (201) - **customerKey** (string) - Unique identifier for the created customer. - **name** (string) - Customer name. - **category** (string) - Category of the tenant. #### Response Example { "customerKey": "EXTC", "name": "External Customer", "category": "MSSP_TENANT" } ``` -------------------------------- ### POST /customers-api/customer Source: https://docs.axur.com/en/axur/api Creates a new MSSP customer tenant. Requires MSSP Partner Manager permissions. ```APIDOC ## POST /customers-api/customer ### Description Creates a new MSSP customer tenant. This endpoint is used for onboarding new customers. If an asset is not provided, the API automatically creates a BRAND asset using the customer name. ### Method POST ### Endpoint https://api.axur.com/gateway/1.0/api/customers-api/customer ### Parameters #### Request Body - **customer** (object) - Required - Contains customer details like name and segment. - **asset** (object) - Optional - Asset configuration for automatic creation. - **user** (object) - Optional - Initial user configuration. ### Request Example { "customer": { "name": "Acme Corporation", "segment": "EDUCATION" } } ### Response #### Success Response (201) - **customerKey** (string) - The unique identifier for the created customer. - **name** (string) - The name of the customer. - **category** (string) - The category of the tenant. #### Response Example { "customerKey": "EXTC", "name": "External Customer", "category": "MSSP_TENANT" } ``` -------------------------------- ### Get Card Stream Leaks Data - Bash cURL Source: https://docs.axur.com/en/axur/api/#tag/Threat-Hunting Example using cURL to retrieve all leaks for a given credit card hash. Authentication is handled via a bearer token. ```Bash curl -X GET \ 'https://api.axur.com/gateway/1.0/api/cardstream/{hash}/leaks' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ``` -------------------------------- ### Get Card Stream Data - Bash cURL Source: https://docs.axur.com/en/axur/api/#tag/Threat-Hunting Example using cURL to fetch data from the card stream API. This command requires a bearer token and the card hash as parameters. ```Bash curl -X GET \ 'https://api.axur.com/gateway/1.0/api/cardstream/{hash}' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ``` -------------------------------- ### Retrieve Assets - API Request Example Source: https://docs.axur.com/en/axur/api This snippet shows how to retrieve a list of assets. You can filter assets by customer key or other parameters. ```Bash curl -X GET "https://api.axur.com/assets?customer_key={customer_key}" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### Get Web Complaints - cURL Request Source: https://docs.axur.com/en/axur/api Example of a cURL request to query web complaints. It specifies date ranges, sorting order, timezone, pagination, and requires an API key for authentication via the Authorization header. ```bash curl -X GET "https://api.axur.com/gateway/1.0/api/web-complaints/results?initialDate=2022-01-01&finalDate=2025-09-09&order=desc&timezone=-3&page=1&pageSize=200" -H "Authorization: Bearer " ``` -------------------------------- ### Create Asset by Customer - API Request Example Source: https://docs.axur.com/en/axur/api This snippet shows how to create a new asset associated with a specific customer using the Axur Platform API. It requires customer key and asset details. ```Bash curl -X POST "https://api.axur.com/assets/customer/{customer_key}" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "asset_type": "domain", "value": "example.com" }' ``` -------------------------------- ### Get Web Complaints - Python Request Source: https://docs.axur.com/en/axur/api Example of a Python request using the 'requests' library to query web complaints. It demonstrates setting up headers for authentication, defining query parameters for filtering and pagination, and handling potential HTTP errors. ```python import requests import json base_path = "https://api.axur.com/gateway/1.0/api/web-complaints/results" api_key = "API-KEY" headers = { "Authorization": f"Bearer {api_key}" } params = { "initialDate": "2022-01-01", "finalDate": "2025-09-09", "order": "desc", "timezone": "-03:00", "page": 1, "pageSize": 200 } try: response = requests.get(base_path, headers=headers, params=params) response.raise_for_status() print(f"Status Code: {response.status_code}") print("Response JSON:") print(json.dumps(response.json(), indent=2)) except requests.exceptions.HTTPError as http_err: print(f"HTTP error occurred: {http_err}") print(f"Response Content: {response.text}") except requests.exceptions.RequestException as req_err: print(f"An error occurred: {req_err}") ``` -------------------------------- ### Retrieve Ticket by Key - Python Example Source: https://docs.axur.com/en/axur/api This Python snippet illustrates how to retrieve a specific ticket from the Axur API using its unique key. It sends a GET request to the appropriate endpoint with the ticket key as a parameter. Replace 'YOUR_API_KEY' and 'TICKET_KEY' with your credentials and the target ticket key. ```python import requests ticket_key = "TICKET_KEY" url = f"https://api.axur.com/gateway/1.0/api/tickets-api/tickets/{ticket_key}" headers = { "Authorization": "Bearer YOUR_API_KEY" } response = requests.get(url, headers=headers) print(response.status_code) print(response.json()) ``` -------------------------------- ### POST /customers-api/tenant/{key}/resume Source: https://docs.axur.com/en/axur/api/openapi-axur.yaml Resumes an already suspended MSSP tenant. ```APIDOC ## POST /customers-api/tenant/{key}/resume ### Description Re-enables monitorings and user activity for a previously suspended MSSP tenant. Requires MSSP Partner Manager permission. ### Method POST ### Endpoint /customers-api/tenant/{key}/resume ### Parameters #### Path Parameters - **key** (string) - Required - The unique identifier of the tenant #### Header Parameters - **Authorization** (string) - Required - Bearer ### Response #### Success Response (204) - No Content ``` -------------------------------- ### GET /web-complaints Get web complaints Source: https://docs.axur.com/en/axur/api Retrieves web complaints. ```APIDOC ## GET /web-complaints Get web complaints ### Description Retrieves web complaints. ### Method GET ### Endpoint /web-complaints ### Parameters #### Query Parameters - **limit** (integer) - Optional - Maximum number of complaints to retrieve. - **offset** (integer) - Optional - Number of complaints to skip. ``` -------------------------------- ### Create Ticket - Python Example Source: https://docs.axur.com/en/axur/api This Python snippet demonstrates how to create a new ticket using the Axur API. It includes the necessary headers and a sample JSON payload for a phishing ticket. Ensure you replace placeholders with actual values. ```python import requests url = "https://api.axur.com/gateway/1.0/api/tickets-api/tickets" headers = { "Content-Type": "application/json", "Authorization": "Bearer YOUR_API_KEY" } payload = { "reference": "https://www.a-phishing-url.com/", "customer": "TEST", "type": "phishing", "assets": [["TSTAST"]] } response = requests.post(url, json=payload, headers=headers) print(response.status_code) print(response.json()) ``` -------------------------------- ### cURL Example for Exposure API Source: https://docs.axur.com/en/axur/api Demonstrates how to query the Exposure API using cURL, focusing on clarifying query parameters for credentials and total endpoints. This helps developers understand parameter usage and defaults. ```bash # Example cURL command for querying credentials with clarified parameters curl -X GET "https://api.axur.com/v1/exposure/credentials?query=example.com&limit=10&offset=0&sort=date:desc" # Example cURL command for querying total endpoints with clarified parameters curl -X GET "https://api.axur.com/v1/exposure/total?query=compromised_data&filter=type:email" ``` -------------------------------- ### GET /open-data/datasets Get available datasets Source: https://docs.axur.com/en/axur/api Retrieves a list of available datasets. ```APIDOC ## GET /open-data/datasets Get available datasets ### Description Retrieves a list of available datasets. ### Method GET ### Endpoint /open-data/datasets ``` -------------------------------- ### Retrieve Monthly Partner Usage Report - API Request Example Source: https://docs.axur.com/en/axur/api This snippet demonstrates how to retrieve the monthly usage report for a partner. This report provides aggregated usage data. ```Bash curl -X GET "https://api.axur.com/credit/usage/monthly" \ -H "Authorization: Bearer YOUR_API_KEY" ``` -------------------------------- ### GET /investigations Get Investigations paginated Source: https://docs.axur.com/en/axur/api Retrieves a paginated list of investigations. ```APIDOC ## GET /investigations Get Investigations paginated ### Description Retrieves a paginated list of investigations. ### Method GET ### Endpoint /investigations ### Parameters #### Query Parameters - **limit** (integer) - Optional - Maximum number of investigations to retrieve. - **offset** (integer) - Optional - Number of investigations to skip. - **status** (string) - Optional - Filter by investigation status. ``` -------------------------------- ### POST /customers-api/tenant/{key}/resume Source: https://docs.axur.com/en/axur/api/#tag/Threat-Hunting Resumes an already suspended MSSP tenant to re-enable operations and monitoring. ```APIDOC ## POST /customers-api/tenant/{key}/resume ### Description Reverts suspension by re-enabling monitorings and user activity. ### Method POST ### Endpoint https://api.axur.com/gateway/1.0/api/customers-api/tenant/{key}/resume ### Parameters #### Path Parameters - **key** (string) - Required - The unique identifier of the tenant. #### Header Parameters - **Authorization** (string) - Required - Bearer ### Response #### Success Response (204) - No Content ```