Securonix Parser Management API

Config Resource Parser Controller

Operations 2

GET /ingestion/v1/parsersdetails Get parser details by vendor name or resource type or collection method #
GET /ingestion/v1/readcrpcontent Get the crp content from console by crpId #

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/securonix-parser-management-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

securonix-parser-management-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Datasource Onboarding Parser Management API
  description: Allows users to fetch data to create, edit, and onboard a datasource through the API.
  contact:
    name: Securonix
    url: www.securonix.com
  license:
    name: License of API
  version: 1.0.0
servers:
- description: SwaggerHub API Auto Mocking
  url: https://virtserver.swaggerhub.com/securonix-b7a/Datasource_Onboarding/1.0.0
- url: http://localhost:8191
  description: Inferred Url
tags:
- name: Parser Management
  description: Config Resource Parser Controller
paths:
  /ingestion/v1/parsersdetails:
    get:
      tags:
      - Parser Management
      summary: Get parser details by vendor name or resource type or collection method
      operationId: getParsersFromCRPUsingGET
      parameters:
      - name: vendor
        in: query
        description: vendor
        required: false
        style: form
        schema:
          type: string
      - name: resourceType
        in: query
        description: resourceType
        required: false
        style: form
        schema:
          type: string
      - name: collectionMethod
        in: query
        description: collectionMethod
        required: false
        style: form
        schema:
          type: string
      - name: customerId
        in: query
        description: customerId
        required: true
        style: form
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/FetchParsersByVendorOrResourcetypeOrCollectionmethod'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /ingestion/v1/readcrpcontent:
    get:
      tags:
      - Parser Management
      summary: Get the crp content from console by crpId
      operationId: getCRPContentUsingGET
      parameters:
      - name: crpId
        in: query
        description: crpId
        required: false
        style: form
        schema:
          type: integer
          format: int64
      - name: customerId
        in: query
        description: customerId
        required: true
        style: form
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ConfigResourceParsers'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
components:
  schemas:
    ConfigResourceParsers:
      title: ConfigResourceParsers
      type: object
      properties:
        accessattributexml:
          type: string
        accessconfigxml:
          type: string
        accessrulesxml:
          type: string
        actionfiltersjson:
          type: string
        attributexml:
          type: string
        attributexmlhash:
          type: integer
          format: int64
        bprofilexml:
          type: string
        bprofilexmlhash:
          type: integer
          format: int64
        collectionmethod:
          type: string
        configcollectorfilterxml:
          type: string
        configxml:
          type: string
        configxmlhash:
          type: integer
          format: int64
        id:
          type: integer
          format: int64
        policyxml:
          type: string
        policyxmlhash:
          type: integer
          format: int64
        resourceimportxml:
          type: string
        resourcetype:
          type: string
        threatconfigxml:
          type: string
        uiconfigxml:
          type: string
        userconfigxml:
          type: string
        vendor:
          type: string
    FetchParsersByVendorOrResourcetypeOrCollectionmethod:
      title: FetchParsersByVendorOrResourcetypeOrCollectionmethod
      type: object
      properties:
        parsers:
          type: array
          items:
            $ref: '#/components/schemas/ParsersResponse'
    ParsersResponse:
      title: ParsersResponse
      type: object
      properties:
        collectionmethod:
          type: string
        crpid:
          type: integer
          format: int64
        format:
          type: string
        functionality:
          type: string
        resourcetype:
          type: string
        vendor:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: wstoken