Hi Dhiraj,

As far as I am aware Mifos currently does not support integration with
Credit Bureau out of the box.
Integrations need code-level changes ( efforts depend on each Credit bureau
design) and simply cannot be used by hooks.

We have an ongoing effort to build the Credit bureau module( you can check this
<https://cwiki.apache.org/confluence/display/FINERACT/Documentation+to+use+Integrated+Credit+Bureau>document)
however, developments have to be done to build connectors for each required
Credit bureaus.

As Mifos/Fineract is an open-source community, you can raise your
enhancement request here
<https://issues.apache.org/jira/projects/FINERACT/issues/FINERACT-982?filter=allopenissues>
which
would be prioritized and picked for development by volunteers/Contributors.

you can also see what's coming in our roadmap and submit ideas for what
you'd like to see in the product here
<https://portal.productboard.com/mifos/2-mifos-x-portal/tabs/4-under-consideration>


Regards,
Bharath
Lead Implementation Analyst | Mifos Initiative
Skype: live:cbharath4| Mobile: +91.7019635592
http://mifos.org  <http://facebook.com/mifos>
<http://www.twitter.com/mifos>


On Fri, Aug 20, 2021 at 3:52 AM dhiraj jadav <jadav.dhi...@gmail.com> wrote:

> Anybody can help on below issue.
>
> On Wed, 18 Aug 2021, 11:02 am dhiraj jadav, <jadav.dhi...@gmail.com>
> wrote:
>
> Dear Team we have  trying create hook for Equifax (Credit Bureau)
>> integration using below request but i m not able to do anyone can Guide me
>> how can integrate CREDIT BUREAU with Mifos
>>
>>
>>
>> <?php
>>
>> $curl = curl_init();
>>
>> curl_setopt_array($curl, array(
>>   CURLOPT_URL => 'https://52.220.107.255/fineract-provider/api/v1/hooks',
>>   CURLOPT_RETURNTRANSFER => true,
>>   CURLOPT_ENCODING => '',
>>   CURLOPT_MAXREDIRS => 10,
>>   CURLOPT_TIMEOUT => 0,
>>   CURLOPT_FOLLOWLOCATION => true,
>>   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
>>   CURLOPT_CUSTOMREQUEST => 'POST',
>>   CURLOPT_POSTFIELDS =>'{
>> "name": "Web",
>> "isActive": true,
>> "displayName": "equifax",
>> "templateId": 1,
>> "events": [{
>> "actionName": "CREATE",
>> "entityName": "equifax"
>> },
>> {
>> "actionName": "UPDATE",
>> "entityName": "equifax"
>> }
>> ],
>> "config": {
>> "Payload URL": "https://eportuat.equifax.co.in/cir360Report/cir360Report
>> ",
>> "Content Type": "json"
>> }
>> }',
>>   CURLOPT_HTTPHEADER => array(
>>     'Authorization: Basic bWlmb3M6cGFzc3dvcmQ=',
>>     'Content-Type: text/plain'
>>   ),
>> ));
>>
>> $response = curl_exec($curl);
>>
>> curl_close($curl);
>> echo $response;
>>
>>
>> RESPONSE
>>
>>
>> {
>>     "timestamp": 1629263094285,
>>     "status": 400,
>>     "error": "Bad Request",
>>     "message": "",
>>     "path": "/fineract-provider/api/v1/hooks"
>> }
>>
> Mifos-developer mailing list
> mifos-develo...@lists.sourceforge.net
> Unsubscribe or change settings at:
> https://lists.sourceforge.net/lists/listinfo/mifos-developer
_______________________________________________
Mifos-users mailing list
Mifos-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mifos-users

Reply via email to