You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`clientId`|`String`| Template, Required | Your application ID, which is available in the OAuth page in the [Developer Dashboard](https://developer.squareup.com/apps). |
56
+
|`clientId`|`String`| Template, Required | Your application ID, which is available on the **OAuth** page in the [Developer Dashboard](https://developer.squareup.com/apps). |
57
57
|`body`|[`RenewTokenRequest`](../../doc/models/renew-token-request.md)| Body, Required | An object containing the fields to POST for the request.<br><br>See the corresponding object definition for field details. |
|`subscriptionId`|`String`| Template, Required | The ID of the subscription to retrieve the events for. |
317
-
|`cursor`|`String`| Query, Optional | When the total number of resulting subscription events exceeds the limit of a paged response,<br>specify the cursor returned from a preceding response here to fetch the next set of results.<br>If the cursor is unset, the response contains the last page of the results.<br><br>For more information, see [Pagination](https://developer.squareup.com/docs/working-with-apis/pagination). |
316
+
|`cursor`|`String`| Query, Optional | When the total number of resulting subscription events exceeds the limit of a paged response,<br>specify the cursor returned from a preceding response here to fetch the next set of results.<br>If the cursor is unset, the response contains the last page of the results.<br><br>For more information, see [Pagination](https://developer.squareup.com/docs/build-basics/common-api-patterns/pagination). |
318
317
|`limit`|`Integer`| Query, Optional | The upper limit on the number of subscription events to return<br>in a paged response. |
Dismisses a Terminal action request if the status and type of the request permits it.
196
+
197
+
See [Link and Dismiss Actions](https://developer.squareup.com/docs/terminal-api/advanced-features/custom-workflows/link-and-dismiss-actions) for more details.
Copy file name to clipboardExpand all lines: doc/client.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ The following parameters are configurable for the API Client:
5
5
6
6
| Parameter | Type | Description |
7
7
| --- | --- | --- |
8
-
|`squareVersion`|`String`| Square Connect API versions<br>*Default*: `"2023-05-17"`|
8
+
|`squareVersion`|`String`| Square Connect API versions<br>*Default*: `"2023-06-08"`|
9
9
|`customUrl`|`String`| Sets the base URL requests are made to. Defaults to `https://connect.squareup.com`<br>*Default*: `"https://connect.squareup.com"`|
10
10
|`environment`|`string`| The API environment. <br> **Default: `production`**|
Copy file name to clipboardExpand all lines: doc/models/activity-type.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,4 +44,8 @@
44
44
|`THIRD_PARTY_FEE`| Fees collected by a third-party platform. |
45
45
|`THIRD_PARTY_FEE_REFUND`| Refunded fees from a third-party platform. |
46
46
|`PAYOUT`| Balance change due to money transfer. |
47
+
|`AUTOMATIC_BITCOIN_CONVERSIONS`| Indicates the withholding of a portion of each payment by Square that has been<br>automatically converted into bitcoin using Cash App. The seller manages their bitcoin in<br>their Cash App account. |
48
+
|`AUTOMATIC_BITCOIN_CONVERSIONS_REVERSED`| Indicates a return of the payment withholding that had been scheduled to be converted<br>into bitcoin using Cash App to the Square payments balance. |
49
+
|`CREDIT_CARD_REPAYMENT`| The repayment made toward the outstanding balance on the seller's Square credit card. |
50
+
|`CREDIT_CARD_REPAYMENT_REVERSED`| The reversal of the repayment made toward the outstanding balance on the seller's<br>Square credit card. |
Copy file name to clipboardExpand all lines: doc/models/cancel-subscription-response.md
+48-5Lines changed: 48 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Defines output parameters in a response from the
13
13
| Name | Type | Tags | Description | Getter |
14
14
| --- | --- | --- | --- | --- |
15
15
|`Errors`|[`List<Error>`](../../doc/models/error.md)| Optional | Errors encountered during the request. | List<Error> getErrors() |
16
-
|`Subscription`|[`Subscription`](../../doc/models/subscription.md)| Optional | Represents a subscription to a subscription plan by a subscriber.<br><br>For an overview of the `Subscription` type, see<br>[Subscription object](https://developer.squareup.com/docs/subscriptions-api/overview#subscription-object-overview). | Subscription getSubscription() |
16
+
|`Subscription`|[`Subscription`](../../doc/models/subscription.md)| Optional | Represents a subscription purchased by a customer.<br><br>For more information, see<br>[Manage Subscriptions](https://developer.squareup.com/docs/subscriptions-api/manage-subscriptions). | Subscription getSubscription() |
17
17
|`Actions`|[`List<SubscriptionAction>`](../../doc/models/subscription-action.md)| Optional | A list of a single `CANCEL` action scheduled for the subscription. | List<SubscriptionAction> getActions() |
18
18
19
19
## Example (as JSON)
@@ -35,7 +35,8 @@ Defines output parameters in a response from the
35
35
"start_date": "2021-10-20",
36
36
"status": "ACTIVE",
37
37
"timezone": "America/Los_Angeles",
38
-
"version": 1594311617331
38
+
"version": 1594311617331,
39
+
"plan_variation_id": "plan_variation_id8"
39
40
},
40
41
"errors": [
41
42
{
@@ -62,19 +63,61 @@ Defines output parameters in a response from the
0 commit comments