delete_calc_mappings
POST /API/v2/delete_calc_mappings
Deletes the calculation mapping specified by the name POST argument. See example.
Request body¶
project_name: the name of the project.name: mapping name.
Response¶
Example¶
Delete the calculation mapping created for the the geo_country key in the demo project.
Path:
https://uslicer.iponweb.com/API/v2/delete_calc_mappings
Request
{
"project_name": "demo",
"name" : "test_mapping"
}
curl --data '{
"project_name": "demo",
"name": "test_mapping"
}' \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer <token>" \
"https://uslicer.iponweb.com/API/v2/delete_calc_mappings"
Response
{
"status" : "success"
}