GET api/offline/customer/GetOfflineUserInfo

获取线下登录管理员信息(包含店铺角色和权限数据)

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ResponseOfAdminInfoResponse
NameDescriptionTypeAdditional information
data

AdminInfoResponse

None.

errcode

错误码,默认为成功:SUCCESS

string

None.

errmsg

错误信息,默认为:成功

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {
    "Name": "sample string 1",
    "ImgUrl": "sample string 2",
    "ShopId": 1,
    "ShopName": "sample string 3",
    "PhoneNumber": "sample string 4",
    "RoleName": "sample string 5",
    "ShopRoleName": "sample string 6",
    "ShopRolePermissionsName": "sample string 7"
  },
  "errcode": "sample string 1",
  "errmsg": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseOfAdminInfoResponseUJ8Augit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
  <errcode>sample string 1</errcode>
  <errmsg>sample string 2</errmsg>
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response">
    <d2p1:ImgUrl>sample string 2</d2p1:ImgUrl>
    <d2p1:Name>sample string 1</d2p1:Name>
    <d2p1:PhoneNumber>sample string 4</d2p1:PhoneNumber>
    <d2p1:RoleName>sample string 5</d2p1:RoleName>
    <d2p1:ShopId>1</d2p1:ShopId>
    <d2p1:ShopName>sample string 3</d2p1:ShopName>
    <d2p1:ShopRoleName>sample string 6</d2p1:ShopRoleName>
    <d2p1:ShopRolePermissionsName>sample string 7</d2p1:ShopRolePermissionsName>
  </data>
</ResponseOfAdminInfoResponseUJ8Augit>