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
Include the Ruby code directly using `-I` as follows:
95
+
3.**Create a Config File (Recommended):**
96
+
Rename `config.example.json` → `config.json` and fill with your keys:
47
97
48
-
```shell
49
-
ruby -Ilib script.rb
50
-
```
98
+
```json
99
+
{
100
+
"x_api_key": "YOUR_API_KEY",
101
+
"x_app_key": "YOUR_APP_KEY",
102
+
"x_version": "2.3",
103
+
"origin": "YOUR_IP_ADDRESS"
104
+
}
105
+
```
106
+
107
+
---
108
+
109
+
## Quickstart
51
110
52
-
## Getting Started
53
-
1. Find and note your company AndDone Developer settings.
54
-
1. Login to (UAT) https://portal.uat.anddone.com/ (Production) https://portal.anddone.com/
55
-
2. In the left menu, click "Developer" then "API Keys"
56
-
3. Your xApiKey will be the API Key
57
-
4. Your xAppKey will be the App Key
58
-
2. You will need to register your Origin with us to execute API calls against our Secure endpoints.
59
-
1. Typically, we use your domain for production or other hosted environments and IP address for local development environments.
60
-
2. Contact AndDone support (integrations@anddone.com) or your onboarding agent to ensure all your domains or IP addresses you may use are registered for use with our secure APIs.
61
-
3. Please follow the [installation](#installation) procedure and then modify and run the following code:
111
+
Here’s a minimal working example to call the **Secure Create Payment Intent API**:
*OpenapiClient::SecureEmbeddedPremiumFinanceApi* | [**secure_epf_merchants_quotes_policy_put**](docs/SecureEmbeddedPremiumFinanceApi.md#secure_epf_merchants_quotes_policy_put) | **PUT** /secure/epf/merchants/quotes/policy | This API is will update the policy number
100
-
*OpenapiClient::SecureEmbeddedPremiumFinanceApi* | [**secure_epf_quotes_booking_put**](docs/SecureEmbeddedPremiumFinanceApi.md#secure_epf_quotes_booking_put) | **PUT** /secure/epf/quotes/booking | This API will update PFA to book a quote.
163
+
EmbeddedPremiumFinanceApi.md#secure_epf_quotes_booking_put) | **PUT** /secure/epf/quotes/booking | This API will update PFA to book a quote.
101
164
*OpenapiClient::SecureEmbeddedPremiumFinanceApi* | [**secure_epf_quotes_captureesign_put**](docs/SecureEmbeddedPremiumFinanceApi.md#secure_epf_quotes_captureesign_put) | **PUT** /secure/epf/quotes/captureesign | This API will eSign the pfa with insured name.
102
165
*OpenapiClient::SecureEmbeddedPremiumFinanceApi* | [**secure_epf_quotes_generate_post**](docs/SecureEmbeddedPremiumFinanceApi.md#secure_epf_quotes_generate_post) | **POST** /secure/epf/quotes/generate | This API is used to Generate Quotes
103
166
*OpenapiClient::SecureEmbeddedPremiumFinanceApi* | [**secure_epf_quotes_intent_post**](docs/SecureEmbeddedPremiumFinanceApi.md#secure_epf_quotes_intent_post) | **POST** /secure/epf/quotes/intent | This API will return quotes created againsts a payment intent.
*OpenapiClient::SecureVendorManagementApi* | [**vendorapi_secure_merchants_vendors_unsuspend_post**](docs/SecureVendorManagementApi.md#vendorapi_secure_merchants_vendors_unsuspend_post) | **POST** /vendorapi/secure/merchants/vendors/unsuspend | This API unsuspends vendor into system
152
215
*OpenapiClient::SecureVoidsApi* | [**secure_cancellations_post**](docs/SecureVoidsApi.md#secure_cancellations_post) | **POST** /secure/cancellations | This API cancel a transaction.
0 commit comments