<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Webhooks not working for Subscriptions in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88306#M55633</link>
    <description>&lt;P&gt;Here is the curl example that my endpoint is working (I copied form the latest authcapture event):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl --request POST \
  --url https://api.apx.qa.viax.io/notifications/authorize \
  --header 'Content-Type: application/json' \
  --header 'x-anet-signature: sha512=D1CAB09A2A2A6A4FC30FBCCC10DC7072FEBE2333D95E953AB7DFCBC27EA03AAD38A43BBC00EA894BC770D03D3309589555511E0F46B219D3FC75D3ADBED7FA7D' \
  --data '{"notificationId":"28e3b9c0-29f5-401d-9b84-65cb64653b2f","eventType":"net.authorize.payment.authcapture.created","eventDate":"2023-12-12T21:08:07.090397Z","webhookId":"5d278b4e-4ba2-487f-a338-fa63795187c6","payload":{"responseCode":1,"avsResponse":"P","authAmount":2.31,"merchantReferenceId":"tw0ZbsdyqojGMVsGqHbd","entityName":"transaction","id":"120011415788"}}'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Dec 2023 21:10:21 GMT</pubDate>
    <dc:creator>sera_nikulin</dc:creator>
    <dc:date>2023-12-12T21:10:21Z</dc:date>
    <item>
      <title>Webhooks not working for Subscriptions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88305#M55632</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;I'm using sandbox environment. My payment gateway id is&amp;nbsp;&lt;SPAN&gt;830630.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm implementing subscriptions in our platform with auth.net. I successfully setup endpoint for receiving webhooks (from UI).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;GET &lt;A href="https://apitest.authorize.net/rest/v1/webhooks" target="_blank" rel="noopener"&gt;https://apitest.authorize.net/rest/v1/webhooks&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[
	{
		"_links": {
			"self": {
				"href": "/rest/v1/webhooks/5d278b4e-4ba2-487f-a338-fa63795187c6"
			}
		},
		"webhookId": "5d278b4e-4ba2-487f-a338-fa63795187c6",
		"name": "ViaxApxQaEndPoint",
		"status": "active",
		"url": "https://api.apx.qa.viax.io/notifications/authorize",
		"eventTypes": [
			"net.authorize.payment.authcapture.created",
			"net.authorize.customer.subscription.expiring",
			"net.authorize.customer.subscription.cancelled",
			"net.authorize.customer.subscription.suspended",
			"net.authorize.customer.subscription.failed",
			"net.authorize.customer.subscription.expired",
			"net.authorize.payment.void.created",
			"net.authorize.payment.capture.created",
			"net.authorize.payment.fraud.held",
			"net.authorize.customer.subscription.terminated",
			"net.authorize.payment.authorization.created",
			"net.authorize.payment.fraud.approved",
			"net.authorize.customer.subscription.updated",
			"net.authorize.payment.priorAuthCapture.created",
			"net.authorize.payment.fraud.declined",
			"net.authorize.payment.refund.created",
			"net.authorize.customer.subscription.created"
		]
	}
]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I successfully tested my endpoint with ping webhook (I moved endpoint to inactive status and clicked "Test Webhook").&lt;BR /&gt;Now I moved back to active status.&lt;/P&gt;&lt;P&gt;My endpoint only receive net.authorize.payment.authcapture.created event. (When I create one-time payment with your api)&lt;/P&gt;&lt;P&gt;We also wanted events for subscriptions (net.authorize.customer.subscription.*). As you can see my webhook contains all needed event types but anyway it seems that auth.net even doesn't fire them.&lt;/P&gt;&lt;P&gt;I tried to find in notification history and don't see any event related to subscriptions. Only&amp;nbsp;net.authorize.payment.authcapture.created&lt;/P&gt;&lt;P&gt;GET&amp;nbsp;&lt;A href="https://apitest.authorize.net/rest/v1/notifications?from_date=2023-12-12&amp;amp;to_date=2023-12-12" target="_blank" rel="noopener"&gt;https://apitest.authorize.net/rest/v1/notifications?from_date=2023-12-12&amp;amp;to_date=2023-12-12&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
	"_links": {
		"self": {
			"href": "/rest/v1/notifications?offset=0&amp;amp;limit=100&amp;amp;from_date=2023-12-12&amp;amp;to_date=2023-12-12"
		}
	},
	"notifications": [
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/457a7b83-9f00-4024-8d71-92475b4dc81f"
				}
			},
			"notificationId": "457a7b83-9f00-4024-8d71-92475b4dc81f",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T11:45:17.077",
			"webhookId": "a585ea29-a370-495a-bd83-f9be7160f260",
			"notificationDate": "2023-12-12T11:45:23.69"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/935694c3-b839-4af1-9a20-551ff7afe456"
				}
			},
			"notificationId": "935694c3-b839-4af1-9a20-551ff7afe456",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T11:45:17.077",
			"webhookId": "ea5f7311-04ef-4afd-afaf-07fd7d5b9395",
			"notificationDate": "2023-12-12T11:45:23.87"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/a49a70e4-8d11-4e1f-a75f-481c064fef04"
				}
			},
			"notificationId": "a49a70e4-8d11-4e1f-a75f-481c064fef04",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T12:07:38.47",
			"webhookId": "a585ea29-a370-495a-bd83-f9be7160f260",
			"notificationDate": "2023-12-12T20:17:56.553"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/c7df78be-e978-4f7c-8c44-07d0e352f869"
				}
			},
			"notificationId": "c7df78be-e978-4f7c-8c44-07d0e352f869",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T12:07:38.47",
			"webhookId": "ea5f7311-04ef-4afd-afaf-07fd7d5b9395",
			"notificationDate": "2023-12-12T12:07:44.91"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/bd99f2e2-cc06-4995-933c-d5b03a77831a"
				}
			},
			"notificationId": "bd99f2e2-cc06-4995-933c-d5b03a77831a",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T12:21:07.007",
			"webhookId": "a585ea29-a370-495a-bd83-f9be7160f260",
			"notificationDate": "2023-12-12T20:30:59.857"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/aead1f19-3fd0-4dca-ae04-257317aeabf6"
				}
			},
			"notificationId": "aead1f19-3fd0-4dca-ae04-257317aeabf6",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T12:21:07.007",
			"webhookId": "ea5f7311-04ef-4afd-afaf-07fd7d5b9395",
			"notificationDate": "2023-12-12T12:21:15.763"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/8afc378c-8fd0-49d1-b79d-cbf2111be9f4"
				}
			},
			"notificationId": "8afc378c-8fd0-49d1-b79d-cbf2111be9f4",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T12:37:03.457",
			"webhookId": "a585ea29-a370-495a-bd83-f9be7160f260",
			"notificationDate": "2023-12-12T20:47:03.283"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/601c5336-1144-4191-b2bf-ed6128a3fa43"
				}
			},
			"notificationId": "601c5336-1144-4191-b2bf-ed6128a3fa43",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T12:37:03.457",
			"webhookId": "ea5f7311-04ef-4afd-afaf-07fd7d5b9395",
			"notificationDate": "2023-12-12T12:37:26.543"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/de054dc3-4653-4a07-83a9-8cc22cf3f391"
				}
			},
			"notificationId": "de054dc3-4653-4a07-83a9-8cc22cf3f391",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T12:42:28.303",
			"webhookId": "a585ea29-a370-495a-bd83-f9be7160f260",
			"notificationDate": "2023-12-12T12:42:36.563"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/eff3c86b-7a5f-429e-83ed-0945ef8c339f"
				}
			},
			"notificationId": "eff3c86b-7a5f-429e-83ed-0945ef8c339f",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T12:42:28.303",
			"webhookId": "ea5f7311-04ef-4afd-afaf-07fd7d5b9395",
			"notificationDate": "2023-12-12T12:42:36.853"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/570f7282-687a-42b7-903b-48e487d7694d"
				}
			},
			"notificationId": "570f7282-687a-42b7-903b-48e487d7694d",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T12:45:09.35",
			"webhookId": "a585ea29-a370-495a-bd83-f9be7160f260",
			"notificationDate": "2023-12-12T20:53:05.703"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/dc260e93-a92d-4fea-9fe3-064a129fce35"
				}
			},
			"notificationId": "dc260e93-a92d-4fea-9fe3-064a129fce35",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T12:45:09.35",
			"webhookId": "ea5f7311-04ef-4afd-afaf-07fd7d5b9395",
			"notificationDate": "2023-12-12T12:45:26.943"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/9351f31c-1627-4f51-9782-f1d0a03e4b09"
				}
			},
			"notificationId": "9351f31c-1627-4f51-9782-f1d0a03e4b09",
			"deliveryStatus": "RetryPending",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T14:51:28.163",
			"webhookId": "a585ea29-a370-495a-bd83-f9be7160f260"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/d25352fa-0dee-4dab-8e44-4cc7bc7c162d"
				}
			},
			"notificationId": "d25352fa-0dee-4dab-8e44-4cc7bc7c162d",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T14:51:28.163",
			"webhookId": "ea5f7311-04ef-4afd-afaf-07fd7d5b9395",
			"notificationDate": "2023-12-12T14:51:33.49"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/2425f56c-f16a-45a2-bb8f-13aafcd038c0"
				}
			},
			"notificationId": "2425f56c-f16a-45a2-bb8f-13aafcd038c0",
			"deliveryStatus": "RetryPending",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T15:15:53.967",
			"webhookId": "a585ea29-a370-495a-bd83-f9be7160f260"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/e04d6b32-0f7a-4ba9-a834-9240f3c258cd"
				}
			},
			"notificationId": "e04d6b32-0f7a-4ba9-a834-9240f3c258cd",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T15:15:53.967",
			"webhookId": "ea5f7311-04ef-4afd-afaf-07fd7d5b9395",
			"notificationDate": "2023-12-12T15:16:14.373"
		},
		{
			"_links": {
				"self": {
					"href": "/rest/v1/notifications/0fe0e89f-bc9c-4ee7-a6f3-0da9f30e8d29"
				}
			},
			"notificationId": "0fe0e89f-bc9c-4ee7-a6f3-0da9f30e8d29",
			"deliveryStatus": "Delivered",
			"eventType": "net.authorize.payment.authcapture.created",
			"eventDate": "2023-12-12T20:38:07.237",
			"webhookId": "5d278b4e-4ba2-487f-a338-fa63795187c6",
			"notificationDate": "2023-12-12T20:38:09.573"
		}
	]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe subscription should be created in another way? Could anyone suggest what should I do?&lt;BR /&gt;Here is the latest subscription creation request/response&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;ARBCreateSubscriptionRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
    &amp;lt;merchantAuthentication&amp;gt;
        &amp;lt;name&amp;gt;${apiLoginId}&amp;lt;/name&amp;gt;
        &amp;lt;transactionKey&amp;gt;${transactionKey}&amp;lt;/transactionKey&amp;gt;
    &amp;lt;/merchantAuthentication&amp;gt;
    &amp;lt;clientId&amp;gt;sdk-java-2.0.3&amp;lt;/clientId&amp;gt;
    &amp;lt;refId&amp;gt;LSeCxj2msj8afAjg25Mz&amp;lt;/refId&amp;gt;
    &amp;lt;subscription&amp;gt;
        &amp;lt;name&amp;gt;Subscription WebHooks doesn't work!&amp;lt;/name&amp;gt;
        &amp;lt;paymentSchedule&amp;gt;
            &amp;lt;interval&amp;gt;
                &amp;lt;length&amp;gt;1&amp;lt;/length&amp;gt;
                &amp;lt;unit&amp;gt;months&amp;lt;/unit&amp;gt;
            &amp;lt;/interval&amp;gt;
            &amp;lt;startDate&amp;gt;2023-12-13&amp;lt;/startDate&amp;gt;
            &amp;lt;totalOccurrences&amp;gt;9999&amp;lt;/totalOccurrences&amp;gt;
            &amp;lt;trialOccurrences&amp;gt;0&amp;lt;/trialOccurrences&amp;gt;
        &amp;lt;/paymentSchedule&amp;gt;
        &amp;lt;amount&amp;gt;1.11&amp;lt;/amount&amp;gt;
        &amp;lt;trialAmount&amp;gt;0&amp;lt;/trialAmount&amp;gt;
        &amp;lt;payment&amp;gt;
            &amp;lt;opaqueData&amp;gt;
                &amp;lt;dataDescriptor&amp;gt;COMMON.ACCEPT.INAPP.PAYMENT&amp;lt;/dataDescriptor&amp;gt;
                &amp;lt;dataValue&amp;gt;
                    ${paymentToken}
                &amp;lt;/dataValue&amp;gt;
            &amp;lt;/opaqueData&amp;gt;
        &amp;lt;/payment&amp;gt;
        &amp;lt;customer&amp;gt;
            &amp;lt;id&amp;gt;ORG-2521_10536&amp;lt;/id&amp;gt;
        &amp;lt;/customer&amp;gt;
        &amp;lt;billTo&amp;gt;
            &amp;lt;firstName&amp;gt;Sergey&amp;lt;/firstName&amp;gt;
            &amp;lt;lastName&amp;gt;Nikulin&amp;lt;/lastName&amp;gt;
            &amp;lt;address&amp;gt;pr Peremogu&amp;lt;/address&amp;gt;
            &amp;lt;city&amp;gt;Kharkiv&amp;lt;/city&amp;gt;
            &amp;lt;zip&amp;gt;61007&amp;lt;/zip&amp;gt;
            &amp;lt;country&amp;gt;US&amp;lt;/country&amp;gt;
        &amp;lt;/billTo&amp;gt;
    &amp;lt;/subscription&amp;gt;
&amp;lt;/ARBCreateSubscriptionRequest&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;ARBCreateSubscriptionResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                               xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                               xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
    &amp;lt;refId&amp;gt;LSeCxj2msj8afAjg25Mz&amp;lt;/refId&amp;gt;
    &amp;lt;messages&amp;gt;
        &amp;lt;resultCode&amp;gt;Ok&amp;lt;/resultCode&amp;gt;
        &amp;lt;message&amp;gt;
            &amp;lt;code&amp;gt;I00001&amp;lt;/code&amp;gt;
            &amp;lt;text&amp;gt;Successful.&amp;lt;/text&amp;gt;
        &amp;lt;/message&amp;gt;
    &amp;lt;/messages&amp;gt;
    &amp;lt;subscriptionId&amp;gt;9049639&amp;lt;/subscriptionId&amp;gt;
    &amp;lt;profile&amp;gt;
        &amp;lt;customerProfileId&amp;gt;515694192&amp;lt;/customerProfileId&amp;gt;
        &amp;lt;customerPaymentProfileId&amp;gt;523787484&amp;lt;/customerPaymentProfileId&amp;gt;
    &amp;lt;/profile&amp;gt;
&amp;lt;/ARBCreateSubscriptionResponse&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please advise what should I setup/fix.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 21:05:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88305#M55632</guid>
      <dc:creator>sera_nikulin</dc:creator>
      <dc:date>2023-12-12T21:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Webhooks not working for Subscriptions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88306#M55633</link>
      <description>&lt;P&gt;Here is the curl example that my endpoint is working (I copied form the latest authcapture event):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl --request POST \
  --url https://api.apx.qa.viax.io/notifications/authorize \
  --header 'Content-Type: application/json' \
  --header 'x-anet-signature: sha512=D1CAB09A2A2A6A4FC30FBCCC10DC7072FEBE2333D95E953AB7DFCBC27EA03AAD38A43BBC00EA894BC770D03D3309589555511E0F46B219D3FC75D3ADBED7FA7D' \
  --data '{"notificationId":"28e3b9c0-29f5-401d-9b84-65cb64653b2f","eventType":"net.authorize.payment.authcapture.created","eventDate":"2023-12-12T21:08:07.090397Z","webhookId":"5d278b4e-4ba2-487f-a338-fa63795187c6","payload":{"responseCode":1,"avsResponse":"P","authAmount":2.31,"merchantReferenceId":"tw0ZbsdyqojGMVsGqHbd","entityName":"transaction","id":"120011415788"}}'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 21:10:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88306#M55633</guid>
      <dc:creator>sera_nikulin</dc:creator>
      <dc:date>2023-12-12T21:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Webhooks not working for Subscriptions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88340#M55660</link>
      <description>&lt;P&gt;Three days have already passed since my post was created. Does somebody have a solution?&lt;BR /&gt;Are auth.net developers reading this community forum?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Dec 2023 12:01:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88340#M55660</guid>
      <dc:creator>sera_nikulin</dc:creator>
      <dc:date>2023-12-15T12:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Webhooks not working for Subscriptions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88528#M55782</link>
      <description>&lt;P&gt;Also dealing with webhooks not firing. I receive a response when it's inactive and I test the endpoint. Signature passes and everything. It seems to just stop working when I make it active. I'm only subscribed to subscription related events&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 20:02:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88528#M55782</guid>
      <dc:creator>jacobg123</dc:creator>
      <dc:date>2024-01-04T20:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Webhooks not working for Subscriptions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88685#M55886</link>
      <description>&lt;P&gt;I have a similar issue. My webhook is not being notified for subscription payments.&lt;BR /&gt;I'm also not getting a transaction in the arbTransactions attribute of the subscription. I only get a response message.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;'arbTransactions' =&amp;gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; array (&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; 0 =&amp;gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; net\authorize\api\contract\v1\ArbTransactionType::__set_state(array(&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'transId' =&amp;gt; NULL,&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'response' =&amp;gt; 'This transaction has been approved.',&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'submitTimeUTC' =&amp;gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; DateTime::__set_state(array(&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'date' =&amp;gt; '2024-01-03 09:04:59.810000',&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'timezone_type' =&amp;gt; 3,&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'timezone' =&amp;gt; 'UTC',&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; )),&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'payNum' =&amp;gt; 1,&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'attemptNum' =&amp;gt; 1,&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; )),&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; ),&lt;/DIV&gt;&lt;DIV class=""&gt;))&lt;BR /&gt;&lt;BR /&gt;This is in the sandbox environment.&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 Jan 2024 13:20:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/88685#M55886</guid>
      <dc:creator>normanstevens58</dc:creator>
      <dc:date>2024-01-24T13:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: Webhooks not working for Subscriptions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/90324#M56826</link>
      <description>&lt;P&gt;I am also facing the same problem for subscription. Not receiving&amp;nbsp;net.authorize.customer.subscription.updated event in webhook. Always receiving&amp;nbsp;{"notificationId":"d93794b1-2def-49bf-92f0-410af1b5f08f","eventType":"net.authorize.payment.authcapture.created","eventDate":"2024-09-16T09:15:06.1414786Z","webhookId":"f114c3a5-ee50-4e2f-bc37-c6e6d0af4aea","payload":{"responseCode":1,"authCode":"NTZZ3L","avsResponse":"P","authAmount":5.00,"invoiceNumber":"NhxH1723440967","entityName":"transaction","id":"80025513095"}}&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 06:40:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Webhooks-not-working-for-Subscriptions/m-p/90324#M56826</guid>
      <dc:creator>amrutha</dc:creator>
      <dc:date>2024-09-26T06:40:51Z</dc:date>
    </item>
  </channel>
</rss>

