These docs are for v20.3.44. Click to read the latest docs for v20.3.186.

Discussions

Ask a Question
ANSWERED

Members receiving "Error 500 - if you keep receiving this

Hi, We have had a couple of members trying to register for events receiving this error. One person can't access an invoice either. We have asked them to change browsers, clear their cache and it's not working. Their profile looks fine from our end. Can someone advise why this is happening? There isn't an issue with the event, as we have had 90 other people register.
ANSWERED

List of built-in business objects you cannot delete from (in the API)?

Hi - I tried to delete from AutoPayInstructionDetail and received this message: `View or function 'vAutoPayInstructionDetail' is not updatable because the modification affects multiple base tables.` Wondering if it'd be possible to get a list of built-in business objects/panels that cannot be deleted from so we can exclude them from the `DELETE` action in iDMS?
ANSWERED

Updating Actual Amount and Transaction Count in BatchSummary

Earlier today, I created numerous prepayments through the API. While the transactions all processed correctly, the batch summary information was way off from the actual transaction information. I attempted to update the information via the BatchSummary endpoint using the PUT method; however, the ActualAmount.Amount and the TransactionCount fields would not update. Could this be addressed so that when the batch summary info is wrong we can fix it? Thanks, Korey
ANSWERED

Imis API

Attendees have registered in imis, what function do we use from the api to pull all the data related to that event? (FirstName,LastName,Email,Address,Phone,Attendee,Member,Customer,Registration,Tickets,Type,Status,Products,etc......) Thanks
ANSWERED

ItemPrice API Deferred Income Account

Is it possible to also define the Deferred Income account from API. I see the Income account is in the documentation just don't see anything for deferred income account.

ItemPrice API not working

Pulled the get request from the documentation and ran on our test site and it's not returning the list of item Prices const options = {method: 'GET', headers: {accept: 'application/json'}}; fetch('<https://yourorgsite.com/api/ItemPrice'>, options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err)); instead I get an error response `{ "$type": "Asi.Soa.Core.DataContracts.ValidationResultsData, Asi.Contracts", "Errors": { "$type": "Asi.Soa.Core.DataContracts.ValidationResultDataCollection, Asi.Contracts", "$values": [ { "$type": "Asi.Soa.Core.DataContracts.ValidationResultData, Asi.Contracts", "Message": "Criteria must contain at least one that tests ItemId for equality." } ] }, "Warnings": { "$type": "Asi.Soa.Core.DataContracts.ValidationResultDataCollection, Asi.Contracts", "$values": \[] } }` I was just trying to get the JSON response to see what was wrong with my POST request JSON object as it's giving me 400 error.
ANSWERED

How do I include multiple registrants on one invoice

I want to register multiple contacts and produce 1 invoice billed to the organisation, is this possible?
ANSWERED

Possible to query the API /Party endpoint by address ID?

Is it possible to add a parameter for AddressId (address num) and find the party that is associated with that address? Something like /Party?AddressId=12345
ANSWERED

Defining Event Contact through API

Is there a way to set the Event Contact through API? I am looking at the "create new Event" documentation and I don't see anything that resembles this field. It's the Contact_ID field on the Meet_master table. I see you can set it when you build the event in iMIS but I do need a way to set it from API. Thanks
ANSWERED

How to manage community subscriptions in the REST API?

Hi - in the REST API, is it possible to: 1. Get a list of communities? Add/remove communities? 2. Add/remove subscribers from a community? Thanks