Juice Financial
  • Introduction
  • ErrorCodes
  • Authentication
  • APIS
    • Administration
      • Add ACH Transaction
      • Add Processor Real Time Txn
      • Allocate Inventory
      • CardNo to RPCBB Conversion
      • Change Password
      • Check DB Up Request(Monitoring)
      • End Card Session
      • Force Change Password
      • Get Billers List
      • Get Card Effective Fee
      • Get Card Session Details
      • Get Mobile Upgrade
      • Get Product Types
      • Login
      • Manage AML Exception
      • Manage Card Session
      • Manage Code Group
      • Manage Daily Limit
      • Manage FBE
      • Manage Fee
      • Manage File
      • Manage Load Account
      • Manage Order
      • Manage Org To Orgs Relation
      • Manage Praxell Code
      • Manage Sub Organization
      • Manage Terminal
      • Manage User
      • Manage White List
      • Ping
      • Reprocess ACH Transaction
      • Reset Password
      • Resolve Card Session
      • Set Single Day Override
      • Start Card Session
      • Update ACH Transaction Status
      • Validate Inventory Location
      • Validate Product Type
      • View Debit Organizations Hierarchy
    • Card Issuance
      • Activate-Card
      • Instant-Issue-Card
      • New-Card
    • Card Status & Management
      • Change-Card-Pin
      • Close-Card
      • Free Card
      • Get Card Balance
      • Get Card Details
      • Get Card Holder Spend Limits
      • Get Card Holds
      • Get Card Report
      • Get Cards Report
      • Get Card Text Info
      • Inform Lost Stolen Card
      • Load Network Verify Card
      • Lock Card
      • Reopen Card
      • Request OTP
      • Research Card
      • Reset Card PIN
      • Return To Inventory
      • Search Cardholder
      • Suspend Card
      • Swap Cards DDAs
      • Unlock Card
      • Unsuspend Card
      • Update Card Holder Spend Limits
      • Update Card Replacement Status
      • Update Cardholder DOB
      • Update Cardholder
      • Update Fee Less Card
      • Verify Card PIN
      • Verify Cardholder
      • Verify OTP
    • Cardholder Management
      • Change Cardholder Password
      • Enroll Cardholder
      • Get Cardholder Details
      • Reset Cardholder Password
    • Transactions
      • Card to Card Transfer
      • Charge Fee
      • Load Network Reload Card
      • Load Network Unload Card
      • Load Network Verify Card
      • Load Network Void Card
      • Pay CH Bill
      • Reverse Fee
      • Webhook Examples
Powered by GitBook
On this page
  • Load Network Verify Card
  • Input Parameters:
  • Output Parameters:
  • XML Samples
  • Input XML
  1. APIS
  2. Transactions

Load Network Verify Card

Load Network Verify Card

The Load Network Verify Card API verifies card status and cardholder state, and returns information on card and cardholder.

Input Parameters:

Name
Required
Definition
Comments

Amount

Y

Format: Numeric, 1-9 Description: The amount is in cents.

AmountVerificationMode

N

Options: VerifyAmountParameter, ReturnedAllowedAmount (default)

CardNumber

Y

Format: Numeric, 16

LoadNetwork

Y

Format options: ACH (Automated Clearing House) IAT (International ACH Transaction) GD (Green Dot) PRX (Praxell) WU (Western Union)

Output Parameters:

Name
Definition
Failure Case
Success Case
Comments

Address

Format: Alphanumeric, 30

Not returned

Returned

CardNumber

Format: Numeric, 4 Description: XXXX-XXXX-XXXX-1234

Not returned

Returned

City

Format: Alphanumeric, 20

Not returned

Returned

Country

Format: ISO Country code. Two characters. Description: Based on ISO 3166-1 alpha-2 list. http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2

Not returned

Returned

FirstName

Format: Alphanumeric, 10

Not returned

Returned

LastName

Format: Alphanumeric, 15

Not returned

Returned

MaxCurrentLoadingAmount

Format: Numeric, 1-20 Description: Maximum amount currently allowed to be loaded on card (based on balance and on maximum loading definitions).

Not returned

Returned

Phone

Format: Numeric, 6-15 Description: Phone number

Not returned

Returned

RPID

Format: Numeric, 1-19

Not returned

Returned

State

Format: Alphanumeric, 2

Not returned

Returned

Zip

Format: Numeric, 5

Not returned

Returned

XML Samples

Input XML

<?xml version="1.0"?>
<PraxellXMLRequest>
  <AuthenticationDetails>
    <UserName></UserName>
    <UserPassword></UserPassword>
    <ClientSourceIP></ClientSourceIP> 
 </AuthenticationDetails>;
  <ServiceDetails>
    <ServiceName>LoadNetworkVerifyCard</ServiceName>
    <UniqueRequestId>1212121212121213</UniqueRequestId>
  </ServiceDetails>
  <Origin>
    <OriginType>ExtAPI</OriginType>
  </Origin>
  <ServiceParams>
    <Amount></Amount>
    <AmountVerificationMode ></AmountVerificationMode >
    <CardNumber></CardNumber>
    <LoadNetwork>WU</LoadNetwork>
  </ServiceParams>
</PraxellXMLRequest>
<PraxellXMLResponse>
  <ResponseDetails>
    <ServiceName>LoadNetworkVerifyCard</ServiceName>
    <SessionId>38499706200956074</SessionId>
    <StatusCode>0</StatusCode>
    <StatusName>StatusOK</StatusName>
    <StatusDescription>NA</StatusDescription>
    <ServiceDate>2009-07-13 06:56:42</ServiceDate>
    <ServiceId>38499706200956074</ServiceId>
  </ResponseDetails>
  <ResponseParams>
    <FirstName>jgffhf</FirstName>
    <LastName>gfhgf</LastName>
    <Address>gdxfxvx vcxvcx</Address>
    <City>vxvcx</City>
    <State>CO</State>
    <Zip>353544534</Zip>
    <Phone>235432543253</Phone>
    <Country>US</Country>
    <CardNumber></CardNumber>
    <MaxCurrentLoadingAmount>8001</MaxCurrentLoadingAmount>
  </ResponseParams>
</PraxellXMLResponse>
<?xml version="1.0"?>
<PraxellXMLResponse>
  <ResponseDetails>
    <ServiceName>LoadNetworkVerifyCard</ServiceName>
    <SessionId>07071612200737105</SessionId>
    <StatusCode>70029</StatusCode>
    <StatusName>Data not found (cardholder not found)</StatusName>
    <StatusDescription>Data not found (cardholder not found)</StatusDescription>
    <ServiceDate>2021-10-01 12:37:50</ServiceDate>
    <ServiceId>07071612200737105</ServiceId>
  </ResponseDetails>
  <ResponseParams>
  </ResponseParams>
</PraxellXMLResponse>
PreviousLoad Network Unload CardNextLoad Network Void Card

Last updated 7 months ago