GET api/Points?companyId={companyId}&customerId={customerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companyId

string

Required

customerId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PointsEnt
NameDescriptionTypeAdditional information
Branch

string

None.

CustomerID

string

None.

EventId

integer

None.

EventName

string

None.

Point

integer

None.

CreatedDate

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Branch": "sample string 1",
    "CustomerID": "sample string 2",
    "EventId": 3,
    "EventName": "sample string 4",
    "Point": 5,
    "CreatedDate": "sample string 6"
  },
  {
    "Branch": "sample string 1",
    "CustomerID": "sample string 2",
    "EventId": 3,
    "EventName": "sample string 4",
    "Point": 5,
    "CreatedDate": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPointsEnt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WxApi.Models">
  <PointsEnt>
    <Branch>sample string 1</Branch>
    <CreatedDate>sample string 6</CreatedDate>
    <CustomerID>sample string 2</CustomerID>
    <EventId>3</EventId>
    <EventName>sample string 4</EventName>
    <Point>5</Point>
  </PointsEnt>
  <PointsEnt>
    <Branch>sample string 1</Branch>
    <CreatedDate>sample string 6</CreatedDate>
    <CustomerID>sample string 2</CustomerID>
    <EventId>3</EventId>
    <EventName>sample string 4</EventName>
    <Point>5</Point>
  </PointsEnt>
</ArrayOfPointsEnt>