Home / API Documentation

Get Services By Completed Date

Method: GET api/v1/WorkOrder/GetServicesByCompletedDate?from={from}&to={to}&companyid={companyid}&page={page}

Response Format:

application/json

Required Parameters Description Additional information
from
From Completed Date

Define this parameter in the request URI.

to
To Completed Date

Define this parameter in the request URI.

companyid
CompanyID

Define this parameter in the request URI.

page
[1..x]

Define this parameter in the request URI.

application/json, text/json

Sample Response:
                        [
  {
    "woheaderid": 1,
    "accountid": 2,
    "accountnum": "sample string 3",
    "batchid": 4,
    "eventname": "sample string 5",
    "customernotes": "sample string 6",
    "completeddate": "2025-02-23T06:37:21.2628972+00:00",
    "completedemployee": "sample string 7",
    "completedamount": 1.0,
    "saleamount": 1.0,
    "discount": 1.0,
    "prepay": 1.0
  },
  {
    "woheaderid": 1,
    "accountid": 2,
    "accountnum": "sample string 3",
    "batchid": 4,
    "eventname": "sample string 5",
    "customernotes": "sample string 6",
    "completeddate": "2025-02-23T06:37:21.2628972+00:00",
    "completedemployee": "sample string 7",
    "completedamount": 1.0,
    "saleamount": 1.0,
    "discount": 1.0,
    "prepay": 1.0
  }
];