GET Platform/GetCustomers?name={name}&userId={userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
Default value is |
|
| userId | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
Collection of PlatformCustomerPO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustomerNo | string |
None. |
|
| CreateTime | date |
None. |
|
| CustomerName | string |
None. |
|
| State | integer |
None. |
|
| SalesmanId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"CustomerNo": "sample string 2",
"CreateTime": "2026-04-13T13:50:07.9635005+08:00",
"CustomerName": "sample string 4",
"State": 5,
"SalesmanId": 6
},
{
"Id": 1,
"CustomerNo": "sample string 2",
"CreateTime": "2026-04-13T13:50:07.9635005+08:00",
"CustomerName": "sample string 4",
"State": 5,
"SalesmanId": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfPlatformCustomerPO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Zs.Ylx.Resources.PO.Background">
<PlatformCustomerPO>
<CreateTime>2026-04-13T13:50:07.9635005+08:00</CreateTime>
<CustomerName>sample string 4</CustomerName>
<CustomerNo>sample string 2</CustomerNo>
<Id>1</Id>
<SalesmanId>6</SalesmanId>
<State>5</State>
</PlatformCustomerPO>
<PlatformCustomerPO>
<CreateTime>2026-04-13T13:50:07.9635005+08:00</CreateTime>
<CustomerName>sample string 4</CustomerName>
<CustomerNo>sample string 2</CustomerNo>
<Id>1</Id>
<SalesmanId>6</SalesmanId>
<State>5</State>
</PlatformCustomerPO>
</ArrayOfPlatformCustomerPO>