I would like to be able to create a payment without creating an invoice: Just "this contact paid this amount on this date".
I would like to be able to create a payment without creating an invoice or associating with an event: Just "this contact paid this amount on this date".
I believe that can be done from the WA web site, but I have batch payments already made via an external (private) system, and I want to upload them into WildApricot.
You can skip Invoices in json structure. Ex:
POST https://api.wildapricot.org/v2/accounts/ACCOUNT_ID/payments
{
“Value”: 12345,
“Contact”:{ “Id”: 30142021 },
“Tender”:{ “Id”: 1086628 },
“Comment”: “sample payment without invoices”
}
This will create payment without invoices.
-
If you are not sure about API behavior you always can try to make API requests without any coding from API browser: https://api.wildapricot.org/ui/home/requestoauthtoken
-
JonC commented
That is the approach I started with, but somewhere I read that I needed an invoice, which seemed like needless complexity. Thank you for clarifying. I will try again without the Invoice ref.