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
@@ -36,10 +36,12 @@ $apiInstance = new Gr4vy\Api\PaymentOptionsApi(
36
36
);
37
37
$country = US; // string | Filters the results to only the items which support this country code. A country is formatted as 2-letter ISO country code.
38
38
$currency = USD; // string | Filters the results to only the items which support this currency code. A currency is formatted as 3-letter ISO currency code.
39
+
$amount = 500; // int | Used by the Flow engine to filter the results based on the transaction amount.
40
+
$metadata = {"restricted_items": "True"}; // string | Used by the Flow engine to filter available options based on various client-defined parameters. If present, this must be a string representing a valid JSON dictionary.
39
41
$locale = en-US; // string | An ISO 639-1 Language Code and optional ISO 3166 Country Code. This locale determines the language for the labels returned for every payment option.
**country** | **string**| Filters the results to only the items which support this country code. A country is formatted as 2-letter ISO country code. | [optional]
54
56
**currency** | **string**| Filters the results to only the items which support this currency code. A currency is formatted as 3-letter ISO currency code. | [optional]
57
+
**amount** | **int**| Used by the Flow engine to filter the results based on the transaction amount. | [optional]
58
+
**metadata** | **string**| Used by the Flow engine to filter available options based on various client-defined parameters. If present, this must be a string representing a valid JSON dictionary. | [optional]
55
59
**locale** | **string**| An ISO 639-1 Language Code and optional ISO 3166 Country Code. This locale determines the language for the labels returned for every payment option. | [optional][default to 'en-US']
Refunds or voids transaction. If this transaction was already captured, it will issue a refund. If the transaction was not yet captured the authorization will instead be voided. **Warning**: this endpoint will be removed eventually, use [Refund transaction](#operation/refund-transaction) or [Void transaction](#operation/void-transaction) endpoints instead.
**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. |
7
+
**city** | **string** | The city for the billing address. |[optional]
8
+
**country** | **string** | The country for the billing address. |[optional]
9
+
**postal_code** | **string** | The postal code or zip code for the billing address. |[optional]
10
+
**state** | **string** | The state, county, or province for the billing address. |[optional]
11
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. |
13
-
**line1** | **string** | The first line of the billing address. |
14
-
**line2** | **string** | The second line of the billing address. |
15
-
**organization** | **string** | The optional name of the company or organisation to add to the billing address. |
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. |[optional]
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
16
17
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]
7
+
**type** | **string** | The type of this resource. Is always `billing-details`. | [optional]
8
+
**first_name** | **string** | The first name(s) or given name of the buyer. | [optional]
8
9
**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]
10
+
**email_address** | **string** | The email address of the buyer. | [optional]
11
+
**phone_number** | **string** | The phone number of the buyer. This expect the number in the [E164 number standard](https://www.twilio.com/docs/glossary/what-e164). | [optional]
**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]
**external_identifier** | **string** | An external identifier that can be used to match the buyer against your own records. This value needs to be unique for all buyers. | [optional]
8
8
**display_name** | **string** | A unique name for this buyer which is used in the Gr4vy admin panel to give a buyer a human readable name. | [optional]
Copy file name to clipboardExpand all lines: docs/Model/CardRequest.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,5 @@ Name | Type | Description | Notes
11
11
**external_identifier** | **string** | An external identifier that can be used to match the card against your own records. | [optional]
12
12
**buyer_id** | **string** | The ID of the buyer to associate this payment method to. If this field is provided then the `buyer_external_identifier` field needs to be unset. | [optional]
13
13
**buyer_external_identifier** | **string** | The `external_identifier` of the buyer to associate this payment method to. If this field is provided then the `buyer_id` field needs to be unset. | [optional]
14
-
**redirect_url** | **string** | The redirect URL to redirect a buyer after a 3D Secure flow has been completed. This will be appended with both a transaction ID and status (e.g. `https://example.com/callback? gr4vy_transaction_id=123&gr4vy_transaction_status=capture_succeeded`). This is required if the transaction request body does not include `three_d_secure_data`. | [optional]
15
14
16
15
[[Back to Model list]](../../README.md#models)[[Back to API list]](../../README.md#endpoints)[[Back to README]](../../README.md)
0 commit comments