Create Mapping Enrichment Schema

Creates a mapping enrichment schema.

🚧

Authentication

All BigPanda APIs require Bearer Token Authorization in the call headers.

This API uses the User API Key type of Authorization token.

🚧

Tag Limitations

To maintain quality of service, BigPanda limits the number of alert tags and enrichment items available. Each organization can have:

  • 1000 alert tags
  • 500 enrichment items per alert tag
  • 20,000 alert enrichment items total
  • 200 mapping enrichment results tags

If more alert tags or enrichment items are needed, we recommend exploring normalization options to help streamline your alert data and improve incident quality.

Sample Calls

curl --request POST \
     --url https://api.bigpanda.io/resources/v2.1/mapping-enrichment \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
    "config": {
        "fields": [
            {
                "title": "app",
                "type": "result_tag",
                "tag_name": "app",
                "override_existing": true
            },
            {
                "title": "workgroup",
                "type": "query_tag",
                "tag_name": "workgroup",
                "override_existing": false
            }
        ],
        "name": "cmdb_application",
        "case_insensitive": true,
        "note": "Testing",
        "id_generation_function": "use_md5"
        },
    "type": "mapping",
    "active": true,
    "when": {
       		 "IN": [
       			 "source_system",
       			 [
       			 {
       			 "type": "regex",
       			 "value": "*"
      		  }
    		    ]
    	    ]
        }
}
'
curl --request POST \
     --url https://eu-api.bigpanda.io/resources/v2.1/mapping-enrichment \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
    "config": {
        "fields": [
            {
                "title": "app",
                "type": "result_tag",
                "tag_name": "app",
                "override_existing": true
            },
            {
                "title": "workgroup",
                "type": "query_tag",
                "tag_name": "workgroup",
                "override_existing": false
            }
        ],
        "name": "cmdb_application",
        "case_insensitive": true,
        "note": "Testing",
        "id_generation_function": "use_md5"
    },
    "type": "mapping",
    "active": true,
    "when": {
       		 "IN": [
       			 "source_system",
       			 [
       			 {
       			 "type": "regex",
       			 "value": "*"
      		  }
    		    ]
    	    ]
        }
}
'
Language