@digigov-oss/retreive-info-by-name-client
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

retrieveInfoByNameClient

Client to connect on GSIS service.

Returns Natural and Non-Natural Persons data based on Name.

Example

import getInfo from '@digigov-oss/retreive-info-by-name-client';
import config from './config.json'; 
const test = async () => {
   
   const input = {
    surnameA: "ΠΑΠΠΑΣ",
    secondSurname: 'ΓΩΓΟΣ',
    nameA: "ΓΕΩΡΓΙΟΣ",
    mothersFirstName: 'ΚΩΣΤΟΥΛΑ',
    fathersFirstName: "ΚΩΝΣΤΑΝΤΙΝΟΣ"
   }

    try {
        const Info = await getInfo(input, config.user, config.pass);
        console.log(Info); 
    } catch (error) {
        console.log(error);
    }

}

test();
}
  • you can use overrides to override the default values for auditrecord and input fields.
  • for your tests, you don't need to use the overrides mechanism, in that case, the default storage path will be used ie /tmp
  • look at KED standard guides for records you can use on auditInit" Also, you can use overrides to override the default storage engine. Look at module AuditRecordDB for more details on how to use the AuditEngine.

Returns

an object like the following:

{
        retrieveInfoByNameRecord: {
                dataNameArray: {
                        record: [
                                {
                                        afm: '067801958',
                                        surname: 'ΠΑΠΠΑΣ',
                                        secondSurname: 'ΓΩΓΟΣ',
                                        firstName: 'ΓΕΩΡΓΙΟΣ',
                                        fathersFirstName: 'ΚΩΝΣΤΑΝΤΙΝΟΣ',
                                        mothersFirstName: 'ΚΩΣΤΟΥΛΑ',
                                        birthDate: Wed Sep 29 1965 00:00:00 GMT+0200 (Θερινή ώρα Ανατολικής Ευρώπης),
                                        doy: '6311',
                                        doyDescr: 'ΙΩΑΝΝΙΝΩΝ',
                                        cardNo: 'Λ544311',
                                        cardKindDescr: 'ΑΤ ΑΣΤΥΝΟΜΙΚΗ ΤΑΥΤΟΤΗΤΑ',
                                        firmFlagDescr: 'ΜΗ ΕΠΙΤΗΔΕΥΜΑΤΙΑΣ',
                                        residenceAddress: 'ΑΡΗ ΒΕΛΟΥΧΙΩΤΗ',
                                        residenceNo: '52',
                                        parResidence: 45332,
                                        parResidenceDescr: 'ΙΩΑΝΝΙΝΑ'
                                }
                                ]
                }
        },
        callSequenceId: 49245917,
        callSequenceDate: Mon May 09 2022 12:58:57 GMT+0300 (Θερινή ώρα Ανατολικής Ευρώπης),
        errorRecord: null,
        auditUnit: 'gov.gr',
        auditTransactionId: '87',
        auditProtocol: '87/2022-05-09',
        auditTransactionDate: '2022-05-09T09:58:56Z',
        auditUserIp: '127.0.0.1',
        auditUserId: 'system'
}

or an error object like the following:

{
 retrieveInfoByNameRecord: {
                dataNameArray: null
        },
        callSequenceId: 49253014,
        callSequenceDate: Mon May 09 2022 14:41:02 GMT+0300 (Θερινή ώρα Ανατολικής Ευρώπης),
        errorRecord: {
                errorCode: 'GEN_NO_RECORDS_FOUND',
                errorDescr: 'Δεν βρέθηκαν αποτελέσματα, αλλάξτε τα κριτήρια αναζήτησης'
        },
        auditUnit: 'gov.gr',
        auditTransactionId: '90',
        auditProtocol: '90/2022-05-09',
        auditTransactionDate: '2022-05-09T11:40:59Z',
        auditUserIp: '127.0.0.1',
        auditUserId: 'system'
}
}

Notes

In case of KED advertises wrong endpoint on production you have to use (override) the endpoint: https://ked.gsis.gr/esb/registryService You can do that by setting the endpoint property on the overrides object.

const overrides = {
    endpoint: 'https://ked.gsis.gr/esb/registryService',
}

Readme

Keywords

Package Sidebar

Install

npm i @digigov-oss/retreive-info-by-name-client

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

38.3 kB

Total Files

32

Last publish

Collaborators

  • dmassaad-grnet
  • dmichail
  • pskarvelis