Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sample Response

<accountResponse>

<account>

<id>e70ca878-1055-40c1-8322-632181dc788e</id>

<accountName>EDCI - TA</accountName>

<accountNumber>2586050</accountNumber>

<chartOfAccountsCode>UC</chartOfAccountsCode>

<status>NEW</status>

<fiscalOfficerIdentifier>grw02001</fiscalOfficerIdentifier>

<accountTypeCode>NA</
Single Accounthttps://dev.api.finance.uconn.edu/webapi/accounts/cider/account?accountNumber=4343430
Other Queriessee bottom of page

Sample Response - Single Account

<Account>

<id>C1F881630C4C0012E0430A031C730012</id>

<accountName>2010 Pi Allotment</accountName>

<accountNumber>4343430</accountNumber>

<chartOfAccountsCode>UC</chartOfAccountsCode>

<status>CLOSED</status>

<fiscalOfficerIdentifier>dbm02001</fiscalOfficerIdentifier>

<accountTypeCode>IP</accountTypeCode>

<bankCode>15</bankCode>

<consolidationChartOfAccountsCode/>

<consolidationAccountNumber/>

<reportsToAccountNumber/>

<reportsToChartOfAccountsCode/>

<FundSIDCode>1161000<<FundSIDCode>1171000</FundSIDCode>

<fundSIDDescription>Tuition <fundSIDDescription>Research Fund</fundSIDDescription>

<accountManagerSystemIdentifier>jai05001<<accountManagerSystemIdentifier>dak02005</accountManagerSystemIdentifier>

<accountsSupervisorySystemsIdentifier>dtc13003<<accountsSupervisorySystemsIdentifier>mjp02013</accountsSupervisorySystemsIdentifier>

<organizationCode>1214<<organizationCode>1321</organizationCode>

<subFundGroupCode>OPTUI<<subFundGroupCode>UNRSP</subFundGroupCode>

<departmentAccountOwnercode>DEP<<departmentAccountOwnercode/departmentAccountOwnercode>>

<departmentReference1/>

<cfdaNumber/>

<projectName/>

<plantFundsParentCode/>

<plantFundsParentCodeDescription/>

<accountExpenseGuidelineText>Conform to University/Sponsor policies</accountExpenseGuidelineText>

<accountIncomeGuidelineText>Conform to University/Sponsor policies</accountIncomeGuidelineText>

<accountPurposeText>

To record transactions and balances for this account.

</accountPurposeText>

<effectiveDate>2021<effectiveDate>2011-0410-26<25</effectiveDate>

<expiredDate xsi:nil="true"/><expiredDate>2011-12-31</expiredDate>

</account></accountResponse>Account>




WSDL Definition

Definition URLs

UAT - https://kualinp.uconn.edu/kfs-uat/remoting/chartOfAccountsInquiry?wsdl
PROD - https://kuali.uconn.edu/kfs-prd/remoting/chartOfAccountsInquiry?wsdl

Binding

{http://kfs.kuali.org/kfs/v5_0}chartOfAccountsInquirySoapBinding

SOAP Version

SOAP 1.1

...

Code Block
languagexml
titleSample Response (Bad)
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <soap:Fault>
         <faultcode>soap:Server</faultcode>
         <faultstring>Account not found.</faultstring>
         <detail>
            <ns2:AccountInquiryFault xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:ns2="http://kfs.kuali.org/core/v5_0"/>
         </detail>
      </soap:Fault>
   </soap:Body>
</soap:Envelope>

Code Examples

Java

...

languagejava
titleJUnit

...

Sample SQL example

select account_NBR, account_nm, Sub_fund_grp_cd, acct_closed_ind, acct_create_dt, acct_effect_dt, acct_expiration_dt
--select count(*)
from kfs_uat.CA_ACCOUNT_T
where sub_fund_grp_cd IN ('PLEQP', 'PLRES', 'PLBHC', 'PLRHC', 'OPOTF', 'PLBND', 'PLREV', 'PLUNR')
-- and acct_create_dt > TO_DATE('2016-08-25','YYYY-MM-DD')
-- and acct_create_dt < TO_DATE('2016-09-17','YYYY-MM-DD') 

--order by account_nbr
 ; 

Code Examples