Developers
Mostly about Wild Apricot API. Feel free to share examples of your code!
206 results found
-
Connecting css files to page
How do I connect separate pages to their respective css file in resources?
1 vote -
mail Chimp form does not show submit button
See the subscribe button is missing section
1 vote -
Why was includeDetails removed from /contacts/me
I am trying to use the API via JS on a WA page. I need a to fetch a specific field from the logged in member. The docs point to an api version 1 swagger that says that FieldValues can be obtained by appending ?includeDetails=true to the URL - however, this does not work for version 2, and version 1 is not accessible using /sys/api/v1/accounts/
I also cannot access https://api.wildapricot.org/publicview/v1/accounts through JS due to CORS. How can I get FieldValues via JS on a WA page?
1 vote -
WordPress Login idiosyncrasy
I am getting odd results when I use the WA Login Plugin - If the user has never logged in before everything works good - a new user account is created and the information is populated perfectly -
The problem is I created the wordpress site as an admin with my user id and password - the password and email address are the same on both sites but i get "An unknown error has occurred. Please try again later."
Is the match on the email address, the user name? what do i need to do to correct this ( i…
1 vote -
Nicasio Themes Explained
We published an article explaining Nicasio Wild Apricot Theme offerings:
https://nicasiodesign.com/nicasio-designs-wild-apricot-themes-explained/
1 vote -
please see attached document, need help with membership, invoice and payment APIs
We are creating a website and trying to use the APIs provided by wildapricot to provide a seamless experience to our users. We have a subscription based website and users are required to select a member based on which they are presented with an invoice, they pay that and the membership is instated. We are unable to find an API that lets you pass membership information, which would then help generate the invoice and then users can proceed to the payment. Can you advise if such APIs exist? please see the attached document.
1 vote -
Date Format in API Create Event POST
When creating new events (these are simple RSVP events) via the API interface, the web interface shows the new event in the default timezone of the Wild Apricot account. This means my start date is almost always wrong for these events.
If I am creating a. new event for Utah, for example, I have set the timezone fields of the API payload as follows ;
"Details": {
"DescriptionHtml": "A fun family event",
"PaymentInstructions": "None",
"TimeZone": {
"ZoneId": "USA & Canada",
"Name": "Mountain Time",
"UtcOffset": -6
},<truncated>
. When I run my POST command I get back an event_id as…
1 vote -
Contact Webhooks
How to get whether or not a contact or member was deleted using webhooks without running too many api calls. Could there be an upgrade to the contacts webhooks and return 'Action' similar to events or that of membership?
1 vote -
contact/me does not return an "Organization"
I am using accounts/{accountId}/contacts/me endpoint to get details for the currently-logged in user. The API documents there should be an "Organization" in the response. However, this field is always null/the empty string. Is there a way to get this information?
1 vote -
Contacts API returns incorrect Profile Last Updated
I recently (2021-12-19) suspended and archived a member (ID 57031785). The contacts API is still returning the timestamp of the previous update (2021-06-18T10:58:17.37-07:00) for Profile Last Updated.
This invalidates any API usage that seeks to minimize server load and response time by fetching only changed records.
I believe this is a bug, and it prevents me from using the Contacts API effectively. I will have to do a full contacts dump every time I want to synchronize my local DB, and will increase the load on your server significantly, since this is done at least once a day, sometimes more…
1 vote -
Accessibility Turmoil
In Wild Apricot, how do I embed screen reader description text with my photos so that my content is accessible to everyone?
1 vote -
Contact API sort options
Currently the Contact API supports Name or MemberSince order. For the purposes of synching an external database efficiently, it would be really nice to add a sort by contact ID
1 vote -
How to create a upload file button in WA website
I created a website using WA, and this is our company's portal. When our members sign in to this website, they can download our Excel file sample and need to fill it. After that, they will upload back, and we can download it to check the Excel file. How can we do that? Using API? Thank you!
1 vote -
Automatically change footer year
Never forget to change your footer (c) Year!
Here's a simple way to automate it:
1- edit page template
2- add custom html gadget
3- open gadget> click on the Edit Code button on left side nav
4- click save and never deal with that again 🙂
*Note edit Nicasio Design text to make it your own...
© Nicasio Design <span id="year"></span></p>
<!-- JS before /body -->
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>1 vote -
AccessLevel
Creating a separate request based on a comment in another one: "Please also add the “AccessLevel” filter for events"
<a href="https://www.seegra.in/neet-repeaters/">Seegra best NEET-AIIMS medical coaching center for NEET repeaters</a>1 vote -
All Events API not returning all data
Hi, I am calling all the events and get all the data up until 'tags', but the swaggerhub documentation shows that details, description, etc. I know all of this can be accessed through the /events/{event_id}, but then if I am querying all the upcoming events and need the details, I am then looping through and performing 20+ api calls, which seems redundant. I was curious if you can retrieve the details, description, etc via the /events/ api, or if the documentation has it listed incorrectly. Thanks.
1 vote -
Extend non-admin API to allow filtering of events
The non-admin API returns a list of all events that the current user has registered for. While I can filter the results to show only future events, it would be nice if the API did this for me. The admin API allows this by letting me specify the StartDate.
1 vote -
Privacy for Contact List
I had posted last week that I cant find out how the contacts list API respects privacy settings for each contact but as yet, no replies. Is there an API that can return the privacy settings a contact has specified? In this way, our app could maybe parse those privacy settings and figure out what contact fields (e.g. phone, email) it can display. In the absence of any such API, or the contact list API ignoring contact privacy our app will be making personal private information public which is obviously a show stopper.
1 vote -
API Observing Privacy Settings
We are using the API https://api.wildapricot.org/v2/accounts/\(id)/contacts to get the list of contacts.
We use User login + password authentication for the API call.
If we use an admin account for the API authentication we get all fields for each contact, even fields that the contact has marked as "No access" in privacy. If we use a regular user account for the authentication we get immediately an HTTP 403 unauthorized status to even run the query.
So the question: how do we set up the authentication for this API call so that the query only returns contact fields that the contact…
1 vote -
Contact API Never Returns Contacts
We are using the API get Contacts API query. Sometimes and intermittently our query returns the Contacts as expected but more often enters a state where it never returns the results. Below are logs of both cases. Our question for the failed case : "what API call do we need to make to retrieve the Contact results?"
Here is the sequence when the call returns the contacts successfully. We assume that we should call the ResultUrl from the first response to receive the list of contacts and that approach does return the data :-
Start API CALL, path: https://api.wildapricot.org/v2/accounts/<id>/contacts…
1 voteDmitry Smirnov respondedThere are 2 options:
1. If you need data immediately, then you may add a parameter $async=false to the initial query. With this flag API returns a list immediately. If your number of contacts is below 500 it is a reasonable option.
2 Another option is to do exactly what you do, but wait for several seconds between API calls.
No matter what option you prefer, I’d recommend using $select parameter to read only the fields you actually need. It will significantly improve performance.
Here is an example:
GET https://api.wildapricot.com/v2.2/Accounts/183112/Contacts/?$async=false&$select='First name’,‘Last name’,‘Renewal due’
- Don't see your idea?