To enable guest checking in a gateway session, you must set the value "AllowFundingSources" to "true" in the POST request. This is the following line:
<input id="AllowFundingSources" name="AllowFundingSources" type="hidden" value="true" />
To do this, you will need to form a query that looks something like this:
{ "Key": "testkey", "Secret": "testsecret", "PurchaseOrder": { "DestinationId": "000-000-0000", "Discount": 0.00, "AllowFundingSources": "true", "OrderItems": [ { "Description": "Information about an item", "Name": "An item", "Price": 5.00, "Quantity": 1 } ], "Shipping": 0.00, "Tax": 0.00, "Total": 5.00 } }
Any updates on this topic will be found here .
source share