> ## Documentation Index
> Fetch the complete documentation index at: https://docs.onefirewall.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Report IPv4

> Post information about threat intelligence in relation to a IPv4



## OpenAPI

````yaml post /ips
openapi: 3.0.2
info:
  title: OneFirewall Alliance - OpenAPI 3.0
  description: >-
    The API documentation site serves as a comprehensive resource for developers
    looking to utilize the OneFirewall Platform's application programming
    interface (API). It offers in-depth information on API endpoints,
    parameters, responses, and authentication processes. Additionally, it
    features practical examples and code snippets to assist developers in
    integrating the API into their own applications. The website is crafted to
    be user-friendly, intuitive, and easily navigable, enabling developers to
    swiftly locate the necessary information to begin working with the API.
  termsOfService: https://onefirewall.com/eula.html
  contact:
    email: support@onefirewall.com
    url: https://onefirewall.com/contact.html
    name: Engineering Division
  license:
    name: ''
    url: ''
  version: V4.18.0
servers:
  - url: https://app.onefirewall.com/api/v1
    description: OneFirewall Server
    variables: {}
security: []
tags:
  - name: IPv4 Feeds
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: IoCs
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: Tools
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: URL Feeds
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: Domain Feeds
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: Security Binary Feeds
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: Secure VPN
    description: Secure VPN by OneFirewall
    externalDocs:
      description: ''
      url: ''
  - name: WCF Agent
    description: ''
    externalDocs:
      description: ''
      url: ''
externalDocs:
  description: http://docs.onefirewall.com
  url: http://app.onefirewall.com
paths:
  /ips:
    post:
      tags:
        - IPv4 Feeds
      summary: Report IPv4
      description: Post information about threat intelligence in relation to a IPv4
      operationId: Report IPv4
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                ip:
                  type: string
                  description: An IPv4 format for single IP or Network
                confidence:
                  type: number
                  description: >-
                    A confidence value 0.0 to 1.0. A percentace of confidence on
                    the the actor being malicious
                notes:
                  type: string
                  description: 'Notes associated to the actor '
                decision:
                  type: number
                  default: -1
                  exclusiveMinimum: true
                  minimum: -2
                  exclusiveMaximum: true
                  maximum: 2
                  description: '-1==no decision (default), 0==whitelist, 1==Block'
                ttl:
                  type: number
                  description: Until when the decision is valid (Timestamp in the future)
                source:
                  type: string
                  description: The source from where the actor was identified
              required:
                - ip
                - confidence
                - source
      responses:
        '200':
          description: ''
          content: {}
          headers: {}
        '201':
          description: ''
          content: {}
          headers: {}
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      description: Authorization Token
      name: Authorization

````