Anonymous
My feedback
2 results found
-
2 votes
An error occurred while saving the comment An error occurred while saving the comment Anonymous commentedlet me try with ID value and let you know.
Anonymous supported this idea ·An error occurred while saving the comment Anonymous commentedWhat is the exact value I need to pass it in my JSON for gender values? first name, email and last name are added. but the gender field is not mapped with it.
An error occurred while saving the comment Anonymous commented
i would like to map my gravity from the gender option with the wild apricot contact field via add contact API. this is my gender field that I get it from contact/fields API.{
"Id": 11685491,
"FieldName": "Identified Gender",
"Type": "MultipleChoice",
"AllowedValues": [
{
"Id": 12827714,
"Label": "Male",
"SelectedByDefault": false
},
{
"Id": 12827715,
"Label": "Female",
"SelectedByDefault": false
},
{
"Id": 12827716,
"Label": "Prefer Not to Answer",
"SelectedByDefault": false
}
],this is my api call that i am try to send it for add contact to WA.
var options = { method: 'POST',
url: 'https://api.wildapricot.org/v2/accounts/111111/Contacts/',
form:
{
Email: "imran@im.com",
FirstName: "imran",
LastName: "khan",
FieldValues: [
{
"FieldName": "Identified Gender",
"SystemCode": "custom-11685491",
"Value" : {
"Id": 12827714,
"Label": "Male",
"SelectedByDefault": false
}
}
]
},
headers: {
'content-type': 'application/x-www-form-urlencoded',
'Accept': 'application/json',
"Authorization": "Bearer "+body.access_token
},
json: true
};An error occurred while saving the comment Anonymous commentedPlease any one suggest me something related to it.
Anonymous shared this idea · -
5 votesDmitry Smirnov responded
You cannot host server-side code on Wild Apricot servers. But if you plug some JS code into pages of WA website, then this JS can access API.
An error occurred while saving the comment Anonymous commenteddo you have any idea how to send radio button or checkbox values to add contact api?
{
"FieldName": "Identified Gender",
"SystemCode": "custom-11685491",
"Value" : [
{
"Id": 12827714
}
]
}
i have try with this one. but it is not working. these are my fields of gender. i mapped explicit values.
{
"Id": 11685491,
"FieldName": "Identified Gender",
"Type": "MultipleChoice",
"AllowedValues": [
{
"Id": 12827714,
"Label": "Male",
"SelectedByDefault": false
},
{
"Id": 12827715,
"Label": "Female",
"SelectedByDefault": false
},
{
"Id": 12827716,
"Label": "Prefer Not to Answer",
"SelectedByDefault": false
}
],
"IsSystem": false,
"Description": "",
"Order": 2,
"SystemCode": "custom-11685491",
"IsRequired": false,
"Access": "Nobody",
"AdminOnly": false,
"MemberOnly": false,
"IsBuiltIn": false,
"SupportSearch": true,
"IsEditable": true
},