GET dz_api/AaService/GetCustomerInfo?custId={custId}

代账服务-查找客户信息

Request Information

URI Parameters

NameDescriptionTypeAdditional information
custId

integer

Required

Body Parameters

None.

Response Information

Resource Description

代账服务-查找客户信息

GetCustomerInfoResult
NameDescriptionTypeAdditional information
CustId

客户ID

integer

None.

CustName

客户名称

string

None.

ServiceTypeName

服务类型

string

None.

CustTaxTypeName

纳税性质

string

None.

AccountStandardEnum

会计准则

integer

None.

AccountStandardName

会计准则

string

None.

LicenseNo

纳税人识别号/税号

string

None.

AccAsId

记账账套ID

integer

None.

AaServiceStatus

代账服务状态,-1:没有代账服务,1010:执行中,1020,已完成

integer

None.

AccAsType

账套类型,0:全部,1010:免费版;1020:专业版

AccAsType

None.

Response Formats

application/json, text/json

Sample:
{
  "CustId": 1,
  "CustName": "sample string 2",
  "ServiceTypeName": "sample string 3",
  "CustTaxTypeName": "sample string 4",
  "AccountStandardEnum": 5,
  "AccountStandardName": "sample string 6",
  "LicenseNo": "sample string 7",
  "AccAsId": 8,
  "AaServiceStatus": 9,
  "AccAsType": 1010
}

application/xml, text/xml

Sample:
<GetCustomerInfoResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.AccountingAgent.Models.App">
  <AaServiceStatus>9</AaServiceStatus>
  <AccAsId>8</AccAsId>
  <AccAsType>Free</AccAsType>
  <AccountStandardEnum>5</AccountStandardEnum>
  <AccountStandardName>sample string 6</AccountStandardName>
  <CustId>1</CustId>
  <CustName>sample string 2</CustName>
  <CustTaxTypeName>sample string 4</CustTaxTypeName>
  <LicenseNo>sample string 7</LicenseNo>
  <ServiceTypeName>sample string 3</ServiceTypeName>
</GetCustomerInfoResult>