Developers
Mostly about Wild Apricot API. Feel free to share examples of your code!
203 results found
-
GET, PUT, and POST for blog content
I would like to be able to retrieve, update, and create blog posts via the API.
1 vote -
Add waitlist count to Events API call
The Events API returns information about all or selected events. The returned data includes ConfirmedRegistrationsCount and RegistrationsLimit. It would be very helpful to have the API call also return the count of people on the waitlist.
The Export registrants option in the Admin section doesn't include registration limits.
Currently, I have to fetch each event and count the number of people on the waitlist for each event. That's a lot of loops. We have a few hundred events to mung.4 votes -
List of failed email contacts
How do I get a list of contacts who cannot be emailed to? We have a large list and nearly 8,000 who are bounced emails, but I cannot see a way to remove them. We are getting charged for the extra contacts but are unable to remove them.
Technical support have not responded to queries, does anyone here have an idea?
Thanks
John1 vote -
Deactivate
I would like to be able to deactivate a member through the API. Deactivating a pending membership is possible through /rpc/{accountId}/RejectPendingMembership, but that doesn't seem to be intended for existing memberships.
I tried sending a PUT to /rpc/Accounts/{accountId}/Contacts/{member_id} with 'MembershipEnabled: false', as well as setting FieldValues like "Member", "SuspendedMember", and "Membership enabled", but this returned a 400 error.
2 votes -
Example snippets for using webhooks?
Hi,
is it possible to get example of using webhooks? ie what data is sent? What return codes etc are required?
Thanks,
Russell2 votes -
Changing CSS, text and translation with Wild Apricot Text Manager
The Wild Apricot Text Manager (WATM) is a Javascript library included with every Wild Apricot website that NewPath Consulting designs.
https://www.newpathconsulting.com/2018/11/introducing-the-wild-apricot-text-manager.html
WATM can be used by any Wild Apricot administrator to manage and replace nearly every piece of system text in Wild Apricot. You can also use it to change CSS for any class or ID.
WATM can be used also to create a multi-lingual Wild Apricot website without the need to create duplicate pages, page templates or events. WATM currently supports a maximum of 2 languages. A list of replaceable elements is included in the easy-to-edit Excel configuration file.…
1 vote -
API for non admin users
Hello
I have added a page within WA website and I have added Dimitri example (https://gist.github.com/DmitriySmirnov/0beda14e93bed7b5dc2f)
But it does not work for non-admin users, someone could help me please?
Regards
1 vote -
Combining API with Wild Apricot Website
Hi guys
I am trying to create a page within Wild Apricot Website, where a branch committee (group of people) can administrate their own group.
I would like to create an event using API within Wild Apricot Website, I tried with no success.
Someone could help please?
1 vote -
How to trigger password reset email?
I have implemented single sign on, but I want my login form to be able to trigger the password reset email (eg a "Forgotten Password?" link on the login form.
I can see that there is a way to do this manually via the back end, but I need a way to trigger this via the API.
Thanks
John3 votesDmitry Smirnov respondedAPI cannot do it.
-
v2.1 getEventDetails returns 404 for existing events
I have a list of event IDs that I need to verify still exist in WildApricot. For some of them, the call to /accounts/{accountId}/events/{eventId} returns a 404, even though I can search and find them in the admin UI (Events > Event List). I am not passing any filters to the API call.
Any ideas why the API returns a 404?
1 vote -
Export discussion forum database
Export Discussion forum data to a csv file or xml
2 votes -
Add or update site content via API
We want to be able to update selected pages and content blocks via the API. For example, our finance committee creates a monthly report that we'd like to publish as an HTML page. Allowing us to PUT and POST content would be very helpful.
3 votes -
$filter contacts by MembershipLevel
How do I $filter contacts by MembershipLevel using the v2 API?
1 voteDmitry Smirnov respondedHere is a sample request to get all contacts of specific membership level:
https://gist.github.com/DmitriySmirnov/94693fe953f24638913e8d0636d983ad
Don’t forget to encode spaces and replace {ACCOUNT_ID} and {LEVEL_ID} with your values.
-
Additional, Administrator-defined, Optionally-searchable Content Types
Think it would be quite useful to have the ability to (optionally) define additional "Content Types", i.e., types other than the default set already provided (Page contents, Blogs, Forums, Events, & Public Member profiles).
This capability would add an important, new dimension to the site wide Search Gadget, and would provide a user-configurable means to manage the scope of a user's search capability, by role!
Such that:
Any number of additional (optionally-defined) content types can be established by a site administrator
These optionally-defined content types can be administrator-selected for inclusion/exclusion: (a) By role and (b) In the site search Gadget’s…
7 votes -
Search Results by State
It seems that when setting a contact/member's address you can choose for the "State" field either the full state name or the standard two-character abbreviation.
When adding the "State" field to a Member Directory search, you have to search specifically for EITHER the state name or abbrevation.
It seems to me that there should be an option (or perhaps it should be by default) that the results returned for any one particularly state should include BOTH those contacts with the state name and state abbreviation.
Why would you ever want to have separate database stores for the two different naming…
2 votes -
Sending email via API
I'm trying to use the send email API call - https://app.swaggerhub.com/apis-docs/WildApricot/wild-apricot_public_api/2.1.0#/Emailing.Operations/SendEmail but not having any luck.
I've tried from the API browser and via a Google Apps script. In both, I just get a 400 error.
I'm POSTing to https://api.wildapricot.org/v2.1/rpc/<ACCOUNT>/email/sendemail, with this as my body:
{
"Subject": "test email",
"Body": "test email",
"Recipients": [
{
"Id": 0,
"Type": "IndividualRecipient",
"Name": "test",
"Email": "<HIDDEN>"
}
],
"EventId": <EVENTID>
}(account, email and event id have been hidden). Each time, I get a 400 error: Parameter is required: EmailDraftParam.
The swagger documentation doesn't mention a "EmailDraftParam". What am I doing wrong?2 votes -
1 vote
-
Integration to Reservation System
Researching member management systems,Have/Can you integrate with Reservation System? We use RezExpertCentral Application. Member have to be active in order to make a reservation. Can your Admin API be used for that validation?
1 vote -
Stripe Connect
Hi there,
We understand that Wild Apricot by default allows adding only 1 Stripe/Paypal account in payment settings.
However we are trying to customize. We want to use Stripe Connect i.e. our Stripe account will have 5 bank accounts added inside it.
When a user selects 1 of the 5 "Donation Types" from dropdown in donation form, we want to direct the funds to that donation types bank account inside our Stripe account.We have a custom php code to achieve this. However how can we use that php code or any other customization you recommend to achieve this functionality…
1 vote -
Best way to add featured images functionality to blog posts
I need this basic requirement for the website, which has 2 components:
Add an image select field in the Blog post -> Create new entry form
Allow the image selected from #1 to be accessible in the Recent blog posts gadget
I'm a developer - I do whatever custom work needs to be done, but I want to know is this even possible working within Wild Apricot's system? Is it possible with theme overrides? What would be the "correct" way of achieving this?
3 votes
- Don't see your idea?