GET api/crm/report/support/staff/{startDate}/{endDate}/{userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
startDate

string

Required

endDate

string

Required

userId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ReportSupportStaffEntity
NameDescriptionTypeAdditional information
StaffId

integer

None.

Staff

string

None.

Open

integer

None.

ForClosing

integer

None.

Close

integer

None.

Cancelled

integer

None.

Total

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StaffId": 1,
    "Staff": "sample string 2",
    "Open": 3,
    "ForClosing": 4,
    "Close": 5,
    "Cancelled": 6,
    "Total": 7
  },
  {
    "StaffId": 1,
    "Staff": "sample string 2",
    "Open": 3,
    "ForClosing": 4,
    "Close": 5,
    "Cancelled": 6,
    "Total": 7
  }
]

application/xml, text/xml

Sample:
<ArrayOfReportSupportStaffEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/easyfiscrm_api.Entities">
  <ReportSupportStaffEntity>
    <Cancelled>6</Cancelled>
    <Close>5</Close>
    <ForClosing>4</ForClosing>
    <Open>3</Open>
    <Staff>sample string 2</Staff>
    <StaffId>1</StaffId>
    <Total>7</Total>
  </ReportSupportStaffEntity>
  <ReportSupportStaffEntity>
    <Cancelled>6</Cancelled>
    <Close>5</Close>
    <ForClosing>4</ForClosing>
    <Open>3</Open>
    <Staff>sample string 2</Staff>
    <StaffId>1</StaffId>
    <Total>7</Total>
  </ReportSupportStaffEntity>
</ArrayOfReportSupportStaffEntity>