Developer Programs

Learn

Docs

PSInq

API Reference > PSInq
SoapActionn/a
Input NamePSInq
Output NamePSInqResponse
Input Namespacen/a
Group NameXperience
ContainerXP_MsgBus.xsd
PSInq.cs
// NOTE: Ignore Index not found
//       See PSAdd for special notes on the ConsumerEnv element of the PSIdx.

List errors = new List(){new ErrOvrRd_CType(){ErrCode = "2108"}};

PSInqRq_MType request = new PSInqRq_MType()
{
    ErrOvrRdInfoArray = errors.ToArray(),
    PSSecKey = this.securityKey,
    PSIdx = new PSIdx_CType()
    {
        PSApp = Application.ApplicationId,
        PSFinInst = Constants.FinInst,
        PSKey = Environment.UserName + "2",
        PSProd = Application.ApplicationId,
        PSUsr = Environment.UserName,
        PSConsumerEnv = “2013-TEST”
    },
PSInq.js
var errorsToIgnore = new Array();
var errorOvr = new jackHenry.xperience.businessObjects.ErrOvrRd_CType();
errorOvr.ErrCode = "2108";
errorsToIgnore.push(errorOvr);

var request = new jackHenry.xperience.businessObjects.PSInq();
request.ErrOvrRdInfoArray = new jackHenry.xperience.businessObjects.ErrOvrRdInfoArrayType();
request.ErrOvrRdInfoArray.ErrOvrRd = errorsToIgnore,
request.PSSecKey = securityKey;
request.PSIdx = new jackHenry.xperience.businessObjects.PSIdx_CType();
request.PSIdx.PSApp = lastAddedEntry.PSApp;
request.PSIdx.PSConsumerEnv = lastAddedEntry.PSConsumerEnv;
request.PSIdx.PSFinInst = lastAddedEntry.PSFinInst;
request.PSIdx.PSKey = lastAddedEntry.PSKey;
request.PSIdx.PSProd = lastAddedEntry.PSProd;
request.PSIdx.PSUsr = lastAddedEntry.PSUsr;

sampleXPWebProductAngular.Helper.FillHeader(request);

var responseCallback = jackHenry.xperience.messageBus.send(request).registerResponseHandler(onInquireEntryCallback);

Did this page help you?

Last updated Mon Dec 9 2024