GET api/GetCustomerServices?UserID={UserID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserID

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerService
NameDescriptionTypeAdditional information
ID

integer

None.

ServiceName

string

None.

CustomerID

integer

None.

IsPublic

boolean

None.

Remarks

string

None.

CustomerName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "ServiceName": "sample string 2",
    "CustomerID": 3,
    "IsPublic": true,
    "Remarks": "sample string 5",
    "CustomerName": "sample string 6"
  },
  {
    "ID": 1,
    "ServiceName": "sample string 2",
    "CustomerID": 3,
    "IsPublic": true,
    "Remarks": "sample string 5",
    "CustomerName": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerService xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NEXABIT.TMS.BO">
  <CustomerService>
    <CustomerID>3</CustomerID>
    <CustomerName>sample string 6</CustomerName>
    <ID>1</ID>
    <IsPublic>true</IsPublic>
    <Remarks>sample string 5</Remarks>
    <ServiceName>sample string 2</ServiceName>
  </CustomerService>
  <CustomerService>
    <CustomerID>3</CustomerID>
    <CustomerName>sample string 6</CustomerName>
    <ID>1</ID>
    <IsPublic>true</IsPublic>
    <Remarks>sample string 5</Remarks>
    <ServiceName>sample string 2</ServiceName>
  </CustomerService>
</ArrayOfCustomerService>