Document toolboxDocument toolbox

Submitting Threat Indicators

The following example contains a sample curl command used to submit threat indicators in JSON format to the Cloud Services Portal.

curl -H "AUTHORIZATION:TOKEN $YOUR_API_KEY" -H 'Content-Type: application/json;' -X POST "https://csp.infoblox.com/tide/api/data/batches?profile=SampleProfile" --data-binary '@DATA_FILE_NAME.json'

The system determines the format of the input data based on the Content-Type HTTP header (application/xml, text/xml, application/json, text/plain, text/csv, text/tab-separated-values, text/tsv, text/psv). If the Content-Type doesn’t match with predefined types, or isn’t specified, it tries to determine the format dynamically by reading the first part of the data. Best practice is to specify the format in the Content-Type.

 

Â