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
Returns a list of stored (tokenized) payment methods for a buyer in a short tokenized format.
141
+
Returns a list of stored (tokenized) payment methods for a buyer in a short tokenized format. Only payment methods that are compatible with at least one active payment service in that region are shown.
142
142
143
143
### Example
144
144
@@ -269,7 +269,7 @@ Name | Type | Description | Notes
$after_created_at = 2012-12-12T10:53:43+00:00; // string | Filters the results to only transactions created after this ISO date-time string.
229
229
$before_updated_at = 2012-12-12T10:53:43+00:00; // string | Filters the results to only transactions last updated before this ISO date-time string.
230
230
$after_updated_at = 2012-12-12T10:53:43+00:00; // string | Filters the results to only transactions last updated after this ISO date-time string.
231
+
$environment = staging; // string | Filters the results to only the items available in this environment.
231
232
$limit = 1; // int | Defines the maximum number of items to return for this request.
232
233
$cursor = ZXhhbXBsZTE; // string | A cursor that identifies the page of results to return. This is used to paginate the results of this API. For the first page of results, this parameter can be left out. For additional pages, use the value returned by the API in the `next_cursor` field. Similarly the `previous_cursor` can be used to reverse backwards in the list.
echo 'Exception when calling TransactionsApi->listTransactions: ', $e->getMessage(), PHP_EOL;
@@ -251,6 +252,7 @@ Name | Type | Description | Notes
251
252
**after_created_at** | **string**| Filters the results to only transactions created after this ISO date-time string. | [optional]
252
253
**before_updated_at** | **string**| Filters the results to only transactions last updated before this ISO date-time string. | [optional]
253
254
**after_updated_at** | **string**| Filters the results to only transactions last updated after this ISO date-time string. | [optional]
255
+
**environment** | **string**| Filters the results to only the items available in this environment. | [optional][default to 'production']
254
256
**limit** | **int**| Defines the maximum number of items to return for this request. | [optional][default to 20]
255
257
**cursor** | **string**| A cursor that identifies the page of results to return. This is used to paginate the results of this API. For the first page of results, this parameter can be left out. For additional pages, use the value returned by the API in the `next_cursor` field. Similarly the `previous_cursor` can be used to reverse backwards in the list. | [optional]
**city** | **string** | The city for the billing address. |
8
+
**country** | **string** | The country for the billing address. |
9
+
**postal_code** | **string** | The postal code or zip code for the billing address. |
10
+
**state** | **string** | The state, county, or province for the billing address. |
11
+
**state_code** | **string** | The code of state, county, or province for the billing address in ISO 3166-2 format. | [optional]
12
+
**house_number_or_name** | **string** | The house number or name for the billing address. Not all payment services use this field but some do. | [optional]
13
+
**line1** | **string** | The first line of the billing address. |
14
+
**line2** | **string** | The second line of the billing address. | [optional]
15
+
**organization** | **string** | The optional name of the company or organisation to add to the billing address. | [optional]
16
+
17
+
[[Back to Model list]](../../README.md#models)[[Back to API list]](../../README.md#endpoints)[[Back to README]](../../README.md)
**first_name** | **string** | The first name(s) or given name for the buyer. | [optional]
8
+
**last_name** | **string** | The last name, or family name, of the buyer. | [optional]
9
+
**email_address** | **string** | The email address for the buyer. | [optional]
10
+
**phone_number** | **string** | The phone number to use for this request. This expect the number in the [E164 number standard](https://www.twilio.com/docs/glossary/what-e164). | [optional]
11
+
**address** | [**Address**](Address.md) | The billing address for the buyer. | [optional]
12
+
**tax_id** | [**TaxId**](TaxId.md) | The tax information associated with the billing details. | [optional]
13
+
14
+
[[Back to Model list]](../../README.md#models)[[Back to API list]](../../README.md#endpoints)[[Back to README]](../../README.md)
0 commit comments