Get Costs Monthly View

Shows the monthly calculated costs and inflation breakdown for a plan by provider, location, department, general ledger code, and cost.

Method: GET

URL: /cleartrial-ws/plans/{planID}/cost?view=monthly

Sample output in JSON:

{
 "costsMonthlyView": {
   "planId": 10802,
   "currency":"USD",
   "provider": [
      {
       "id": 251,
       "name":"Premium CRO",
       "location": [
          {
           "id": 0,
           "name":"All Locations",
           "department": [
              {
               "code":"CR",
               "name":"Clinical Operations",
               "generalLedgerCode": [
                  {
                   "code":"2800",
                   "name":"Outside Services",
                   "cost": [
                      {
                       "id": 39,
                       "name":"EDC Setup",
                       "type":"Pass Through",
                       "description":"Sample description",
                       "code": "AA.123",
                       "mappingKey": "T002",
                       "monthlyCost": [
                          {
                           "year": 2010,
                           "month": 8,
                           "cost": 2666.6666666666665,
                           "inflation": 0.0
                          },
                          {
                           "year": 2010,
                           "month": 9,
                           "cost": 7333.333333333333,
                           "inflation": 0.0
                          }
                          ... 
                          ...
                        ]
                      },
                      {
                       "id": 40,
                       "name":"EDC Licensing",
                       "type":"Pass Through",
                        ...
                        ... 
                      },
                      ...
                      ...
                    ]
                  },
                  {
                   "code":"3600",
                   "name":"Travel Expense",
                    ...
                    ...
                  }
                  ...
                  ...
                ]
              },
              {
               "code":"DS",
               "name":"Safety",
 
              }
              ...
              ...
            ]
          },
          {
           "id": 104,
           "name":"Belgium",
            ...
            ...
          },
          ...
          ...
        ]
      },
      {
       "id": 10201,
       "name":"QA",
        ...
        ...
      },
      ...
      ...
    ],
   "url":"/cleartrial-ws/plans/10802/cost?view=monthly"
  }
}

Sub-Resources: None