Skip to content

addCustomIntelFeed

Add custom intel feed.

Arguments

Argument Type Description
input (required) AddCustomIntelFeedInput! Custom intel feed input.

Returns

AddCustomIntelFeedReply!

Sample

mutation AddCustomIntelFeed($input: AddCustomIntelFeedInput!) {
  addCustomIntelFeed(input: $input) {
    providerId
  }
}
{
  "input": {
    "entries": [
      {
        "iocType": "FILE_PATTERN"
      }
    ]
  }
}
{
  "data": {
    "addCustomIntelFeed": {
      "providerId": "00000000-0000-0000-0000-000000000000"
    }
  }
}