v1

latestOpenAPI 3.0.22026-07-13111437.5 KB
cost

Returns cost data by CLIN

Queries CSP for actual or forecasted cost data by CLIN

get/portfolios/{portfolioId}/task-orders/{taskOrderId}/clins/{clin}/costs

Path parameters

clinstring required

Contract Line Item Number

Query parameters

start_datestring date required
Example:2023-12

Start date of the cost data request in YYYY-MM format. Must not precede the earliest pop_start_date of the given CLIN.

end_datestring date required
Example:2026-12

End date of the cost data request in YYYY-MM format. Must not exceed the latest pop_end_date of the given CLIN.

Response

Cost operation successful

Example response

{
  "actual": {
    "total": "12345.67",
    "results": [
      {
        "month": "2022-12"
      }
    ]
  },
  "forecast": {
    "total": "12345.67",
    "results": [
      {
        "month": "2022-12"
      }
    ]
  }
}