GET api/accountloanindustrycode

Get Account Loan Industry Codes.

Requires Authorisation

The api request must supply authenticated token in a custom variable in the request header. The custom variable name is configured in web.config. The default name of the custom variable is “X-Fern-Token”.

Requires Api License and User Access

The api requires license and user permission for API ID, GETapi/accountloanindustrycode. The user permission can be defined on User Settings screen in Abacus. For license, please contact Fern manager.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Response Codes

Success Status:

  • OK (200), please see resource description below.

Failed Status(es):

Resource Description

List of Account Loan Industry codes.

Collection of CUAccountIndustryCodeDto
NameDescriptionTypeAdditional information
CUAccountIndustryCodeID

Unique identifier of account industry code.

integer
Code

Code.

string
Description

Descrption of the account industry code.

string
DefaultItem

Determines if it is default account indutry code.

boolean
ProductTypeID

Priducttype(loans/savings) for which this account indutry code is applicable.

integer

Response Formats

application/json, text/json

Sample:
[
  {
    "productTypeID": 1,
    "cuAccountIndustryCodeID": 1,
    "code": "sample string 2",
    "description": "sample string 3",
    "defaultItem": true
  },
  {
    "productTypeID": 1,
    "cuAccountIndustryCodeID": 1,
    "code": "sample string 2",
    "description": "sample string 3",
    "defaultItem": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfCUAccountIndustryCodeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">
  <CUAccountIndustryCodeDto>
    <ProductTypeID>1</ProductTypeID>
  </CUAccountIndustryCodeDto>
  <CUAccountIndustryCodeDto>
    <ProductTypeID>1</ProductTypeID>
  </CUAccountIndustryCodeDto>
</ArrayOfCUAccountIndustryCodeDto>