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

Discussions

Ask a Question

How to recreate 'Register Myself'/'Register Someone Else' buttons on Events through the API

Hi, I've asked a similar question in another discussion post: How to recreate 'Cancel My Registration' button on Events through the API" however i'd like some insight on how to register rather than cancel. That old post explains how most of registration is done through the cart. I've created OrderLines with the right prices and delivery data and posted to the cart. However our manually created carts are missing fields such as 'OrderLineId' and 'DeliveryId' that seem to be required to make this work. Are these Ids generated manually as well or is there an API endpoint that generates these guids as well? Thanks
ANSWERED

iMIS EMS: Self-hosting ASI.dlls

Hi, We have a few clients approved for EMS self-hosting. Is there a way to access the asi.dll and other relevant dlls used by .NET SOA and iBO iParts? Thank you and kind regards, Bilal
ANSWERED

Is there a way to insert/update badge lines using RESTAPI into Order_badge?

Hi, I would like to know if API does a POST request to insert/update badge lines into Order_badge table. Thanks
ANSWERED

iMIS EMS and contact picture URLs

I am working on an integration with a third-party directory system for an iMIS EMS client. We know that iMIS stores the contact pictures in a business object that we can use in an IQA query. However, when the third party pulls the IQA data over the iMIS API, the data sent for the image is the raw SQL blob data. Is it possible for iMIS to send a URL for the image instead of the blob data?
ANSWERED

How to recreate 'Cancel My Registration' button on Events through the API

Hi, We're looking to find the endpoints that sets a member that has already registered+paid for their event to CanceledPendingCheckout and also pushes the refund amount to their cart. I've tried the _execute + CancelEventRegistration endpoint but this skips the step where users have to submit their cart to complete the cancel. I've also tried updating their current EventRegistration to CanceledPendingCheckout using the put /EventRegistration endpoint but this does not seem to update their status. Are there any previous/further steps i'm missing for either of those endpoints to work like the out of the box button? Thank you, Jesus
ANSWERED

How to Query in a GenericPropertyDataCollection REST API

Hello, when I have multiple values in a json result, but I want to query just those that have one "Name" with value "AB", how can I build the query for this ? For example: for the link, I'm filtering with the condition pointing to field GroupId https://{{URL}}/api/GroupSummary?GroupId=Startswith:COMMITTEE/NA&Limit=10 But in the case that one committee has many Generic Properties (Asi.Soa.Core.DataContracts.GenericPropertyDataCollection), I'd like to filter by one of those properties. How to do it ? Thank you!
ANSWERED

How do we generate a credit to an individual's record?

We are looking to generate a credit to a record when there is an overpayment to the dues item. How is that done through the REST api?
ANSWERED

How to call REST API in Process Automation Job

I am having an existing process automation job which on insertion of data on order or trans table was executing one procedure. Now I want to replace it with the rest API. However, I am not finding a place where I will put my custom ipart which will use REST API to do the required write back This answer is most important to me. Can someone please guide me? Thanks Jay Pandya
ANSWERED

Imis Rest api - GroupCategory

Hello, to create a committee using the rest api, I'd like to have the user selecting the "GroupCategory". Where can i get a list of these values so the user can select one ? Thank you !
ANSWERED

API Company Admin role delete issue

Apologies in advance for the length. We are attempting to use the iMIS API for deleting a company administrator relationship. By setting the MembershipDetails.IsMarkedForDelete property to true, as referenced in this discussion item - https://developer.imis.com/discuss/601ae38a47cdf0007abca38d - we were able to get a successful deletion of the company administrator relationship; however, we subsequently discovered that other relationships for the particular group member were also being deleted. A similar JSON POST, essentially the same script without the IsMarkedForDelete property set to true, is working perfectly for us for adding a company administrator relationship through the API without any unintended consequences. ---- Below is the JSON string we are using to POST to /api/GroupMember/ { "$type": "Asi.Soa.Membership.DataContracts.GroupMemberData, Asi.Contracts", "MembershipDetails": { "$type": "Asi.Soa.Membership.DataContracts.GroupMemberDetailDataCollection, Asi.Contracts", "$values": [ { "$type": "Asi.Soa.Membership.DataContracts.GroupMemberDetailData, Asi.Contracts", "GroupMemberDetailId": "ORGRELATIONSHIP-25049:28139", "Stage": { "$type": "Asi.Soa.Membership.DataContracts.GroupStageData, Asi.Contracts" }, "IsActive": true, "Role": { "$type": "Asi.Soa.Membership.DataContracts.GroupRoleData, Asi.Contracts", "RoleId": "COMPANYADMINISTRATOR", "Name": "Company Administrator" }, "IsMarkedForDelete": true } ] }, "Group": { "$type": "Asi.Soa.Membership.DataContracts.GroupSummaryData, Asi.Contracts", "GroupId": "ORGRELATIONSHIP-25049", "Name": "Aiken", "Description": "Organizational Relationship", "ParentIdentity": { "$type": "Asi.Soa.Core.DataContracts.IdentityData, Asi.Contracts", "EntityTypeName": "Party", "IdentityElements": { "$type": "System.Collections.ObjectModel.Collection`1[[System.String, mscorlib]], mscorlib", "$values": [ "25049" ] } }, "GroupClass": { "$type": "Asi.Soa.Membership.DataContracts.GroupClassSummaryData, Asi.Contracts", "GroupClassId": "ORGRELATIONSHIP", "Name": "Organization", "Description": "" }, "StatusCode": "A" }, "Party": { "$type": "Asi.Soa.Membership.DataContracts.PartySummaryData, Asi.Contracts", "PartyId": "28139", "Id": "28139", "Status": { "$type": "Asi.Soa.Membership.DataContracts.PartyStatusData, Asi.Contracts", "PartyStatusId": "A", "Name": "Active", "Description": "Active" } } } ---- Below is the object response received after the above JSON POST to /api/GroupMember/ was executed and indicating the MembershipDetails.IsMarkedForDelete property was set to true by our script. No other relationships appear to be referenced. {$type: 'Asi.Soa.Membership.DataContracts.GroupMemberData, Asi.Contracts', MembershipDetails: {…}, Group: {…}, Party: {…}} $type: "Asi.Soa.Membership.DataContracts.GroupMemberData, Asi.Contracts" Group: $type: "Asi.Soa.Membership.DataContracts.GroupSummaryData, Asi.Contracts" Description: "Organizational Relationship" GroupClass: $type: "Asi.Soa.Membership.DataContracts.GroupClassSummaryData, Asi.Contracts" Description: "" GroupClassId: "ORGRELATIONSHIP" Name: "Organization" [[Prototype]]: Object GroupId: "ORGRELATIONSHIP-25049" Name: "Aiken" ParentIdentity: {$type: 'Asi.Soa.Core.DataContracts.IdentityData, Asi.Contracts', EntityTypeName: 'Party', IdentityElements: {…}} [[Prototype]]: Object MembershipDetails: $type: "Asi.Soa.Membership.DataContracts.GroupMemberDetailDataCollection, Asi.Contracts" $values: Array(1) 0: $type: "Asi.Soa.Membership.DataContracts.GroupMemberDetailData, Asi.Contracts" GroupMemberDetailId: "ORGRELATIONSHIP-25049:28139" IsActive: true IsMarkedForDelete: true Role: $type: "Asi.Soa.Membership.DataContracts.GroupRoleData, Asi.Contracts" Description: "Company Administrator" Name: "_ORG-ADMIN" Priority: 1 RoleId: "COMPANYADMINISTRATOR" UseTitle: true [[Prototype]]: Object Stage: {$type: 'Asi.Soa.Membership.DataContracts.GroupStageData, Asi.Contracts'} [[Prototype]]: Object length: 1 [[Prototype]]: Array(0) [[Prototype]]: Object Party: $type: "Asi.Soa.Membership.DataContracts.PartySummaryData, Asi.Contracts" CityName: "Aiken" CountryName: "United States" CountrySubEntityName: "SC" Email: "[email protected]" Id: "28139" IsMarkedForDelete: false Name: "Ms. April D Golding" PartyId: "28139" Phone: "" Sort: "GOLDING, APRIL D" Status: {$type: 'Asi.Soa.Membership.DataContracts.PartyStatusData, Asi.Contracts', PartyStatusId: 'A', Name: 'Active', Description: 'Active'} UniformId: "b5fc336c-0d34-4f50-b5cd-8990f285a12e" [[Prototype]]: Object [[Prototype]]: Object ---- Below is a subsequent api/GroupMember/ GET object response for the same person indicating that the Company Adminstrator relationship has been removed but a number of other relationships are also no longer reflected. The two remaining relationships - "Aiken" (chapter membership) and "Regular Member" appear to be consistant across other member IDs that we have run the group delete script against. These same relationships have been confirmed via our iMIS system. {$type: 'Asi.Soa.Core.DataContracts.PagedResult`1[[Asi.Soa.…s.GroupMemberData, Asi.Contracts]], Asi.Contracts', Items: {…}, Offset: 0, Limit: 100, Count: 2, …} $type: "Asi.Soa.Core.DataContracts.PagedResult`1[[Asi.Soa.Membership.DataContracts.GroupMemberData, Asi.Contracts]], Asi.Contracts" Count: 2 HasNext: false Items: $type: "System.Collections.Generic.List`1[[Asi.Soa.Membership.DataContracts.GroupMemberData, Asi.Contracts]], mscorlib" $values: Array(2) 0: $type: "Asi.Soa.Membership.DataContracts.GroupMemberData, Asi.Contracts" DropDate: "2099-12-31T00:00:00" Group: {$type: 'Asi.Soa.Membership.DataContracts.GroupSummaryData, Asi.Contracts', GroupId: 'CHAPT/25049', Name: 'Aiken', Description: '', ParentIdentity: {…}, …} GroupMemberId: "CHAPT/25049:28139" IsActive: true JoinDate: "2010-10-27T00:00:00" MembershipDetails: {$type: 'Asi.Soa.Membership.DataContracts.GroupMemberDetailDataCollection, Asi.Contracts', $values: Array(1)} Party: {$type: 'Asi.Soa.Membership.DataContracts.PartySummaryData, Asi.Contracts', CityName: 'Aiken', CountryName: 'United States', CountrySubEntityName: 'SC', Email: '[email protected]', …} [[Prototype]]: Object 1: $type: "Asi.Soa.Membership.DataContracts.GroupMemberData, Asi.Contracts" DropDate: "2019-11-30T00:00:00" Group: {$type: 'Asi.Soa.Membership.DataContracts.GroupSummaryData, Asi.Contracts', GroupId: 'MT-M', Name: 'Regular Member', Description: 'Regular Member', ParentIdentity: {…}, …} GroupMemberId: "MT-M:28139" IsActive: true JoinDate: "2010-10-27T00:00:00" MembershipDetails: {$type: 'Asi.Soa.Membership.DataContracts.GroupMemberDetailDataCollection, Asi.Contracts', $values: Array(0)} Party: {$type: 'Asi.Soa.Membership.DataContracts.PartySummaryData, Asi.Contracts', CityName: 'Aiken', CountryName: 'United States', CountrySubEntityName: 'SC', Email: '[email protected]', …} [[Prototype]]: Object length: 2 [[Prototype]]: Array(0) [[Prototype]]: Object Limit: 100 NextOffset: 0 NextPageLink: null Offset: 0 TotalCount: 2 [[Prototype]]: Object ---- We are hesitant to do any further testing or investigation of this due to data concerns. Are you able to determine if we have anything incorrect in our current approach or if there is an alternate approach to deleting Company Administrator relationships? Thank you in advance and please let us know if you have any questions or need any additional details. Matt