दान संबंधी दस्तावेज़ीकरण

स्पष्ट, चरण-दर-चरण निर्देशों के साथ दान संबंधी का अधिकतम लाभ उठाना सीखें।

Automation Connect 2.0

Automation Connect turns every donation, campaign event, or form submission into a real-time trigger that sends data to any app or service via webhooks. Connect Charitable with Zapier, Make.com, Slack, HubSpot, Mailchimp, n8n, Pabbly Connect, and thousands of other platforms – no developer required.

Requirements: Pro/Elite plan and Charitable Pro 1.8.13+.

Note: If you are using Charitable Automation 1.x, we have the documentation available here.


Key Features (vs 1.x version)

  • Trigger webhooks on 17 donation, campaign, and recurring-donation events
  • Filter deliveries with conditional logic across 11 criteria fields (donor, donation, campaign, form data)
  • Customize the payload with 80+ available data fields covering donor, campaign, donation, and gateway details
  • Sign every outgoing request with HMAC-SHA256 for endpoint security
  • Send test payloads and inspect delivery responses directly from the editor
  • Start quickly with 8 pre-built platform templates (Zapier, Make.com, Slack, HubSpot, Mailchimp, n8n, Pabbly Connect, and a blank canvas)
  • Retry failed deliveries automatically via WordPress Action Scheduler
  • Manage all subscriptions from a central dashboard in the Charitable admin

Why Use Automation Connect?

Charitable Automation Connect replaces manual data entry and one-off custom integrations with a single, flexible webhook system. Instead of writing custom code every time you want to sync donor records, notify a Slack channel, or add contacts to a CRM, you configure a subscription once and it runs automatically on every matching event.


इसे क्रिया में देखें


Requirements

  • Charitable Pro 1.8.13 or later
  • Active Charitable Pro license (Pro plan or higher)
  • WordPress 6.2 or later
  • PHP 7.4 or later

शुरुआत करना

Installation and Activation

  1. Log in to your WordPress dashboard and go to Charitable > Extensions.
  2. Locate Automation Connect and click Activate.
  3. Once active, a new Automation item appears in the Charitable admin menu.

Creating Your First Subscription

  1. Go to Charitable > Automation in wp-admin.
  2. Click + Add New Subscription.
  3. Select a platform template or choose Start from scratch.
  4. Configure the subscription in the editor (see Usage below).
  5. Click Save to activate the subscription.

उपयोग

Subscription Editor

Each subscription is configured across four tabs:

Basic Tab

Set the subscription name, the target webhook URL, and the trigger event.

Available Events — Donations

ईवेंटDescription
donation_createdA new donation is submitted
donation_completedA donation reaches Completed status
donation_cancelledA donation is cancelled
donation_failedA donation payment fails
donation_refundedA donation is refunded
donation_pendingA donation is set to Pending
donation_preapprovedA donation is pre-approved

Available Events — Campaigns

ईवेंटDescription
campaign_createdA new campaign is published
campaign_updatedAn existing campaign is updated
campaign_endedA campaign reaches its end date
campaign_goal_achievedA campaign hits its fundraising goal

Available Events — Recurring Donations

ईवेंटDescription
recurring_createdA new recurring plan is created
recurring_completedA recurring payment completes
recurring_cancelledA recurring plan is cancelled
recurring_failedA recurring payment fails
recurring_pausedA recurring plan is paused
recurring_resumedA paused plan resumes

Conditions Tab

Add rules to control when the webhook fires. All rules within a group use AND logic; multiple groups use OR logic.

Available Condition Fields

FieldOperators
donation_amountis, isnot, greaterthan, less_than
donation_statusis, is_not
campaign_idis, is_not
campaign_categoryis, is_not
payment_gatewayis, is_not
donor_countryis, is_not
donor_emailis, is_not, contains
newsletter_optinis (yes/no)
donation_typeis (one-time, recurring)
recurring_periodis, is_not
custom_fieldis, is_not, contains

Payload Tab

Choose exactly which fields to include in the outgoing JSON payload. Uncheck fields you don’t need to keep payloads lean.

Donor Fields (sample)

donor_iddonor_namedonor_first_namedonor_last_namedonor_emaildonor_phonedonor_addressdonor_citydonor_statedonor_postcodedonor_countrydonor_total_donateddonor_donation_count

Donation Fields (sample)

donation_iddonation_amountdonation_statusdonation_datedonation_timedonation_currencydonation_gatewaydonation_gateway_transaction_iddonation_notesdonation_typecampaign_idscampaign_names

Campaign Fields (sample)

campaign_idcampaign_titlecampaign_urlcampaign_goalcampaign_donatedcampaign_percent_raisedcampaign_donor_countcampaign_start_datecampaign_end_datecampaign_categories

Recurring Fields (sample)

recurring_idrecurring_amountrecurring_periodrecurring_frequencyrecurring_start_daterecurring_status

Site/Meta Fields (sample)

site_urlsite_nameevent_typedelivery_timestampwebhook_id

Test / Debug Tab

Send a test payload using real or sample data and inspect the HTTP response code, response body, and delivery time. This lets you verify your endpoint is receiving data before going live.


Platform Templates

When creating a new subscription, you can start from one of eight pre-built templates. Each template pre-fills the event trigger and, where applicable, adds sensible default conditions.

टेम्पलेटDefault Eventनोट्स
ज़ैपियरdonation_createdPre-configured for Webhooks by Zapier Catch Hook
Make.comdonation_createdPre-configured for Custom Webhook module
n8ndonation_createdPre-configured for n8n Webhook node
Pabbly Connectdonation_createdPre-configured for Pabbly webhook trigger
हबस्पॉटdonation_createdPre-configured for HubSpot workflow webhook
मेलचिंपdonation_createdAdds newsletter opt-in condition by default
स्लैकdonation_createdPre-configured for Slack Incoming Webhooks
Start from scratch(none)Full control over all settings

Webhook Delivery

Request Format

Webhooks are delivered as HTTP POST requests with a JSON body and the following headers:

Headerमान
Content-Typeapplication/json
X-WP-Webhook-SignatureHMAC-SHA256 signature
X-WP-Webhook-EventEvent slug (e.g., donation_created)
X-WP-Webhook-IDSubscription post ID

Signature Verification

Every request includes an X-WP-Webhook-Signature header. The signature is a lowercase hex HMAC-SHA256 of the raw JSON payload body, keyed with the subscription’s secret key.

To verify in PHP:

$signature = hash_hmac( 'sha256', $raw_body, $secret_key );
$is_valid   = hash_equals( $signature, $received_signature );

Retry Behavior

Failed deliveries (non-2xx responses or connection errors) are retried automatically using WordPress Action Scheduler. The retry schedule uses exponential backoff. After the maximum number of retries, the delivery is marked as permanently failed and logged.


Customization

CSS

The Automation Connect admin UI inherits standard Charitable and WordPress admin styles. No frontend CSS is output.

टेम्पलेट ओवरराइड

Automation Connect has no public-facing templates. All output is JSON payloads delivered server-side.


Troubleshooting

Webhook is not being delivered

Check the following in order: 1. Confirm the subscription is saved and the event type matches what you expect (e.g., donation_completed, not donation_created). 2. Verify the webhook URL is publicly accessible — local localhost URLs will not work from a live server. 3. Check Charitable > Tools > Logs for delivery errors, filtering by source charitable-automation-connect.

The test payload sent successfully but live events are not triggering

Conditions may be filtering out live events. Open the Conditions tab and review each rule. Temporarily disable all conditions to confirm the webhook fires, then re-add conditions one at a time.

Payload fields are missing from the JSON

Uncheck and re-check the relevant fields in the Payload tab, then save. Fields added to Charitable via third-party plugins may need to be registered using the charitable_automation_connect_payload_fields filter (see Developer Resources).

License notice is appearing in the admin

Automation Connect 2.0 requires an active Charitable Pro license at the Pro plan level or above. If you see a license notice, verify your license is active at Charitable > Settings > Licenses and that your plan is Pro or higher.


Developer Resources

Hooks and Filters

Payload

  • charitable_automation_connect_payload_fields — Filter the list of available payload fields. Use this to add custom fields from your plugin or theme.
  • charitable_automation_connect_payload — Filter the payload array before delivery. Receives $payload$subscription_id$event.

कार्यक्रम

  • charitable_automation_connect_events — Filter the list of available trigger events. Add or remove event definitions.
  • charitable_automation_connect_before_deliver — Fires before a webhook is dispatched. Receives $subscription_id$event$payload.
  • charitable_automation_connect_after_deliver — Fires after a webhook is dispatched. Receives $subscription_id$response$payload.

Conditions

  • charitable_automation_connect_condition_fields — Filter available condition fields. Use this to register custom condition criteria.

टेम्पलेट्स

  • charitable_automation_connect_templates — Filter the list of platform templates shown in the template picker. Add custom pre-configured templates.

License / Delivery

  • charitable_automation_connect_delivery_blocked — Filter whether delivery is blocked. Return false to allow delivery regardless of license state (useful for testing).

Useful Functions

  • charitable_automation_connect() — Returns the main plugin instance.
  • charitable_automation_connect()->get( 'subscriptions' ) — Returns the SubscriptionsRepositoryinstance for querying active subscriptions.

Adding Custom Payload Fields

add_filter( 'charitable_automation_connect_payload_fields', function( $fields ) {
    $fields['my_custom_field'] = array(
        'label'   => __( 'My Custom Field', 'my-plugin' ),
        'group'   => 'donor',
        'resolve' => function( $event_data ) {
            return get_user_meta( $event_data['donor_user_id'], 'my_meta_key', true );
        },
    );
    return $fields;
} );

Adding Custom Events

add_filter( 'charitable_automation_connect_events', function( $events ) {
    $events['my_custom_event'] = array(
        'label'       => __( 'My Custom Event', 'my-plugin' ),
        'group'       => 'donations',
        'description' => __( 'Fires when my custom condition occurs.', 'my-plugin' ),
    );
    return $events;
} );

Additional Resources

अभी भी प्रश्न हैं? हम मदद के लिए यहाँ हैं!

अंतिम बार संशोधित:

चैरिटेबल में नया क्या है

नवीनतम अपडेट देखें
🔔 हमारे नवीनतम अपडेट प्राप्त करने के लिए सदस्यता लें
📧 ईमेल के लिए सदस्यता लें

ईमेल सदस्यता

हमारे न्यूज़लेटर में शामिल हों

हम आपको स्पैम नहीं भेजेंगे। हम केवल तभी ईमेल भेजते हैं जब हमें लगता है कि यह वास्तव में आपकी मदद करेगा। आप किसी भी समय सदस्यता समाप्त कर सकते हैं!

गिवडब्ल्यूपी माइग्रेशन नया

GiveWP के लिए व्हाइट ग्लोव माइग्रेशन सेवा

अपने फ़ंडरेज़िंग प्लेटफ़ॉर्म को GiveWP से Charitable पर स्विच करने के बारे में सोच रहे हैं, लेकिन अपना डेटा खोने का जोखिम नहीं उठाना चाहते या स्वयं एक जटिल तकनीकी सेटअप को संभालना नहीं चाहते? Charitable की व्हाइट ग्लोव माइग्रेशन सेवा में शामिल हैं:

👥 निर्दोष डोनर मैपिंग: शून्य डेटा हानि के साथ अपने पूरे समर्थक डेटाबेस को सुरक्षित रूप से स्थानांतरित करें।

📊 पूर्ण वित्तीय इतिहास: निरंतर, सटीक रिपोर्टिंग के लिए हर ऐतिहासिक लेनदेन को सावधानीपूर्वक संरक्षित करें।

🔄 निर्बाध आवर्ती दान: अपने आने वाले राजस्व को बाधित किए बिना या अपने दाताओं को अपनी जानकारी अपडेट करने की आवश्यकता के बिना सक्रिय स्थायी सब्सक्रिप्शन को सुरक्षित रूप से स्थानांतरित करें।

💳 शून्य गेटवे व्यवधान: स्ट्राइप, पेपाल, या किसी अन्य GiveWP-संगत प्रोसेसर का उपयोग करना जारी रखें जिसे आप पहले से ही पसंद करते हैं।

🚀 विशेषज्ञ तकनीकी सेटअप: जब हमारी टीम आपके फ़ॉर्म को इंस्टॉल और कॉन्फ़िगर करने का भारी काम संभालती है तो आराम करें—साथ ही, योग्य उपयोगकर्ताओं को Charitable Pro का पूरा साल पूरी तरह से मुफ़्त मिलता है।

अधिक जानने के लिए इस पृष्ठ पर जाएँ

ऑटोमेशन सुधार

📢 नई सुविधा अलर्ट: ऑटोमेशन कनेक्ट 2.0 यहाँ है! 🚀

अपने फ़ंडरेज़िंग डेटा को Mailchimp, Slack, या Google Sheets जैसे टूल से जोड़ने के बारे में सोच रहे हैं, लेकिन डेवलपर को काम पर नहीं रखना चाहते या कस्टम कोड नहीं लिखना चाहते? Charitable के नए ऑटोमेशन ऐडऑन में है:

⚡ 17 इवेंट ट्रिगर: डोनर के पहले उपहार, नवीनीकरण भुगतान, या अभियान मील के पत्थर तक पहुंचने के लिए तुरंत वेबहुक फायर करें।

🎯 स्मार्ट कंडीशनल लॉजिक: केवल तभी डेटा भेजने के लिए 11 फ़ील्ड में शक्तिशाली AND/OR लॉजिक का उपयोग करें जब यह आपकी सटीक शर्तों को पूरा करता हो, जैसे न्यूज़लेटर ऑप्ट-इन।

📊 कस्टम पेलोड नियंत्रण: डोनर, दान और अभियान मेटाडेटा में 80+ क्लीन डेटा फ़ील्ड में से चुनें ताकि आपके ऐप्स को वही मिले जिसकी उन्हें आवश्यकता है।

🚀 प्री-बिल्ट प्लेटफ़ॉर्म टेम्प्लेट: Zapier, Make.com, n8n, HubSpot, और Slack के लिए तैयार टेम्प्लेट के साथ स्क्रैच से सेटअप छोड़ें।

🛡️ विश्वसनीय डेवलपर टूल: हस्ताक्षरित HMAC-SHA256 पेलोड, पूर्ण वर्डप्रेस फ़िल्टर और स्वचालित पुनः प्रयास लॉग के साथ अपने वर्कफ़्लो को पावर दें।

ऑटोमेशन सुधार

🔌 चैरिटेबल ज़ैपियर से जुड़ता है: 7,000+ ऐप्स से कनेक्ट करें और अपने धन उगाहने को स्वचालित करें

दान डेटा को मैन्युअल रूप से अकाउंटिंग शीट में कॉपी करने या नए दाता साइनअप को ट्रैक करने से थक गए हैं? अपने प्रशासनिक कार्यों को ऑटोपायलट पर रखें। चैरिटेबल अब आधिकारिक तौर पर ज़ैपियर पर है, जो आपको अपने धन उगाहने को सीधे अपने पसंदीदा टूल के बाकी हिस्सों में प्लग करने का एक शक्तिशाली, नो-कोड तरीका प्रदान करता है।

हर दान, दाता साइनअप, और अभियान मील का पत्थर अब निर्बाध रूप से एक स्वचालित वर्कफ़्लो को ट्रिगर कर सकता है।

नई क्या है:

♾️ 7,000+ ऐप्स से कनेक्ट करें: अपने चैरिटेबल अभियानों को Google Sheets, QuickBooks, Slack, Mailchimp, HubSpot, Notion, Airtable, और हजारों अन्य जैसे रोजमर्रा के सॉफ़्टवेयर के साथ ब्रिज करें।

⚡ 12 शक्तिशाली ट्रिगर: संपूर्ण दान जीवनचक्र को कवर करने वाले स्मार्ट ऑटोमेशन ट्रिगर का उपयोग करके गहन वर्कफ़्लो बनाएं—जिसमें नया दान, नया दाता, सदस्यता रद्द, और अभियान लक्ष्य तक पहुंचना शामिल है।

📋 पूर्व-निर्मित एक्शन टेम्प्लेट: हमारे पूर्व-निर्मित टेम्प्लेट संयोजनों के साथ तीन मिनट या उससे कम समय में शुरुआत करें, जैसे कि Google शीट में सीधे नए दान लॉग करना या Gmail के माध्यम से कस्टम दाता स्वागत ईमेल भेजना।

🚫 किसी कोड की आवश्यकता नहीं: किसी जटिल वेबहुक या कस्टम PHP स्क्रिप्ट की आवश्यकता नहीं है। बस अपना ट्रिगर चुनें, अपना ऐप चुनें, अपने फ़ील्ड मैप करें, और ज़ैपियर को भारी काम करने दें।

एडमिन समय के घंटों को बचाने के लिए तैयार हैं? आज ही ऑटोमेशन कनेक्ट एडऑन के साथ चैरिटेबल प्रो प्राप्त करें और अपना पहला ज़ैप लॉन्च करें!

सुधार भुगतान

🚀 पेपैल कॉमर्स का परिचय: एक कनेक्शन, दान करने के छह तरीके

दानकर्ता जब किसी कारण का समर्थन करते हैं तो आधुनिक, लचीले भुगतान विकल्पों की उम्मीद करते हैं। यदि वे आपके दान फ़ॉर्म पर अपनी पसंदीदा विधि नहीं देखते हैं, तो वे अक्सर बिना कुछ कहे चले जाते हैं। पेपैल कॉमर्स के साथ, हम आपके अभियानों में एक पूरी तरह से आधुनिक चेकआउट अनुभव ला रहे हैं।

एक एकल एकीकरण का आनंद लें जो आपके फ़ॉर्म को अपग्रेड करता है, दान को निर्बाध बनाता है, और आपको हर एक दान को कैप्चर करने में मदद करता है।

नई क्या है:

🔌 एक-क्लिक कनेक्शन: गंदे एपीआई कुंजी और डेवलपर दस्तावेज़ों को छोड़ें। बस "पेपैल से कनेक्ट करें" पर क्लिक करें, अपने व्यवसाय खाते में साइन इन करें, और आपका आधुनिक फ़ॉर्म पांच मिनट से भी कम समय में लाइव हो जाएगा।

💳 देने के छह तरीके: अपने समर्थकों को पेपैल बैलेंस, वेन्मो (यूएस), पे लेटर फाइनेंसिंग, प्रमुख क्रेडिट/डेबिट कार्ड, एप्पल पे (सफारी), और गूगल पे (क्रोम) सभी एक ही फ़ॉर्म से तुरंत एक्सेस दें।

🔄 लचीला आवर्ती दान: मासिक दान का पूरी तरह से समर्थन करता है। पेपैल सब्सक्रिप्शन एपीआई (पेपैल के अंत में स्वचालित रूप से संभाला जाता है) या वॉल्ट + क्रॉन (सीधे आपकी साइट पर सुरक्षित रूप से संभाला जाता है) के बीच चयन करें।

💬 अनुकूल त्रुटि रिकवरी: कोई और भ्रमित करने वाले ब्राउज़र अलर्ट नहीं। यदि कोई भुगतान अस्वीकृत हो जाता है, तो दानकर्ताओं को सादे-भाषा, इनलाइन संदेश दिखाई देते हैं जो उन्हें समस्या को ठीक करने और अपना उपहार पूरा करने के तरीके के बारे में मार्गदर्शन करते हैं।

पेपैल के लिए तैयार हैं, आधुनिक? चैरिटेबल प्रो 1.8.15+ (या चैरिटेबल लाइट 1.8.11+) में अपडेट करें और आज ही अपना खाता कनेक्ट करें!

अभियान नया

⏳ अभियान काउंटडाउन: तात्कालिकता को बढ़ाएं और दान बढ़ाएं

तात्कालिकता धन उगाहने वाले सबसे शक्तिशाली उपकरणों में से एक है! अभियान काउंटडाउन से मिलें—एक लाइव, वास्तविक समय टाइमर जो टालमटोल को तत्काल उदारता में बदलने के लिए बनाया गया है।

अभियान_काउंटडाउन_एनीमेशन

नई क्या है:

⏱️ लाइव, रियल-टाइम तात्कालिकता: लाइव-अपडेटिंग विज़ुअल काउंटडाउन के साथ अपने अभियान की समय सीमा तक दिनों, घंटों, मिनटों और सेकंडों को खूबसूरती से ट्रैक करें।

🎨 आपके लुक के अनुरूप: बॉक्स्ड बॉर्डर्ड टाइल्स या एक साफ, सिंगल-लाइन इनलाइन डिस्प्ले के बीच चुनें। फ़ॉन्ट और डीप कलर कंट्रोल्स के साथ तुरंत अपने थीम से मिलान करें।

🛠️ कहीं भी रखें: कैंपेन बिल्डर फ़ील्ड, एक समर्पित गुटेनबर्ग ब्लॉक, या एक साधारण शॉर्टकोड का उपयोग करके कहीं भी काउंटडाउन ड्रॉप करें।

🚨 स्मार्ट समाप्ति क्रियाएं: अंतिम स्थिति पर पूर्ण नियंत्रण—टाइमर को स्वचालित रूप से एक कस्टम संदेश से बदलने, इसे शून्य पर फ्रीज करने और बहुत कुछ करने के लिए चुनें।