Get contract summaries
Get contract summaries
Query Parameters
- From date-time
Date from, example value: 2018-07-25
- To date-time
Date to, example value: 2018-07-25
- ContinuationToken string
Token is needed, unless all records have been returned in previous request. Do not forget to pass also all other parameters.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (from schema)
Schema
- ContinuationToken string nullable
Items object[] nullable
Array [Guid guid nullableCostInvoiced decimal nullableCostDiscarted decimal nullableCostNotInvoiced decimal nullableSummaryCost decimal nullableSummaryRevenue decimal nullableSummaryBalance decimal nullableHoursWorked double nullable]
{
"ContinuationToken": "string",
"Items": [
{
"Guid": "string",
"CostInvoiced": 0,
"CostDiscarted": 0,
"CostNotInvoiced": 0,
"SummaryCost": 0,
"SummaryRevenue": 0,
"SummaryBalance": 0,
"HoursWorked": 0
}
]
}
Error
- application/json
- Schema
- Example (from schema)
Schema
Error object required
Code string nullableMessage string nullable
{
"Error": {
"Code": "string",
"Message": "string"
}
}
Loading...