AdminVassily Kholopov
(Admin, Wild Apricot by Personify)
My feedback
9 results found
-
4 votes
An error occurred while saving the comment -
5 votes
An error occurred while saving the comment Hello! Thank you for your suggestion! We will review it and contact you.
-
2 votes
An error occurred while saving the comment Hello! thank you for the report! We will analyze it in several days.
-
3 votes
An error occurred while saving the comment Aso to cloning - it is possible to clone Event via API
https://app.swaggerhub.com/apis/WildApricot/wild-apricot_public_api/9.6.0-oas3.1#/Events/CloneEventAn error occurred while saving the comment Hello!
you can edit registration types through APIand yes, it is not possible to edit Event Fields. Can you still just prepare and clone events to get a required field set?
-
2 votes
An error occurred while saving the comment Hello! Thank you for highlighting this!
Indeed events loading pagination seems to be not optimal and we are going to improve this in about a month.
Also probably page limits will be revised and there will be different limits for different endpoints.
However, the general idea behind pagination is to protect our system from making too many unnecessary calls and to encourage API developers to build their own caching, background loading, etc.
-
5 votes
An error occurred while saving the comment Hello! I apologize for the temporary delay in processing messages! We hope to correct the situation and respond much more quickly!
-
1 vote
An error occurred while saving the comment Hello!
You request seems to be fine, but there is a small exception for returned fields: Fields with SystemCode like LastUpdated, SystemRulesAndTermsAccepted, FirstName, LastName, Email are always returned back, even if not selected.
for instance request
/Contacts?$async=false&$top=20&$select='Custom Field 298'
will return"FieldValues": [
{
"FieldName": "Profile last updated",
"Value": "2020-10-27T21:51:26.173+00:00",
"SystemCode": "LastUpdated"
},
{
"FieldName": "Terms of use accepted",
"Value": false,
"SystemCode": "SystemRulesAndTermsAccepted"
},
{
"FieldName": "First name",
"Value": "We are located in the his",
"SystemCode": "FirstName"
},
{
"FieldName": "Last name",
"Value": " and take a selfie in the",
"SystemCode": "LastName"
},
{
"FieldName": "e-Mai",
"Value": "",
"SystemCode": "Email"
},
{
"FieldName": "Custom Field 298",
"Value": null,
"SystemCode": "custom-17305834"
}
], -
1 vote
An error occurred while saving the comment Remove please "application/pdf;base64," from Data field
-
1 vote
An error occurred while saving the comment Hello!
the correct date format should include time zone offset.
try to use
"StartDate": "2022-10-15 AM -6:00",
Do you want to get all events which are completely or partially present in a given period (like Current month)? To achieve this you probably use filter “StartDate ge PeriodStart AND EndDate le PeriodEnd“ while correct filter is “StartDate le PeriodEnd AND EndDate ge PeriodStart“. Please let us know if this is the case.
Oh, actually you had already realized this. :-)