### Get Card Response Example Source: https://docs.galileo-ft.com/pro/docs/setup-for-card-transaction-simulation Example JSON response from the Get Card API, showing card details and embossed card information. ```json "response_data": { "card_number": "515567XXXXXX9075", "expiry_date": "2026-09-12", "card_security_code": "123", "status": "Y", "card_id": "5530", "external_card_id": null, "pmt_ref_no": "999102163165", "first_name": "Juan", "middle_name": "", "last_name": "Alvarez", "encrypted_card_number": null, "encrypted_expiry_date": null, "embossed_cards": [ { "status": "Y", "created_date": "2022-09-12", "emboss_date": "", "expiry_date": "2026-09-12", "shipping_type": "standard", "product_id": "3333" } ], "freeze_info": { "status": "Unfrozen", "start_date": null, "end_date": null }, "pin_fail_count": "0", "pin_fail_date": null, "spend_controls": { "available_credit": null, "single_use": null, "credit_limit": null } } ``` -------------------------------- ### Python Script Example Source: https://docs.galileo-ft.com/pro/docs/quickstart This snippet shows how to save and run a Python script for Galileo FT Pro. ```python import galileo # Example: Ping the Galileo service response = galileo.ping() print(f"ping response code={response.code}") ``` -------------------------------- ### Python Source: https://docs.galileo-ft.com/pro/docs/quickstart Send a POST request to the Ping endpoint using Python from the terminal. ```python import requests from xml.dom.minidom import parseString import uuid payload = {'apiLogin':'0000', 'apiTransKey':'1111', 'transactionId':uuid.uuid4()} r = requests.post('https://api-sandbox.cv.gpsrv.com/intserv/4.0/ping', data=payload') dom = parseString(r.text) statusCode = dom.getElementsByTagName('status_code') print('ping response code=' + statusCode[0].firstChild.nodeValue) ``` -------------------------------- ### Get AutoPay History Source: https://docs.galileo-ft.com/pro/docs/developer-setup-for-galileo-secured-credit Retrieve payment history for an account with specified start and end dates. ```json { "accountNo": "...", "startDate": "2020-07-10 15:00:00.000", "endDate": "2020-07-10 15:00:00.000" } ``` -------------------------------- ### Default Response Example Source: https://docs.galileo-ft.com/pro/docs/post_getbillers Example of a successful response from the Get Billers API. ```json { "status_code": 0, "status": "Success", "processing_time": 0.066, "response_data": { "billers": [ { "account_number": "ev2222222", "address_1": "PO Box 1357", "address_2": null, "biller_id": "393", "city": "East Bend", "name": "Eastern Utilities", "nickname": "Eastern Utilities", "phone": "8015551212", "postal_code": "84120", "state_province": "UT", "type": "P" } ], "found": 4, "number_of_pages": 4, "page": 1, "total_record_count": 4 }, "echo": { "provider_transaction_id": "", "provider_timestamp": null, "transaction_id": "d09aaa50-caa5-455f-9d0e-b54372164311" }, "system_timestamp": "2023-07-31 16:26:30", "rtoken": "8fab0829-9e0f-42c7-ad07-e3a1c04a14ba" } ``` -------------------------------- ### Create Account Response Source: https://docs.galileo-ft.com/pro/docs/build-a-sample-app Example JSON output for the Create Account endpoint. ```json { "status_code": 0, "status": "Success", "system_timestamp": "2020-12-08 09:03:31", "response_data": [ { "pmt_ref_no": "1111", "product_id": "5094", "galileo_account_number": "0000", "cip": null, "card_id": "2726", "card_number": "512773XXXXXX1828", "expiry_date": null, "card_security_code": null, "emboss_line_2": null } ], "processing_time": 4.772, "echo": { "transaction_id": "c6285802-72e4-4760-9011-b39993ecfbd5", "provider_transaction_id": "", "provider_timestamp": null } } ``` -------------------------------- ### MSI Installments Data Example Source: https://docs.galileo-ft.com/pro/docs/auth-api-field-detail Example JSON structure for MSI Installments data received from DE048 and DE112. ```json "advanced_auth_api_fields": { "48": { "subfield 95": "MEXCTA" }, "112": { "subfield 7": "030600484" } } ``` -------------------------------- ### Create Account Response Source: https://docs.galileo-ft.com/pro/docs/build-a-sample-app Example JSON response from the Create Account endpoint, showing details of a newly created account. ```json { "status_code": 0, "status": "Success", "system_timestamp": "2020-12-08 11:24:08", "response_data": [ { "pmt_ref_no": "7777", "product_id": "5094", "galileo_account_number": "0000", "cip": null, "card_id": "2727", "card_number": "512773XXXXXX7167", "expiry_date": null, "card_security_code": null } ], "processing_time": 4.882, "echo": { "transaction_id": "40478edd-5047-477d-b100-83f339a090c5", "provider_transaction_id": "", "provider_timestamp": null } } ``` -------------------------------- ### Get Roundup Accounts Response Example Source: https://docs.galileo-ft.com/pro/docs/round-up Example JSON response from the Get Roundup Accounts endpoint, showing two linked accounts. ```json "roundup_accounts": [ { "account_no": "PRN1", "roundup_percentage": 45 }, { "account_no": "PRN2", "roundup_percentage": 55 }. ] ``` -------------------------------- ### Example of a single-page redirect with stylesheet parameter Source: https://docs.galileo-ft.com/pro/docs/direct-render-pin-set-procedure A complete example URL demonstrating a single-page redirect with a specified stylesheet. ```http https://agserv-[clientname].cv.gpsrv.com/agserv/direct/pin/en_US/99-9999/888tOkEn777777AaaaaaAtOkEn999999999999999999999999?r=https%3A%2F%2Fmydomain.com%2Fresult%2F?s=style2 ```