Discussions
CORS Policies and Developing Client-Based iParts
We are attempting to create an iPart that make an API call to a 3rd party endpoint and can successfully make the call using Postman and in the console on the 3rd party's website where the origin is the same. However, if we attempt this call from our iMIS website, we receive a CORS exception because there is no Access-Control-Allow-Origin header in the response. Ultimately, this means that server to server calls are acceptable while client to server calls are not.
API - Get/Post/Put to Order Lines in 20.3
Hello,
REST API General Usage Questions
Hi,
How to access (SSO) Link using client ipart at angular
Hi Team ,
We have a client application(SSO) that application link should return a JSON value.
If I tried to access the return values using angular client iPartin client application(SSO) link using below method:
iMIS Desktop .NET Pulling Currently Logged In User and Setting Current iMIS User Programatically
I have created a custom integration in iMIS Desktop as a contractor for P.E.O. We recently updated to version 20.2.65.9541. We were using the Standard iMIS Callback/Event Interface to pull the current logged in user and update which client was selected in iMIS Desktop. Now, we are not able to pull this info except on the original server. Is there something that we are missing?
How do I work with the Communication Preferences Link?
When you create a communication in the Staff site, you can put a [INSERT COMMUNICATION PREFERENCES LINK], which generates a link with a token for managing a contacts communicaiton preferences. Is there anything with in the API that will generate these tokens?
update trans.transaction_date and trans.entered_by
I'm so new with Imis and .net
I have this app that reads data from a file then update imis records from the data in that file.
I have a code that update the trans table. Part of the code is below
ComboOrderData comboOrderData = new ComboOrderData
{
Currency = new CurrencyData { CurrencyCode = "USD" },
Order = new OrderData
{
Currency = new CurrencyData("USD"),
LineTotal = new MonetaryAmountData(donation.Amount, new CurrencyData("USD")),
Lines = orderLineDataCollection,
OrderDate = OrderDate = DateTime.Now,
OrderState = OrderStateData.Entered,
OrderTotal = new MonetaryAmountData(donation.Amount, new CurrencyData("USD")),
SoldToCustomerParty = new CustomerPartyData
{
PartyId = donation.DonorId
},
TotalBasePrice = new MonetaryAmountData(donation.Amount, new CurrencyData("USD")),
SourceCode = donation.SourceCode
},
Payments = remittanceDataCollection
};
Paying Open Invoice
We are trying to pay an open invoice, specifically for dues. We are currently trying to post to payment API endpoint, example post below. Is this the best endpoint to use? What fields are needed to successfully post a payment to an open invoice?
iMIS SSO with 3rd Party Client Site
We are implementing iMIS's SSO solution and have set up the iMIS side according to the documentation provided at https://help.imis.com/imis2017/Features/RiSE/Maintenance/Single_Sign_On.htm; however, after logging in at the newly created sign on screen and being redirected to the content record containing the Single Sign-On content item, we get the message "Login redirect Url [Our Redirect Url] did not respond." Is there any documentation about what is required on the 3rd party client side to provide iMIS the appropriate response? What is the response that iMIS is seeking when this message is displayed?
SSRS Reports with PA Tasks can Only Pass partyID Parameter?
Hi, I have a use case where I need to send the SSRS Report with 2 Parameters on a scheduled basis with Process Automation Tasks.