Document toolboxDocument toolbox

How Do I Create a Data Profile?

All Python examples provided in this guide were scripted using Python 3.0.

How do I create a data profile?

You can create a new data profile using the Resource Info API in the Infoblox Portal (Configure > Manage > TIDE Data > Data Profiles). Only the TD Administrator Role has the required permissions to manage data profiles. 

Example curl:

curl  -X POST 'https://csp.infoblox.com/tide/admin/v1/resources/dataprofiles' -H 'Authorization: Token <CSP API key>'-H 'Content-Type: application/json' --data-raw '{
"name": "my_data_profile",
"description": "My Data Profile"
}'

Sample response:


{
    "profile" {
      "id": "IID:my_data_profile",
"name": "my_data_profile",
"description": "My Data Profile",
"policy": "default-csp",
"default_ttl": true,
"active": true
}
}