Intellizence API Docs
  • Intellizence REST API Documentation
  • Company News Signal API
    • List Companies
    • Add Group
    • Delete Group
    • List Of Tracked Companies
    • Add Company
    • Remove Company
    • Bulk Add Companies
    • Bulk Remove Companies
    • Recommend Company
    • Check Company Recommendation Status
    • List Triggers
    • Add Trigger
    • Remove Trigger
    • Bulk Add Triggers
    • Bulk Remove Triggers
    • Search Signals
    • Push News
    • Search Signals Based On Company ID
  • COMPANY API
    • Company Data
  • Dataset API
    • Merger & Acquisition Dataset API
    • Funding Dataset API
    • Layoff Dataset API
    • Business Expansion Dataset API
    • Major Hiring Dataset API
    • CXO Appointments and Changes Dataset API
    • Data & Security Breaches Dataset API
    • IPO Dataset API
    • Relocation Dataset API
  • API Parameter Values
    • Industries
    • Merger & Acquisition Dataset
    • Funding Dataset
    • Layoff Dataset
    • Business Expansion Dataset
    • CXO Appointments and Changes Dataset
  • Topic Signals
    • List of Tracked Topics
    • List of Tracked Triggers
    • Search Topic Signals
  • USAGE BASED APIs
    • Merger & Acquisition Dataset API
    • Funding Dataset API
  • Layoff Dataset API
Powered by GitBook
On this page
  1. Company News Signal API

Push News

Post news to the given REST end point

POST /api/v1/push-news/{GROUP_NAME}/{DAYS} HTTP/1.1

Replace GROUP_NAME with the Group Name and DAYS with the number of days for which news have to be posted.

Maximum number of days can be 5

You’ll have to pass the REST end point URL to which news have to be posted in HTTP header with the name callback-url.

Response body

{
            "response": "response"
}
Param
Description

response

Response received from the callback-url after posting the news

News are posted in the JSON format

{
    "group": "group_name",
    "postedDate": "posted_date",
    "news": [
        {
            "id": "new_id",
            "publisher": "news_publisher",
            "title": "new_title",
            "url": "new_url",
            "desc": "news_desc",
            "publishDate": "news_published_date",
            "companies": [ 
               {
                "id": "Intellizence_company_id"
                }
            ],
            "triggers": ["trigger"]
        }
    ]
}
PreviousSearch SignalsNextSearch Signals Based On Company ID

Last updated 3 years ago