GET api/crm/report/sales/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 ReportSalesStaffEntity
NameDescriptionTypeAdditional information
StaffId

integer

None.

Staff

string

None.

Introduction

integer

None.

Presentation

integer

None.

Quotation

integer

None.

Invoiced

integer

None.

Cancelled

integer

None.

Total

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StaffId": 1,
    "Staff": "sample string 2",
    "Introduction": 3,
    "Presentation": 4,
    "Quotation": 5,
    "Invoiced": 6,
    "Cancelled": 7,
    "Total": 8
  },
  {
    "StaffId": 1,
    "Staff": "sample string 2",
    "Introduction": 3,
    "Presentation": 4,
    "Quotation": 5,
    "Invoiced": 6,
    "Cancelled": 7,
    "Total": 8
  }
]

application/xml, text/xml

Sample:
<ArrayOfReportSalesStaffEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/easyfiscrm_api.Entities">
  <ReportSalesStaffEntity>
    <Cancelled>7</Cancelled>
    <Introduction>3</Introduction>
    <Invoiced>6</Invoiced>
    <Presentation>4</Presentation>
    <Quotation>5</Quotation>
    <Staff>sample string 2</Staff>
    <StaffId>1</StaffId>
    <Total>8</Total>
  </ReportSalesStaffEntity>
  <ReportSalesStaffEntity>
    <Cancelled>7</Cancelled>
    <Introduction>3</Introduction>
    <Invoiced>6</Invoiced>
    <Presentation>4</Presentation>
    <Quotation>5</Quotation>
    <Staff>sample string 2</Staff>
    <StaffId>1</StaffId>
    <Total>8</Total>
  </ReportSalesStaffEntity>
</ArrayOfReportSalesStaffEntity>