Skip to content

Commit daca4d1

Browse files
authored
[FND-138] Release 7.0.1 (#202)
### 📝 Changelog: API Documentation Updates We've made several updates to the API documentation to improve clarity, consistency, and accuracy. This release includes enhancements to the descriptions for various endpoints, corrections to example data, and updates to external links. --- ### 🌐 Webhooks API Improvements * **Simplified descriptions:** We've streamlined the descriptions for several webhook endpoints, including **List Webhooks**, **Enable Webhooks**, **Replay Webhooks**, **Create Endpoint**, **Update Endpoint**, and **List Endpoints**, to make them more concise and easier to understand. * **Updated documentation links:** All internal and external links within the webhook documentation have been updated to point to the correct, current resources. --- ### 💰 Billing and Subscription Updates * **Enhanced Customer API:** The **Read Customer** endpoint now includes a complete example response, providing a clearer picture of the data you'll receive from the API. * **Component Price Point examples:** We've added new examples for **Volume** and **Tiered** price points to the **Create Component Price Point** endpoint, providing clearer guidance for different pricing schemes. The **Stairstep Price Point** example was also corrected to include a valid `ending_quantity`. * **Flexible Subscription Usage:** The `subscription_id` path parameter for the **Create Usage** endpoint has been updated to `subscription_id_or_reference`. This allows you to use either the subscription's ID or its reference string, making the endpoint more flexible. * **Updated documentation links:** The links in the documentation for **GoCardless**, **Stripe SEPA/BECS Direct Debit**, and **Chargify.js** have been corrected to ensure they point to the latest and most relevant documentation. --- ### 🧰 General Enhancements * **Concise descriptions:** We've shortened descriptions for the **Read Customer** and **Read Component** endpoints to be more direct. * **Improved link consistency:** All external links, especially those referencing **Chargify.js** and various examples, have been reviewed and updated to the correct, canonical URLs.
1 parent 7e177fb commit daca4d1

File tree

39 files changed

+924
-266
lines changed

39 files changed

+924
-266
lines changed

README.md

Lines changed: 70 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@ Install the SDK by adding the following dependency in your project's pom.xml fil
3232
<dependency>
3333
<groupId>com.maxio</groupId>
3434
<artifactId>advanced-billing-sdk</artifactId>
35-
<version>7.0.0</version>
35+
<version>7.0.1</version>
3636
</dependency>
3737
```
3838

3939
You can also view the package at:
40-
https://central.sonatype.com/artifact/com.maxio/advanced-billing-sdk/7.0.0
40+
https://central.sonatype.com/artifact/com.maxio/advanced-billing-sdk/7.0.1
4141

4242
## Initialize the API Client
4343

44-
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/client.md)
44+
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/client.md)
4545

4646
The following parameters are configurable for the API Client:
4747

4848
| Parameter | Type | Description |
4949
| --- | --- | --- |
5050
| site | `String` | The subdomain for your Advanced Billing site.<br>*Default*: `"subdomain"` |
5151
| environment | `Environment` | The API environment. <br> **Default: `Environment.US`** |
52-
| httpClientConfig | [`Consumer<HttpClientConfiguration.Builder>`](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/http-client-configuration-builder.md) | Set up Http Client Configuration instance. |
53-
| basicAuthCredentials | [`BasicAuthCredentials`](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/auth/basic-authentication.md) | The Credentials Setter for Basic Authentication |
52+
| httpClientConfig | [`Consumer<HttpClientConfiguration.Builder>`](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-client-configuration-builder.md) | Set up Http Client Configuration instance. |
53+
| basicAuthCredentials | [`BasicAuthCredentials`](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/auth/basic-authentication.md) | The Credentials Setter for Basic Authentication |
5454

5555
The API client can be initialized as follows:
5656

@@ -61,17 +61,22 @@ import com.maxio.advancedbilling.authentication.BasicAuthModel;
6161
import com.maxio.advancedbilling.exceptions.ApiException;
6262
import java.io.IOException;
6363

64-
AdvancedBillingClient client = new AdvancedBillingClient.Builder()
65-
.httpClientConfig(configBuilder -> configBuilder
66-
.timeout(0))
67-
.basicAuthCredentials(new BasicAuthModel.Builder(
68-
"BasicAuthUserName",
69-
"BasicAuthPassword"
70-
)
71-
.build())
72-
.environment(Environment.US)
73-
.site("subdomain")
74-
.build();
64+
public class Program {
65+
public static void main(String[] args) {
66+
AdvancedBillingClient client = new AdvancedBillingClient.Builder()
67+
.httpClientConfig(configBuilder -> configBuilder
68+
.timeout(0))
69+
.basicAuthCredentials(new BasicAuthModel.Builder(
70+
"BasicAuthUserName",
71+
"BasicAuthPassword"
72+
)
73+
.build())
74+
.environment(Environment.US)
75+
.site("subdomain")
76+
.build();
77+
78+
}
79+
}
7580
```
7681

7782
## Environments
@@ -89,65 +94,67 @@ The SDK can be configured to use a different environment for making API calls. A
8994

9095
This API uses the following authentication schemes.
9196

92-
* [`BasicAuth (Basic Authentication)`](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/auth/basic-authentication.md)
97+
* [`BasicAuth (Basic Authentication)`](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/auth/basic-authentication.md)
9398

9499
## List of APIs
95100

96-
* [API Exports](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/api-exports.md)
97-
* [Advance Invoice](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/advance-invoice.md)
98-
* [Billing Portal](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/billing-portal.md)
99-
* [Component Price Points](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/component-price-points.md)
100-
* [Custom Fields](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/custom-fields.md)
101-
* [Events-Based Billing Segments](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/events-based-billing-segments.md)
102-
* [Payment Profiles](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/payment-profiles.md)
103-
* [Product Families](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/product-families.md)
104-
* [Product Price Points](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/product-price-points.md)
105-
* [Proforma Invoices](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/proforma-invoices.md)
106-
* [Reason Codes](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/reason-codes.md)
107-
* [Referral Codes](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/referral-codes.md)
108-
* [Sales Commissions](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/sales-commissions.md)
109-
* [Subscription Components](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/subscription-components.md)
110-
* [Subscription Groups](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/subscription-groups.md)
111-
* [Subscription Group Invoice Account](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/subscription-group-invoice-account.md)
112-
* [Subscription Group Status](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/subscription-group-status.md)
113-
* [Subscription Invoice Account](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/subscription-invoice-account.md)
114-
* [Subscription Notes](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/subscription-notes.md)
115-
* [Subscription Products](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/subscription-products.md)
116-
* [Subscription Status](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/subscription-status.md)
117-
* [Coupons](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/coupons.md)
118-
* [Components](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/components.md)
119-
* [Customers](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/customers.md)
120-
* [Events](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/events.md)
121-
* [Insights](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/insights.md)
122-
* [Invoices](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/invoices.md)
123-
* [Offers](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/offers.md)
124-
* [Products](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/products.md)
125-
* [Sites](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/sites.md)
126-
* [Subscriptions](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/subscriptions.md)
127-
* [Webhooks](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/controllers/webhooks.md)
101+
* [API Exports](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/api-exports.md)
102+
* [Advance Invoice](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/advance-invoice.md)
103+
* [Billing Portal](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/billing-portal.md)
104+
* [Component Price Points](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/component-price-points.md)
105+
* [Custom Fields](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/custom-fields.md)
106+
* [Events-Based Billing Segments](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/events-based-billing-segments.md)
107+
* [Payment Profiles](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/payment-profiles.md)
108+
* [Product Families](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/product-families.md)
109+
* [Product Price Points](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/product-price-points.md)
110+
* [Proforma Invoices](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/proforma-invoices.md)
111+
* [Reason Codes](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/reason-codes.md)
112+
* [Referral Codes](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/referral-codes.md)
113+
* [Sales Commissions](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/sales-commissions.md)
114+
* [Subscription Components](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/subscription-components.md)
115+
* [Subscription Groups](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/subscription-groups.md)
116+
* [Subscription Group Invoice Account](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/subscription-group-invoice-account.md)
117+
* [Subscription Group Status](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/subscription-group-status.md)
118+
* [Subscription Invoice Account](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/subscription-invoice-account.md)
119+
* [Subscription Notes](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/subscription-notes.md)
120+
* [Subscription Products](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/subscription-products.md)
121+
* [Subscription Status](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/subscription-status.md)
122+
* [Coupons](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/coupons.md)
123+
* [Components](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/components.md)
124+
* [Customers](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/customers.md)
125+
* [Events](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/events.md)
126+
* [Insights](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/insights.md)
127+
* [Invoices](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/invoices.md)
128+
* [Offers](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/offers.md)
129+
* [Products](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/products.md)
130+
* [Sites](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/sites.md)
131+
* [Subscriptions](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/subscriptions.md)
132+
* [Webhooks](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/controllers/webhooks.md)
128133

129134
## SDK Infrastructure
130135

131136
### Configuration
132137

133-
* [Configuration Interface](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/configuration-interface.md)
134-
* [HttpClientConfiguration](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/http-client-configuration.md)
135-
* [HttpClientConfiguration.Builder](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/http-client-configuration-builder.md)
138+
* [Configuration Interface](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/configuration-interface.md)
139+
* [HttpClientConfiguration](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-client-configuration.md)
140+
* [HttpClientConfiguration.Builder](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-client-configuration-builder.md)
141+
* [HttpProxyConfiguration](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-proxy-configuration.md)
142+
* [HttpProxyConfiguration.Builder](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-proxy-configuration-builder.md)
136143

137144
### HTTP
138145

139-
* [Headers](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/headers.md)
140-
* [HttpCallback Interface](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/http-callback-interface.md)
141-
* [HttpContext](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/http-context.md)
142-
* [HttpBodyRequest](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/http-body-request.md)
143-
* [HttpRequest](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/http-request.md)
144-
* [HttpResponse](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/http-response.md)
145-
* [HttpStringResponse](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/http-string-response.md)
146+
* [Headers](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/headers.md)
147+
* [HttpCallback Interface](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-callback-interface.md)
148+
* [HttpContext](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-context.md)
149+
* [HttpBodyRequest](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-body-request.md)
150+
* [HttpRequest](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-request.md)
151+
* [HttpResponse](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-response.md)
152+
* [HttpStringResponse](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/http-string-response.md)
146153

147154
### Utilities
148155

149-
* [ApiException](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/api-exception.md)
150-
* [ApiHelper](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/api-helper.md)
151-
* [FileWrapper](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/file-wrapper.md)
152-
* [DateTimeHelper](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.0/doc/date-time-helper.md)
156+
* [ApiException](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/api-exception.md)
157+
* [ApiHelper](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/api-helper.md)
158+
* [FileWrapper](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/file-wrapper.md)
159+
* [DateTimeHelper](https://www.github.com/maxio-com/ab-java-sdk/tree/7.0.1/doc/date-time-helper.md)
153160

doc/auth/basic-authentication.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,17 @@ You must provide credentials in the client as shown in the following code snippe
2626
import com.maxio.advancedbilling.AdvancedBillingClient;
2727
import com.maxio.advancedbilling.authentication.BasicAuthModel;
2828

29-
AdvancedBillingClient client = new AdvancedBillingClient.Builder()
30-
.basicAuthCredentials(new BasicAuthModel.Builder(
31-
"BasicAuthUserName",
32-
"BasicAuthPassword"
33-
)
34-
.build())
35-
.build();
29+
public class Program {
30+
public static void main(String[] args) {
31+
AdvancedBillingClient client = new AdvancedBillingClient.Builder()
32+
.basicAuthCredentials(new BasicAuthModel.Builder(
33+
"BasicAuthUserName",
34+
"BasicAuthPassword"
35+
)
36+
.build())
37+
.build();
38+
}
39+
}
3640
```
3741

3842

doc/client.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,22 @@ import com.maxio.advancedbilling.authentication.BasicAuthModel;
1919
import com.maxio.advancedbilling.exceptions.ApiException;
2020
import java.io.IOException;
2121

22-
AdvancedBillingClient client = new AdvancedBillingClient.Builder()
23-
.httpClientConfig(configBuilder -> configBuilder
24-
.timeout(0))
25-
.basicAuthCredentials(new BasicAuthModel.Builder(
26-
"BasicAuthUserName",
27-
"BasicAuthPassword"
28-
)
29-
.build())
30-
.environment(Environment.US)
31-
.site("subdomain")
32-
.build();
22+
public class Program {
23+
public static void main(String[] args) {
24+
AdvancedBillingClient client = new AdvancedBillingClient.Builder()
25+
.httpClientConfig(configBuilder -> configBuilder
26+
.timeout(0))
27+
.basicAuthCredentials(new BasicAuthModel.Builder(
28+
"BasicAuthUserName",
29+
"BasicAuthPassword"
30+
)
31+
.build())
32+
.environment(Environment.US)
33+
.site("subdomain")
34+
.build();
35+
36+
}
37+
}
3338
```
3439

3540
## Maxio Advanced BillingClient Class

doc/controllers/component-price-points.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ try {
100100

101101
# Create Component Price Point
102102

103-
This endpoint can be used to create a new price point for an existing component.
103+
Creates a price point for an existing component.
104104

105105
```java
106106
ComponentPricePointResponse createComponentPricePoint(
@@ -149,7 +149,9 @@ CreateComponentPricePointRequest body = new CreateComponentPricePointRequest.Bui
149149
"4.00"
150150
)
151151
)
152-
.endingQuantity(null)
152+
.endingQuantity(PriceEndingQuantity.fromString(
153+
"200"
154+
))
153155
.build()
154156
)
155157
)

doc/controllers/components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -707,9 +707,9 @@ try {
707707

708708
# Read Component
709709

710-
This request will return information regarding a component from a specific product family.
710+
Returns information regarding a component from a specific product family.
711711

712-
You may read the component by either the component's id or handle. When using the handle, it must be prefixed with `handle:`.
712+
You can read the component by either the component's id or handle. When using the handle, it must be prefixed with `handle:`.
713713

714714
```java
715715
ComponentResponse readComponent(

doc/controllers/customers.md

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ try {
284284

285285
# Read Customer
286286

287-
This method allows to retrieve the Customer properties by Advanced Billing-generated Customer ID.
287+
Retrieves the Customer properties by Advanced Billing-generated Customer ID.
288288

289289
```java
290290
CustomerResponse readCustomer(
@@ -316,6 +316,43 @@ try {
316316
}
317317
```
318318

319+
## Example Response *(as JSON)*
320+
321+
```json
322+
{
323+
"customer": {
324+
"first_name": "Jane",
325+
"last_name": "Doe",
326+
"email": "jane@example.com",
327+
"cc_emails": "joe@example.com",
328+
"organization": "ABC, Inc.",
329+
"reference": "1234567890",
330+
"id": 88833369,
331+
"created_at": "2025-05-08T11:39:18-04:00",
332+
"updated_at": "2025-05-08T11:39:18-04:00",
333+
"address": "123 Main Street",
334+
"address_2": "Unit 10",
335+
"city": "Anytown",
336+
"state": "MA",
337+
"state_name": "Massachusetts",
338+
"zip": "02120",
339+
"country": "US",
340+
"country_name": "United States",
341+
"phone": "555-555-1212",
342+
"verified": false,
343+
"portal_customer_created_at": null,
344+
"portal_invite_last_sent_at": null,
345+
"portal_invite_last_accepted_at": null,
346+
"tax_exempt": false,
347+
"vat_number": null,
348+
"parent_id": null,
349+
"locale": "es-MX",
350+
"salesforce_id": null,
351+
"default_auto_renewal_profile_id": null
352+
}
353+
}
354+
```
355+
319356

320357
# Update Customer
321358

0 commit comments

Comments
 (0)