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
| ip | string | IP address of online transaction. It supports both IPv4 and IPv6 address format. |
31
-
| first_name | string | User's first name. |
32
-
| last_name | string | User's last name. |
33
-
| username | string | User's username. |
34
-
| password | string | User's password. |
35
-
| email | string | User's email address. |
36
-
| phone | string | User's phone number. |
37
-
| bill_addr | string | Street address of billing address. |
38
-
| bill_city | string | City of billing address. |
39
-
| bill_state | string | State of billing address. It supports state codes, e.g. NY (New York), for state or province of United States or Canada. Please refer to [State & Province Codes](https://www.fraudlabspro.com/developer/reference/state-and-province-codes) for complete list. |
40
-
| bill_zip_code | string | Postal or ZIP code of billing address. |
41
-
| bill_country | string | Country of billing address. It requires the input of ISO-3166 alpha-2 country code, e.g. US for United States. Please refer to [Country Codes](https://www.fraudlabspro.com/developer/reference/country-codes) for complete list. |
42
-
| user_order_id | string | Merchant identifier to uniquely identify a transaction. It supports maximum of 15 characters user order id input. |
43
-
| user_order_memo | string | Merchant description of an order transaction. It supports maximum of 200 characters. |
44
-
| amount | float | Amount of the transaction. |
45
-
| quantity | integer | Total quantity of the transaction. |
46
-
| currency | string | Currency code used in the transaction. It requires the input of ISO-4217 (3 characters) currency code, e.g. USD for US Dollar. Please refer to [Currency Codes](https://www.fraudlabspro.com/developer/reference/currency-codes) for complete list. |
47
-
| department | string | Merchant identifier to uniquely identify a product or service department. |
| card_number | string | Billing credit card number or BIN number. |
50
-
| card_avs | string | The single character AVS result returned by the credit card processor. Please refer to [AVS & CVV2 Response Codes](https://www.fraudlabspro.com/developer/reference/avs-and-cvv2-response-codes) for details. |
51
-
| card_cvv | string | The single character CVV2 result returned by the credit card processor. Please refer to [AVS & CVV2 Response Codes](https://www.fraudlabspro.com/developer/reference/avs-and-cvv2-response-codes) for details. |
52
-
| ship_addr | string | Street address of shipping address. |
53
-
| ship_city | string | City of shipping address. |
54
-
| ship_state | string | State of shipping address. It supports state codes, e.g. NY - New York, for state or province of United States or Canada. Please refer to [State & Province Codes](https://www.fraudlabspro.com/developer/reference/state-and-province-codes) for complete list. |
55
-
| ship_zip_code | string | Postal or ZIP code of shipping address. |
56
-
| ship_country | string | Country of shipping address. It requires the input of ISO-3166 alpha-2 country code, e.g. US for United States. Please refer to [Country Codes](https://www.fraudlabspro.com/developer/reference/country-codes) for complete list. |
| transaction_id | string | Unique transaction ID generated from **Validate** function. |
127
-
| status | string | Perform APPROVE, REJECT, or REJECT_BLACKLIST action to transaction. Refer to [reference section](#feedback-status) for status code. |
128
-
| note | string | Notes for the feedback request. |
| tel | string | The recipient mobile phone number in E164 format which is a plus followed by just numbers with no spaces or parentheses. |
153
-
| mesg | string | The message template for the SMS. Add <otp> as placeholder for the actual OTP to be generated. Max length is 140 characters. |
154
-
| otp_timeout | integer | Timeout feature for OTP value in seconds. Default is 3600 seconds(1 hour). Max timeout is 86400 seconds(24 hours). |
155
-
| country_code | string | ISO 3166 country code for the recipient mobile phone number. If parameter is supplied, then some basic telephone number validation is done. |
result = FraudlabsproRuby::Api::SMSVerification.verifySMS(
187
-
tran_id: 'UNIQUE_TRANS_ID',
188
-
otp: 'OTP_RECEIVED'
189
-
)
190
-
```
191
-
19
+
# Developer Documentation
20
+
To learn more about installation, usage, and code examples, please visit the developer documentation at [https://fraudlabspro-ruby.readthedocs.io/en/latest/index.html.](https://fraudlabspro-ruby.readthedocs.io/en/latest/index.html)
0 commit comments