GET api/User/GetAgentList?uid={uid}&platformId={platformId}

“GetAgentList”的文档。

Request Information

Parameters

NameDescriptionAdditional information
uid
“uid”的文档。

Define this parameter in the request URI.

platformId
“platformId”的文档。

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Id": 1,
      "UserName": "sample string 2",
      "ShopName": "sample string 3"
    },
    {
      "Id": 1,
      "UserName": "sample string 2",
      "ShopName": "sample string 3"
    },
    {
      "Id": 1,
      "UserName": "sample string 2",
      "ShopName": "sample string 3"
    }
  ],
  "Status": 1
}

application/xml, text/xml

Sample:
<AgentListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaiShengShi.Models">
  <Items>
    <AgentModel>
      <Id>1</Id>
      <ShopName>sample string 3</ShopName>
      <UserName>sample string 2</UserName>
    </AgentModel>
    <AgentModel>
      <Id>1</Id>
      <ShopName>sample string 3</ShopName>
      <UserName>sample string 2</UserName>
    </AgentModel>
    <AgentModel>
      <Id>1</Id>
      <ShopName>sample string 3</ShopName>
      <UserName>sample string 2</UserName>
    </AgentModel>
  </Items>
  <Status>1</Status>
</AgentListModel>