List cost target planning data.
GET/cost_target_planning/
Retrieves existing planning data entries. Optional cost_target query filters apply to GET requests. The POST request body should follow the CostTargetPlanning schema.
Request
Query Parameters
cost_target string
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id ID (integer)
created date-time
modified date-time
dimension_1 Dimension 1 (string)nullable
Possible values: <= 1024 characters
dimension_2 Dimension 2 (string)nullable
Possible values: <= 1024 characters
previous_month Previous month (number)nullable
avg_lookback Avg lookback (number)nullable
percent_growth Percent growth (number)nullable
percent_spend Percent spend (number)nullable
target_type Target type (string)
Possible values: [TOTAL
, PLANNING_ITEM
]
target_items Target items (string)nullable
client Client (integer)
cost_target Cost target (integer)nullable
[
{
"id": 0,
"created": "2024-07-29T15:51:28.071Z",
"modified": "2024-07-29T15:51:28.071Z",
"dimension_1": "string",
"dimension_2": "string",
"previous_month": 0,
"avg_lookback": 0,
"percent_growth": 0,
"percent_spend": 0,
"target_type": "TOTAL",
"target_items": "string",
"client": 0,
"cost_target": 0
}
]
Loading...