3DS SDK (Starter Guide)

📘

How to get started

The 3DS SDK is distributed using JFrog. You will need to provide TabaPay with an email address to create this account.

This guide will walk you through using JFrog to get your hands on the 3DS SDK. As well as an overview of how to integrate and use the SDK. There are a total of 13 steps in this guide:

How to get the SDK

  1. Get a JFrog account from TabaPay and reset your password
  2. Login to your account
  3. In the top-right of the JFrog Platform, select the Welcome dropdown and click “Edit Profile”
  4. Enter your password and click “Unlock”
  5. Locate Authentication Settings and click “Generate API Key”

How to use the 3DS SDK (overview)

  1. Download and Import the 3DS Mobile SDK
  2. Setting Up Your Build Environment
  3. Configure Cardinal 3DS Mobile SDK
  4. Setup the Initial Call to TabaPay (Initialize)
  5. Use the SDK to authenticate the JWT and begin collecting device data.
  6. Create a Lookup Request/Response for TabaPay
  7. Handle the TabaPay Lookup Response and use the SDK to handle the Challenge UI
  8. JWT Validation
  9. Create Transaction

For more information on how to integrate/use our 3DS APIs, please go to our 3DS API guide

For more information on what a challenge might look like for a customers, please use the following reference: 3DS Challenge examples

📘

SDK flow is slightly different from the browser flow.

When implementing the SDK flow, you need to keep the following items in mind.

  1. The SDK will send device data collected to Cardinal directly.
  2. This means that you do not need to send an accountID in the 3D Secure Initialize. Instead you would send the sdkVersion.
  3. You will still need to pass accountID in the 3D Secure Lookup, but you will need to send the sdkSessionID as well.

The guide below breaks down the step by step integration, and we will repeat this information in the relevant steps. This is just a quick summary.

How to get the SDK

1. Get a JFrog account from TabaPay and reset your password

Provide TabaPay with an email address for the account. Then you will receive a username and URL link to access the correct JFrog page. You can then reset your password by clicking on "Forgot my password".

📘

Remember to use your Username, not your email for this.

📘

JFrog Access

Go to URL: https://cardinalcommerceprod.jfrog.io/ui/login/

2. Login to your account

Once you reset your password, log into your account using the link TabaPay provided.

3. In the top-right of the JFrog Platform, select the Welcome dropdown and click “Edit Profile”

4. Enter your password and click “Unlock”

5. Locate Authentication Settings and click “Generate API Key”

Scroll down to find the Generate API Key button and click it.

This API Key value will be used to authenticate you during Cardinal Mobile SDK downloads and/or Gradle builds.


How to use the 3DS SDK (overview)

The next steps are how you would go about integrating and using the SDK depending on your operating system.

📘

Make sure you have 3DS on your TabaPay Plan.

3DS 2.0 requires cardholder address as part of the authentication process at the issuer. This means, TabaPay's 3DS API/SDK will fail if the payment instrument does not have a corresponding address. If you're using Account ID as the payment instrument for 3DS, it must have billing address associated with it. So, please ensure you create accounts by providing address always

6. Download and Import the 3DS Mobile SDK

a. For iOS - Download the SDK file using cURL and add it to your XCode project

📘

Please note:

The username and API key you generated in the previoues section (JFrog) is used to download/import the 3DS SDK.

Download CardinalMobile.framework cURL

curl -L -u \<USER_NAME>  
        :\<API_KEY> <https://cardinalcommerceprod.jfrog.io/artifactory/ios/><VERSION>-\<BUILD_NUMBER>/cardinalmobilesdk.zip  
        -o \<LOCAL_FILE_NAME.EXT>  
  
#Example:  
curl -L -u UserName:ApiKey "<https://cardinalcommerceprod.jfrog.io/artifactory/ios/2.2.5-1/cardinalmobilesdk.zip>" -o cardinalmobile2.2.5-1.zip

Download .xcframework Using cURL

curl -L -u \<USER_NAME>  
        :\<API_KEY> <https://cardinalcommerceprod.jfrog.io/artifactory/ios/><VERSION>-\<BUILD_NUMBER>/CardinalMobileiOSXC.zip  
        -o \<LOCAL_FILE_NAME.EXT>  
  
#Example:  
curl -L -u UserName:ApiKey "<https://cardinalcommerceprod.jfrog.io/artifactory/ios/2.2.5-1/CardinalMobileiOSXC.zip>" -o cardinalmobile2.2.5-1.zip

Add to your project

After you have downloaded the file then you can add it to your project through XCode. From your XCode project, go ahead and drag the CardinalMobile.framework or CardinalMobile.xcframework file into the Frameworks group inside of your Xcode Project. If a group doesn't already exist, then create the group. In the Import dialog, tick the box to Copy items into destinations group folder (or Destination: Copy items if needed). The iOS SDK files are now available for linking to your project.

b. For Android - Update the Gradle Build Properties to Integrate Cardinal Mobile SDK

📘

Please note:

The username and API key you generated in the previoues section (JFrog) is used to download/import the 3DS SDK.

To add the SDK to an Android App is relatively simple. Go to Android Studio, and open the app directory (sometimes labeled Module: app). Then open the build.gradle file. Double-check to make sure that you edit the Gradle file that is located in the app directory. Add the following contents to the Gradle file.

repositories {  
    ...  
	maven {  
		url  "<https://cardinalcommerceprod.jfrog.io/artifactory/android>"  
		credentials {  
			username '' // Artifactory username  
            password '' // Artifactory API Key  
		}  
	}  
}  
dependencies {  
    ...  
	//Cardinal Mobile SDK  
	implementation 'org.jfrog.cardinalcommerce.gradle:cardinalmobilesdk:X.X.X-X'  
}

ReplaceX.X.X-X with the latest Cardinal SDK Version Number.

If your project uses Proguard, add the following lines into proguard-rules.pro file:

-keep class com.cardinalcommerce.dependencies.internal.bouncycastle.**  
-keep class com.cardinalcommerce.dependencies.internal.nimbusds.**

7. Setting Up Your Build Environment

For iOS

  1. Open Xcode and click on your project in the source list to the left of the main editor area.
  2. Select your application under the Targets section and go to the General tab.
  3. Expand the Embedded Binaries section then click the small “+” button at the bottom of the list.
  4. Add the CardinalMobile.framework or CardinalMobile.xcframework file from the list

For Android

No additional work needed to setup your build environment

8. Configure Cardinal 3DS Mobile SDK

For iOS

Upon successfully completing Integration in Step 1 and Step 2, create a new instance of the cardinal object by session = CardinalSession(). SDK offers multiple configuration options for you (if not specified, everything is set to default). For more details: CardinalConfigurationOptions. Use the code snippet below for completing the configuration.

import CardinalMobile

var session : CardinalSession!

//Setup can be called in viewDidLoad
func setupCardinalSession{
	session = CardinalSession()
	var config = CardinalSessionConfiguration()
	config.deploymentEnvironment = .production
	config.requestTimeout = 8000
	config.challengeTimeout = 5
	config.uiType = .both

	let yourCustomUi = UiCustomization()
	//Set various customizations here. See "iOS UI Customization" documentation for detail.
	config.uiCustomization = yourCustomUi

	let yourDarkModeCustomUi = UiCustomization()
	config.uiCustomization = yourDarkModeCustomUi

	config.renderType = [CardinalSessionRenderTypeOTP, 
							CardinalSessionRenderTypeHTML,
							CardinalSessionRenderTypeOOB,
							CardinalSessionRenderTypeSingleSelect, 
							CardinalSessionRenderTypeMultiSelect]

	session.configure(config)
}

For Android

Upon successfully completing Integration in Step 1, get the instance of the cardinal object by Cardinal.getInstance(). SDK offers multiple configuration options for you (if not specified, everything is set to default). For more details see the Configurations table. Use the code snippets below for completing the cardinal.configure().

private Cardinal cardinal = Cardinal.getInstance();
@Override
protected void onCreate(Bundle savedInstanceState) {

CardinalConfigurationParameters cardinalConfigurationParameters = new CardinalConfigurationParameters();
        cardinalConfigurationParameters.setEnvironment(CardinalEnvironment.STAGING);
        cardinalConfigurationParameters.setRequestTimeout(8000);
		cardinalConfigurationParameters.setChallengeTimeout(5);
        
		JSONArray rType = new JSONArray();
        rType.put(CardinalRenderType.OTP);
        rType.put(CardinalRenderType.SINGLE_SELECT);
        rType.put(CardinalRenderType.MULTI_SELECT);
        rType.put(CardinalRenderType.OOB);
        rType.put(CardinalRenderType.HTML);
        cardinalConfigurationParameters.setRenderType(rType);

        cardinalConfigurationParameters.setUiType(CardinalUiType.BOTH);

        UiCustomization yourUICustomizationObject = new UiCustomization();
        cardinalConfigurationParameters.setUICustomization(yourUICustomizationObject);

        cardinal.configure(this,cardinalConfigurationParameters);

}

9. Setup the Initial Call to TabaPay (Initialize)

You will need to call your own backend server in order to initiate a init request since only your backend server can contact the TabaPay API. More information on 3DS API Guide

Initializes a 3D Secure Card Authentication Request. This creates a JWT for 3D Secure Card Authentication.

If you are an ISO, you will need to specify a SubClientID.

📘

SDK flow is slightly different from the browser flow.

When implementing the SDK flow, you need to keep the following items in mind.

  1. The SDK will send device data collected to Cardinal directly.
  2. This means that you do not need to send an accountID in the 3D Secure Initialize. Instead you would send the sdkVersion.

URL
https://FQDN/v2/clients/ClientID/3ds/init

Merchant must connect with TabaPay’s 3D Secure Initialize

Notes:
For Clients who are an ISO, to specify your ClientID and a SubClientID, use the underscore character ("_") to separate the two values:   <ClientID>_<SubClientID>   where:

  • ClientID is your unique 22-character string and
  • SubClientID is an assigned 4, 6 or 8-digit value.

This generates your JWT

10. Use the SDK to authenticate the JWT and begin collecting device data.

For iOS

Calling session.setup will begin the process of authenticating your credentials (using the JWT from the previous step) and completing the data collection process. By the time they are ready to checkout, all necessary pre-processing will be completed. Use the code snippet below for completing the session setup.

📘

Important note:

The SDK returns consumerSessionId in the completed callback. This is the value that you would send to the 3D Secure Lookup in the sdkSessionID field.


let jwtString = "INSERT_THE_TABAPAY_INIT_JWT_HERE"
 
session.setup(jwtString: jwtString, completed: { (consumerSessionId: String) in
    //
    // You may have your Submit button disabled on page load. Once you are setup
    // for CCA, you may then enable it. This will prevent users from submitting
    // their order before CCA is ready.
    //
}) { (validateResponse: CardinalResponse) in
    // Handle failed setup
    // If there was an error with setup, cardinal will call this function with
    // validate response and empty serverJWT
}

For Android

Calling cardinal.init() on an instance of Cardinal will begin the process of authenticating your credentials (using the JWT from the previous step) and completing the data collection process. By the time they are ready to checkout, all necessary pre-processing will be completed. Use the code snippet below for completing the setup.

📘

Important note:

The SDK returns consumerSessionId in the onSetupCompleted callback. This is the value that you would send to the 3D Secure Lookup in the sdkSessionID field.

cardinal = Cardinal.getInstance();
String serverJwt = "INSERT_THE_TABAPAY_INIT_JWT_HERE";
cardinal.init(serverJwt ,
new CardinalInitService() {
    /**
    * You may have your Submit button disabled on page load. Once you are set up
    * for CCA, you may then enable it. This will prevent users from submitting
    * their order before CCA is ready.
    */
    @Override
    public void onSetupCompleted(String consumerSessionId) {
 
    }
    /**
    * If there was an error with set up, Cardinal will call this function with
    * validate response and empty serverJWT
    * @param validateResponse
    * @param serverJwt will be an empty
    */
    @Override
    public void onValidated(ValidateResponse validateResponse, String serverJwt) {
 
    }
});

11. Create a Lookup Request/Response for TabaPay

You will need to call your own backend server in order to initiate a lookup request since only your backend server can contact the TabaPay API. For more information on our APIs: 3DS API Guide

📘

SDK flow is slightly different from the browser flow.

When implementing the SDK flow, you need to keep the following items in mind.

  1. You will still need to pass accountID in the 3D Secure Lookup, but you will need to send the sdkSessionID as well.
  2. In the previous step, the SDK returns consumerSessionId in the completed (iOS) or onSetupCompleted (android) callback. This is the value that you would send to the 3D Secure Lookup in the sdkSessionID field.

The guide below breaks down the step by step integration, and we will repeat this information in the relevant steps. This is just a quick summary.

3D Secure Card Lookup.
If you are an ISO, you will need to specify a SubClientID.

URL
https://FQDN/v2/clients/ClientID/3ds/lookup

Notes:

For Clients who are an ISO, to specify your ClientID and a SubClientID, use the underscore character ("_") to separate the two values: <ClientID>_<SubClientID> where:

  • ClientID is your unique 22-character string and
  • SubClientID is an assigned 4, 6 or 8-digit value.

Lookup codes

The following documentation has the values you should use for the lookup call:

  1. Authentication Indicator
  2. Transaction Mode
  3. Transaction Type
  4. Product Code

Please follow our "How to guide" to complete your backend integration.

Required Field for identifying as an SDK transaction:\ <DeviceChannel>SDK</DeviceChannel>\ <DFReferenceId>ReferenceId</DFReferenceId>\
ReferenceId is consumerSessionId returned on setup completion, if no referenceID is passed in serverJwt. Else you can use that referenceID as DFReferenceId

12. Handle the TabaPay Lookup Response and use the SDK to handle the Challenge UI

Frictionless Response:

After the completion of the lookup request, check the response for the following fields :
3dsVersion = 2.X ( 2.0, 2.1, etc) enrolled = Y status = Y

The status = Y means that the authentication was succesful and NO challenge is necessary.

Example frictionless response:

{
  "SC": 200,
  "EC": "0",
  "3dsVersion": "2.1.0",
  "enrolled": "Y",
  "processorTransactionID": "11111111111111111111",
  "dsTransactionID": "11111111-2222-3333-4444-555555555555",
  "status": "Y",
  "ECI": "05",
  "UCAF": "1111111111111111111111111111"
}

Step up/Challenge response:

After the completion of the lookup request, check the response for the following fields :
3dsVersion = 2.X ( 2.0, 2.1, etc) enrolled = Y challengeURL=[not empty] payload=[not empty]

The existence of the challengeURL and payload elements in the response mean that a Challenge is required for Authentication.

Example challenge response:

{
  "SC": 200,
  "EC": "0",
  "3dsVersion": "2.1.0",
  "enrolled": "Y",
  "processorTransactionID": "11111111111111111111",
  "dsTransactionID": "11111111-2222-3333-4444-555555555555",
  "challengeURL": "https://someplace.somewhere.com/challenge",
  "payload": "A_LONG_PAYLOAD"
}

In this case initiate the challenge flow.

Here are some example challenge flows

After the challenge is performed, the SDK will return control to the application through the stepUpDidValidate or onValidate events. The following are some potential responses from the challenge:
NOACTION - Authentication was not applicable.

SUCCESS - Authentication was completed successfully.

FAILURE - Authentication resulted in a failure.

ERROR - An error was encountered.

📘

For more detailed information about ActionCodes

Please visit our 3DS challenge results page

For iOS

Call [session continueWithTransactionId.. ] to hand control to SDK for performing the challenge between the user and the issuing bank. Use the code snippet below for completing the session's continue.

 [session continueWithTransactionId: @"[processorTransactionID]" payload: @"[PAYLOAD]" didValidateDelegate: self];

In continue for Quick Integration, a class conforming to a protocol CardinalValidationDelegate (and implement a method stepUpDidValidate) should be passed as a parameter. Following is the example of class conforming to CardinalValidationDelegate protocol.

class YourViewController:CardinalValidationDelegate {
 
    /**
     * This method is triggered when the transaction has been terminated.This is how SDK hands back
     * control to the merchant's application. This method will
     * include data on how the transaction attempt ended and
     * you should have your logic for reviewing the results of
     * the transaction and making decisions regarding next steps.
     * JWT will be empty if validate was not successful
     *
     * @param session
     * @param validateResponse
     * @param serverJWT
     */
    func cardinalSession(cardinalSession session: CardinalSession!, stepUpValidated validateResponse: CardinalResponse!, serverJWT: String!) {
       
    }

}

If continue is being called in the same class then the following method is called to start StepUpFlow:

 session.continueWith(transactionId: "[processorTransactionID]", payload: "[PAYLOAD]", validationDelegate: self)

stepUpDidValidate is triggered when the transaction has been terminated. This is how the 3DS Mobile SDK hands back control to the merchant's application. This event will include data on how the transaction attempt ended and should be where you review the results of the transaction and make decisions regarding the next steps. The field ActionCode should be used to determine the overall state of the transaction.

🚧

Please note:

validateResponse may return nil in a successful challenge. Please us the serverJWT with the 3D Secure Authenticate API to get the final result.

func cardinalSession(cardinalSession session: CardinalSession!, stepUpValidated validateResponse: CardinalResponse!, serverJWT: String!) {
    switch validateResponse.actionCode {
    case .success:
        // Handle successful transaction, send JWT to backend to verify
        break
        
    case .noAction:
        // Handle no actionable outcome
        break
        
    case .failure:
        // Handle failed transaction attempt
        break
        
    case .error:
        // Handle service level error
        break

	case .cancel:
        // Handle transaction canceled by user
        break

	case .timeout:
        // Handle transaction timedout
        break
    }
}

For Android

Call cardinal.cca_continue to hand control to SDK for performing the challenge between the user and the issuing bank. Use the code snippet below for completing the cardinal.continue().

cardinal.cca_continue is updated to not passing the hardcoded directoryServerID anymore
 cardinal.cca_continue("[processorTransactionID ]", "[PAYLOAD]", this, new CardinalValidateReceiver() {
});
/**
  * Cca continue.
  *
  * @param transactionId     the transaction id
  * @param payload           the payload
  * @param currentActivity   the current activity
  * @throws InvalidInputException        the invalid input exception
  * @throws JSONException                the json exception
  * @throws UnsupportedEncodingException the unsupported encoding exception
  */
 try {
     cardinal.cca_continue("[processorTransactionID ]", "[PAYLOAD]", this, new CardinalValidateReceiver() {
            /**
             * This method is triggered when the transaction has been terminated. This is how SDK hands back
             * control to the merchant's application. This method will
             * include data on how the transaction attempt ended and
             * you should have your logic for reviewing the results of
             * the transaction and making decisions regarding next steps.
             * JWT will be empty if validate was not successful.
             *
             * @param validateResponse
             * @param serverJWT
             */
            @Override
            public void onValidated(Context currentContext, ValidateResponse validateResponse, String serverJWT) {

            }
        });
  }
 catch (Exception e) {
    // Handle exception
  }

onValidated() is triggered when the transaction has been terminated. This is how the 3DS Mobile SDK hands back control to the merchant's application. This event will include data on how the transaction attempt ended and should be where you review the results of the transaction and make decisions regarding the next steps. The field ActionCode should be used to determine the overall state of the transaction.

@Override
   public void onValidated(Context currentContext, ValidateResponse validateResponse, String serverJWT) {
 
       switch (validateResponse.getActionCode()){
 
           case SUCCESS:
               // Handle successful transaction, send JWT to backend to verify
               break;
           case NOACTION:
               // Handle no actionable outcome
               break;
           case FAILURE:
               // Handle failed transaction attempt
               break;
 		   case CANCEL:
               // Handle cancel transaction 
               break;
           case ERROR:
               // Handle service level error
               break;
		   case TIMEOUT:
               // Handle timeout 
               break;
      }
}

13. JWT Validation

Once the challenge is completed you need to validate the resulting serverJWT by sending to the TabaPay Authenticate API.

How do you retrieve the JWT?

iOS

You receive the JWT in the cardinalSession function from the previous step. When defining what to do during the SUCCESS case, you can pass this serverJWT object back to your server for validation.

func cardinalSession(cardinalSession session: CardinalSession!, 
                     stepUpValidated validateResponse: CardinalResponse!, 
                     serverJWT: String!) {
		//...
  		//...
  		//...
    	}
}

Android

You receive the JWT in the onValidated function from the previous step. When defining what to do during the SUCCESS case, you can pass this serverJWT object back to your server for validation.

@Override
   public void onValidated(Context currentContext, 
                           ValidateResponse validateResponse, 
                           String serverJWT) {
      //...
      //...
      //...
      }
}

How do you validate the JWT?

📘

The Authenticate API is called after the challenge is performed.

3D Secure Card Challenge Authentication.
If you are an ISO, you will need to specify a SubClientID.

URL
https://FQDN/v2/clients/ClientID/3ds/authenticate

Notes:
For Clients who are an ISO, to specify your ClientID and a SubClientID, use the underscore character ( *) to separate the two values:<ClientID>*<SubClientID> where:

  • ClientID is your unique 22-character string and
  • SubClientID is an assigned 4, 6 or 8-digit value.

14. Create Transaction

👍

Almost done! Don't forget to create a transaction.

After the authenticate API we will provide you with the UCAF, XID, ECI which you can use in the pullOptions of the CreateTransaction.

Electronic Commerce Indicator (ECI). The ECI value is part of the 2 data elements that indicate the transaction was processed electronically. This should be passed on the authorization transaction to the Gateway/Processor.

Possible Values:

  1. 02 or 05 - Fully Authenticated Transaction
  2. 01 or 06 - Attempted Authentication Transaction
  3. 00 or 07 - Non 3-D Secure Transaction

Values per Network:

  1. Mastercard - 02, 01, 00
  2. VISA - 05, 06, 07
  3. AMEX - 05, 06, 07
  4. JCB - 05, 06, 07
  5. DINERS CLUB - 05, 06, 07
  6. Cartes Bancaires (CB) Visa - 05, 06, 07
  7. Cartes Bancaires (CB) Mastercard - 02, 01, 00
  8. ELO: 05, 06, 07
  9. Union Pay International: 05, 06, 07
  10. eftpos (Visa or MC) - 05, 06, 07

For more information: https://developers.tabapay.com/reference/3ds-faq

Create Transaction:

3DS APIs only provide a way for you and the issuer to verify a customer's identity. In order to create a transaction you still have to call the create transaction API. The create transaction API has a body param for pullOptions. Within this object, you should find a 3DSecure object. Please look at the 3DSecure object and it's internal fields to know what information you will need to provide the createTransaction API.

Example Flow:

\n","html_hidelinks":false,"showVersion":false,"hideTableOfContents":false,"nextStepsLabel":"","promos":[{"extras":{"type":"search","buttonPrimary":"reference","buttonSecondary":"docs"},"title":"TabaPay Documentation","text":"Explore our documentation, APIs, and learn how to move money with TabaPay.","_id":"61d8d667dd8e8b003818de4c"}],"loginLogo":[],"logo_large":false,"colorScheme":"system","changelog":{"layoutExpanded":true,"showAuthor":false,"showExactDate":false},"allowApiExplorerJsonEditor":true,"ai_dropdown":"disabled","ai_options":{"chatgpt":"enabled","claude":"enabled","clipboard":"enabled","view_as_markdown":"enabled","copilot":"enabled","perplexity":"enabled"},"showPageIcons":true,"layout":{"full_width":false,"style":"classic"}},"custom_domain":"developers.tabapay.com","childrenProjects":[],"derivedPlan":"enterprise","description":"Documentation, APIs, and guides on how to move money with TabaPay.","isExternalSnippetActive":false,"error404":"","experiments":[],"first_page":"landing","flags":{"allow_hub2":false,"enterprise":true,"alwaysShowDocPublishStatus":false,"hub2":true,"migrationRun":false,"migrationSwaggerRun":false,"oauth":false,"swagger":false,"correctnewlines":false,"rdmdCompatibilityMode":false,"speedyRender":false,"allowXFrame":false,"newEditor":true,"newEditorDash":true,"oldMarkdown":false,"newMarkdownBetaProgram":true,"useReactApp":true,"disableAnonForum":true,"directGoogleToStableVersion":false,"translation":false,"staging":false,"newSearch":true,"graphql":false,"allowApiExplorerJsonEditor":false,"singleProjectEnterprise":false,"dashReact":false,"metricsV2":true,"enableRealtimeExperiences":false,"reviewWorkflow":true,"star":false,"allowDarkMode":false,"forceDarkMode":false,"useReactGLP":false,"disablePasswordlessLogin":false,"personalizedDocs":false,"myDevelopers":false,"superHub":true,"allowReusableOTPs":false,"developerDashboard":false,"dashHomeRefresh":false,"owlbotAi":false,"apiV2":false,"git":{"read":false,"write":false},"superHubBeta":false,"dashQuickstart":false,"customBlocks":false,"devDashHub":false,"disableAutoTranslate":false,"disableSAMLScoping":false,"allowUnsafeCustomHtmlSuggestionsFromNonAdmins":false,"apiAccessRevoked":false,"passwordlessLogin":"default","disableSignups":false,"billingRedesignEnabled":true,"developerPortal":false,"mdx":true,"superHubDevelopment":false,"annualBillingEnabled":true,"devDashBillingRedesignEnabled":false,"enableOidc":false,"customComponents":false,"disableDiscussionSpamRecaptchaBypass":true,"developerViewUsersData":false,"changelogRssAlwaysPublic":false,"bidiSync":true,"superHubMigrationSelfServeFlow":false,"apiDesigner":false,"hideEnforceSSO":false,"localLLM":false,"superHubManageVersions":false,"gitSidebar":false,"superHubGlobalCustomBlocks":false,"childManagedBidi":false,"superHubBranches":false,"requiresJQuery":true,"externalSdkSnippets":false,"migrationPreview":false,"superHubBranchReviews":false,"superHubMergePermissions":false,"superHubPreview":false},"fullBaseUrl":"https://developers.tabapay.com/","git":{"migration":{"createRepository":{"start":"2025-04-24T02:43:12.364Z","end":"2025-04-24T02:43:12.850Z","status":"successful"},"transformation":{"end":"2025-04-24T02:43:13.997Z","start":"2025-04-24T02:43:13.075Z","status":"successful"},"migratingPages":{"end":"2025-04-24T02:43:16.264Z","start":"2025-04-24T02:43:14.786Z","status":"successful"},"enableSuperhub":{"start":"2025-04-24T03:53:10.884Z","status":"successful","end":"2025-04-24T03:53:10.885Z"}},"sync":{"linked_repository":{},"installationRequest":{},"connections":[],"providers":[]}},"glossaryTerms":[{"_id":"682ca92898ad2b00181155d1","term":"SSL","definition":"Secure Sockets Layer"},{"_id":"682ca92898ad2b00181155d0","term":"ISO","definition":"Independent Sales Organization"},{"_id":"682ca92898ad2b00181155cf","term":"referenceID","definition":"1-15 characters. This value is required in every transaction and must be unique. This value is generated by the client (the caller of the TabaPay API)."},{"_id":"682ca92898ad2b00181155ce","term":"ClientID","definition":"Your unique 22-character string issued during onboarding. This value is used in your URLs for TabaPay APIs. For questions on what string to use, ask TabaPay support."},{"_id":"682ca92898ad2b00181155cd","term":"RejectDuplicateCard","definition":"Required if using Duplicate Card Check *AND* you want to *DISALLOW* any duplicate cards to be added in TabaPay's card vault."},{"_id":"682ca92898ad2b00181155cc","term":"OKToAddDuplicateCard","definition":"Required if using Duplicate Card Check *AND* you want to *ALLOW* account creation using a duplicate card already stored in TabaPay's card vault."},{"_id":"682ca92898ad2b00181155cb","term":"Device","definition":"Represents payment card data. Generated from a PCI-compliant device. In API requests, use the JSON object \"card.device\". Populate \"card.device.id\" with the TabaPay-assigned device ID (ask if you're unsure) and populate \"card.device.blob\" with the data generated from the device."},{"_id":"682ca92898ad2b00181155ca","term":"Payment Card Encrypted","definition":"Refers to the JSON fields: \"keyID\" and \"data\"."},{"_id":"682ca92898ad2b00181155c9","term":"Expiration Date","definition":"TabaPay uses YYYYMM format"},{"_id":"682ca92898ad2b00181155c8","term":"Settlement Account ID","definition":"A unique 22-character string issued during onboarding. For questions on what value to use, ask TabaPay support. Use this value in either: - The \"destinationAccountID\" field (for PULL transactions only) or - The \"sourceAccountID\" field (for PUSH transactions only)"},{"_id":"682ca92898ad2b00181155c7","term":"Destination Account ID","definition":"22-character TabaPay Account ID. For *pull* transactions, use your Settlement Account ID here (issued during onboarding)."},{"_id":"682ca92898ad2b00181155c6","term":"Source Account ID","definition":"22-character TabaPay Account ID. For *push* transactions, use your Settlement Account ID here (issued during onboarding)."},{"_id":"682ca92898ad2b00181155c5","term":"Source Account","definition":"Refers to the JSON object \"sourceAccount\". Incompatible with \"sourceAccountID\"."},{"_id":"682ca92898ad2b00181155c4","term":"Destination Account","definition":"Refers to the JSON object \"destinationAccount\". Incompatible with \"destinationAccountID\""},{"_id":"682ca92898ad2b00181155c3","term":"Corresponding Transaction ID","definition":"The transactionID of the corresponding transaction. For a *pull*, the corresponding *push* transactionID. For a *push*, the corresponding *pull* transactionID. Incompatible with the \"corresponding\" JSON object."},{"_id":"682ca92898ad2b00181155c2","term":"Security Code","definition":"3-4 digits."},{"_id":"682ca92898ad2b00181155c1","term":"Account ID","definition":"22-character TabaPay Account. Returned from Create Account. Can be used in place of bank or card details."},{"_id":"682ca92898ad2b00181155c0","term":"Duplicate Card Check","definition":"Upon using the proper query strings (?RejectDuplicateCard, ?OKToAddDuplicateCard), prevents (or allows) creating an account with a card already stored in TabaPay's Card Vault."},{"_id":"682ca92898ad2b00181155bf","term":"DeleteDuplicateCard","definition":"A Query String for the Delete Account API. Required if using Duplicate Card Check. Do not provide a value for this query string. Just append ?DeleteDuplicateCard to your URL"},{"_id":"682ca92898ad2b00181155be","term":"TabaPay","definition":"Did you know TABA stands for There And Back Again (subtitle to The Hobbit). TABA. Round trip payments. Push and Pull. It all makes sense, doesn't it?!"},{"_id":"682ca92898ad2b00181155bd","term":"Payment Card Not Encrypted","definition":"Card in the clear. Refers to JSON fields within a JSON \"card\" object: \"accountNumber\" and \"expirationDate\" (Documentation will note when to optionally include \"securityCode\")"},{"_id":"682ca92898ad2b00181155bc","term":"Version","definition":"A required URL path parameter within our APIs. The format of the Version is: the letter 'v' followed by the version number (e.g. v1, v2, etc). To see the supported versions for a specific API, refer to the specific API reference page. All APIs require a version in the URL path."},{"_id":"682ca92898ad2b00181155bb","term":"settlementAccountID","definition":"A unique 22-character string issued during onboarding. For questions on what string to use, ask TabaPay support. Use this value in either: \n- The \"destinationAccountID\" field (for pull transactions only) or \n- The \"sourceAccountID\" field (for push transactions only)"},{"_id":"682ca92898ad2b00181155ba","term":"Settlement Account ID","definition":"A unique 22-character string issued during onboarding. For questions on what string to use, ask TabaPay support. Use this value in either: - The \"destinationAccountID\" field (for pull transactions only) or - The \"sourceAccountID\" field (for push transactions only)"},{"_id":"682ca92898ad2b00181155b9","term":"SubClientID","definition":"A 4, 6, or 8-digit value, specifying a program under a client. If you're unsure what value to use, ask TabaPay support. You may need to append this value to your ClientID with the \"_\" character as a separator (i.e. ClientID_SubClientID) within your API URL"},{"_id":"682ca92898ad2b00181155b8","term":"avsID","definition":"Unique ID associated with the verification request for an address of a payment card."},{"_id":"682ca92898ad2b00181155b7","term":"FQDN","definition":"Fully qualified domain name. Replace FQDN with the appropriate domain. Ensure the domain you're using is consistent with the environment you're testing in (sandbox, production, etc.)."},{"_id":"682ca92898ad2b00181155b6","term":"AVS","definition":"Address Verification Service. Used to verify the address of a payment card with the issuing institution."},{"_id":"682ca92898ad2b00181155b5","term":"OFAC","definition":"Office of Foreign Asset Control. Enforces sanctions based on foreign policy and national security goals against specific entities, countries, terrorists, narcotics traffickers, and those involved in weapons proliferation, to help safeguard US security, policy or the economy."},{"_id":"682ca92898ad2b00181155b4","term":"ANI","definition":"Account Name Inquiry (ANI) enables an account cardholder’s name to be checked against the name held by their Issuing bank."},{"_id":"682ca92898ad2b00181155b3","term":"Acquirer","definition":"A financial institution or payment processor that facilitates and processes credit or debit card transactions on behalf of merchants, and plays a role in authorizing and settling transactions, moving funds from the customer's account to the merchant's account along the payments network."},{"_id":"682ca92898ad2b00181155b2","term":"BIN","definition":"Bank Identification Number (BIN) is a unique set of four to eight digits on a payment card."},{"_id":"682ca92898ad2b00181155b1","term":"Beneficiary","definition":"An individual or entity designated to receive funds from a payout, disbursement, or push transaction."},{"_id":"682ca92898ad2b00181155b0","term":"Boarding","definition":"Refers to when a client begins their integration steps to go live with TabaPay."},{"_id":"682ca92898ad2b00181155af","term":"B2C","definition":"Business-to-consumer (B2C) is a type of transaction flow or model where commerce and relationships conducted are between a businesses and a customer."},{"_id":"682ca92898ad2b00181155ae","term":"disbursement","definition":"A payment flow that moves funds from a sender's bank account to a recipient's bank account."},{"_id":"682ca92898ad2b00181155ad","term":"payout","definition":"A transaction that moves funds from a sender's bank account to a recipient's bank account."},{"_id":"682ca92898ad2b00181155ac","term":"Sender","definition":"An individual or entity who is sending funds to a beneficiary."},{"_id":"682ca92898ad2b00181155ab","term":"Capture","definition":"Completing and recording an authorized financial transaction to secure the funds from the customer's account and ensure the payment is successfully processed."},{"_id":"682ca92898ad2b00181155aa","term":"card","definition":"A physical or digital payment device issued by financial institutions to enable a cardholder to access funds in the assigned bank account or line of credit."},{"_id":"682ca92898ad2b00181155a9","term":"chip card","definition":"An EMV card with a microchip that provides a security layer by creating a unique transaction code for each payment for in-person transactions."},{"_id":"682ca92898ad2b00181155a8","term":"digital wallet","definition":"A virtual repository that stores payment methods or funds that allows contactless payments like near-field communication (NFC) technology, electronic transfers."},{"_id":"682ca92898ad2b00181155a7","term":"issuer","definition":"The bank or financial institution that provides a card to the cardholder, authorizing the card's use for transactions and oversees the card's activities."},{"_id":"682ca92898ad2b00181155a6","term":"Me2Me","definition":"Refers to a type of payment flow where an account holder transfers funds from one account to another account they own."},{"_id":"682ca92898ad2b00181155a5","term":"money transmission","definition":"The process of transferring funds from one person or entity to another, often through different financial services or systems. It includes various methods like electronic payments, wire transfers, and physical cash transfers."},{"_id":"682ca92898ad2b00181155a4","term":"payment","definition":"A transfer of funds when a merchant, or individual accepts a transaction for any goods, services, or legal obligation."},{"_id":"682ca92898ad2b00181155a3","term":"pull","definition":"A transaction initiated by the receiving party that draws funds out of a source account into a receiving, or destination bank account."},{"_id":"682ca92898ad2b00181155a2","term":"push","definition":"A transaction initiated by the sending party that credits an account where funds are being sent out of a source account into another account, or card. Also known as a Payout or Disbursement."},{"_id":"682ca92898ad2b00181155a1","term":"Quasi-Cash","definition":"A type of transaction related to the purchase of items that can be directly converted to cash. For example, casino game chips, lottery tickets, cryptocurrency, or money orders."},{"_id":"682ca92898ad2b00181155a0","term":"remittance","definition":"A transfer of money by one person in one country to a person in another country, usually to a family member"},{"_id":"682ca92898ad2b001811559f","term":"settlement","definition":"When a financial transaction completes by crediting the destination bank account."},{"_id":"682ca92898ad2b001811559e","term":"stored credentials","definition":"Payment credentials that have been stored to process future card payments. If you are creating an account for each user to transact using TabaPay’s API, you are storing credentials."},{"_id":"682ca92898ad2b001811559d","term":"transaction","definition":"A transfer of funds from one party to another that is a push or pull and uses many forms including cash, check, electronic funds transfer, credit or debit card transactions, or online payment services."},{"_id":"682ca92898ad2b001811559c","term":"EMV","definition":"Europay, Mastercard, and Visa (EMV) is a physical payment card that contains both a smart chip and a magnetic strip for physical terminals. Also known as a chip card, and are used for modern credit, or debit cards."},{"_id":"682ca92898ad2b001811559b","term":"3DS","definition":"Three-Domain Secure (3DS) is a messaging protocol used to authenticate cardholder information when processing card-not-present (CNP) payments."},{"_id":"682ca92898ad2b001811559a","term":"AFT","definition":"Account Funding Transaction (AFT) is a type of transfer when bank account funds are debited from an account holder to load onto another financial account or service."},{"_id":"682ca92898ad2b0018115599","term":"CVV","definition":"Card Verification Value is a 3 or 4-digit number that adds an extra layer of security, for card-not-present (CNP) transactions, or when you're buying something without swiping your card. Also known CVC, CVV2, CSC."},{"_id":"682ca92898ad2b0018115598","term":"P2P","definition":"Person to Person is a transaction that moves funds from a sender's bank account to a recipient's bank account."},{"_id":"682ca92898ad2b0018115597","term":"RTP","definition":"Real Time Payments is an instant payments platform from The Clearing House that allows financial institutions to clear and settle payments between them in real time."},{"_id":"682ca92898ad2b0018115596","term":"PAN","definition":"Primary Account Number (PAN) is a unique identifier assigned to an individual payment card, such as a credit or debit card."},{"_id":"682ca92898ad2b0018115595","term":"OCT","definition":"Original Credit Transaction (OCT) is a transaction where funds are first transferred into a bank account."},{"_id":"682ca92898ad2b0018115594","term":"B2B","definition":"Business-to-business (B2B) is a type of transaction flow or model where commerce and relationships conducted are between two businesses."},{"_id":"682ca92898ad2b0018115593","term":"Auth","definition":"Authorization (Auth) is the process of when a merchant confirms whether a customer has sufficient funds or credit to complete any card transaction, and when captured the transaction proceeds to settlement, transferring funds from the customer's account to the merchant's account."},{"_id":"682ca92898ad2b0018115592","term":"MIT","definition":"Merchant Initiated Transaction (MIT). Any transaction that is successfully conducted without the active participation of the cardholder."},{"_id":"682ca92898ad2b0018115591","term":"PCI-Token","definition":"Represents a payment card data. Generated from our PCI-compliant iFrame and is used in the JSON \"card\" object in the JSON field \"token\""},{"_id":"682ca92898ad2b0018115590","term":"CNP","definition":"Card-not-present (CNP) is a transaction flow where the customer's card and the merchant are not physically together, but the purchase is made using the card details like online shopping."},{"_id":"682ca92898ad2b001811558f","term":"CID","definition":"Card Identification Number (CID) functions similarly to the Card Verification Value (CVV) for a security layer, and commonly associated with American Express cards, and typically displays a 4-digit code on the front of the card."},{"_id":"682ca92898ad2b001811558e","term":"RPPS","definition":"Remote Payment and Presentment Service (RPPS) is a fully electronic solution for bill payment processing that provides electronic routing, posting, and same day settlement of financial transactions"},{"_id":"682ca92898ad2b001811558d","term":"CSC","definition":"Card Security Code (CSC) refers to all the various security codes such as CVV, CVV2, CVC, and CID, which are required to authenticate card transactions where the card is not physically present."},{"_id":"682ca92898ad2b001811558c","term":"ACH","definition":"Automated Clearing House (ACH) is a financial network in the US that powers electronic fund transfers. ACH transfers can be used to accept payments (pull) or to send payouts (push)."},{"_id":"682ca92898ad2b001811558b","term":"CVC","definition":"Card Verification Code (CVC). This 3-4 numerical code provides a check of the card's validity and is used to prevent fraud in transactions without physical cards. Also known as CVV, CSC, and CID."},{"_id":"682ca92898ad2b001811558a","term":"CDE","definition":"Cardholder Data Environment (CDE) consists of the people, processes and technologies that store, process, or transmit cardholder data or sensitive authentication data."},{"_id":"682ca92898ad2b0018115589","term":"FX","definition":"Foreign Exchange (FX) is the process of converting one currency into another that is used in international, or cross-border transactions."},{"_id":"682ca92898ad2b0018115588","term":"KYB","definition":"Know Your Business (KYB) is the process of verifying an organization and the nature of its business to ensure compliance with regulatory requirements, prevent fraud, and manage risk."},{"_id":"682ca92898ad2b0018115587","term":"KYC","definition":"Know Your Customer (KYC) is the process of verifying the identity of a customer and assessing any risks in doing business with them to help prevent identity theft, financial fraud, money laundering, and terrorist financing."},{"_id":"682ca92898ad2b0018115586","term":"UBO","definition":"Ultimate Beneficial Owner (UBO). The person(s) who owns or controls a legal entity or arrangement, such as a company or a trust."},{"_id":"682ca92898ad2b0018115585","term":"MID","definition":"Merchant Identifier (MID) identifies a specific program, or merchant with TabaPay."},{"_id":"682ca92898ad2b0018115584","term":"VDA","definition":"Visa Direct Account (VDA) sends payouts to bank accounts through the Visa network using its ACH/RTP."},{"_id":"682ca92898ad2b0018115583","term":"VDW","definition":"Visa Direct Wallet (VDW) sends payouts to bank accounts through the Visa network using its ACH/RTP."},{"_id":"682ca92898ad2b0018115582","term":"VMID","definition":"Visa Merchant Identifier (VMID) is a unique id number that represents a merchant transacting using the Visa network."},{"_id":"682ca92898ad2b0018115581","term":"PEP","definition":"Politically Exposed Persons (PEP). Individuals who hold a prominent public position, or those associated with them, which can be susceptible to heightened risks of corruption and bribery."},{"_id":"682ca92898ad2b0018115580","term":"NACHA","definition":"National Automated Clearing House Association (NACHA) is an organization that governs the ACH payments Network to deliver payments education, accreditation and advisory services."},{"_id":"682ca92898ad2b001811557f","term":"NFC","definition":"Near Field Communication is a technology that allows two devices—like a smartphone and a payment terminal—to communicate when they are close together to allow for contactless payment systems, and data transfer."},{"_id":"682ca92898ad2b001811557e","term":"POS","definition":"Point of Sale. The system where customer transactions are processed, and completed."},{"_id":"682ca92898ad2b001811557d","term":"MFA","definition":"Multi-Factor Authentication (MFA) is a security process that requires users to provide two or more verification factors to access a resource, enhancing protection against unauthorized access."},{"_id":"682ca92898ad2b001811557c","term":"FDIC","definition":"Federal Deposit Insurance Corporation (FDIC) is a United States government agency that provides deposit insurance to account holders in U.S. banks and savings institutions. The FDIC's insurance protects up to $250,000 per depositor, per insured bank, for each account ownership category in the event of a bank failure."},{"_id":"682ca92898ad2b001811557b","term":"NCUA","definition":"Federal agency that regulates and insures deposits at federal credit unions, similar to the FDIC but for credit unions."},{"_id":"682ca92898ad2b001811557a","term":"SAML","definition":"SAML (Security Assertion Markup Language) is a standard for exchanging authentication and authorization data between an identity provider and a service provider, facilitating single sign-on."},{"_id":"682ca92898ad2b0018115579","term":"AML","definition":"AML (Anti-Money Laundering). Laws and procedures designed to prevent criminals from disguising illegal proceeds as legitimate income."},{"_id":"682ca92898ad2b0018115578","term":"BSA","definition":"BSA (Bank Secrecy Act) is a U.S. law that requires financial institutions to assist government agencies in detecting and preventing money laundering."},{"_id":"682ca92898ad2b0018115577","term":"ACS","definition":"ACS (Access Control Server) is a network server used for making access control decisions and enforcing security policies."},{"_id":"682ca92898ad2b0018115576","term":"IdP","definition":"IdP (Identity Provider) is a system that manages identity information and provides authentication services within a federated identity setup."},{"_id":"682ca92898ad2b0018115575","term":"Sponsor Bank","definition":"A bank that enables payment processors and Independent Sales Organizations (ISOs) to access major card networks like Visa and MasterCard for transaction processing."},{"_id":"682ca92898ad2b0018115574","term":"CIP","definition":"Customer Information Program (CIP) mandates U.S. financial institutions to verify the identities of customers opening accounts, collecting details like name, address, and ID number to prevent financial crimes. Institutions must also check names against government watch lists."},{"_id":"682ca92898ad2b0018115573","term":"MSB","definition":"Money Service Business (MSB) is a company that provides financial services like money transfers, currency exchange, and payment processing, that serve as accessible financial points for consumers, especially those who may not have access to traditional banking services."},{"_id":"682ca92898ad2b0018115572","term":"MCC","definition":"Merchant Category Codes (MCC). Four-digit numbers used by credit card networks to classify businesses based on the type of goods or services they provide, affecting rewards, tax reporting, and fraud detection."},{"_id":"682ca92898ad2b0018115571","term":"FTPS","definition":"FTPS (File Transfer Protocol Secure) is an extension of File Transfer Protocol (FTP) that uses Secure Sockets Layer (SSL)/Transport Layer Security (TLS) to encrypt file transfers, operating on port 990 990 for a constantly secure connection, or port 21 where security is confirmed at the start of a connection."},{"_id":"682ca92898ad2b0018115570","term":"PCI","definition":"Payment Card Industry (PCI) Standards. A set of standards that participants in the payment card ecosystem must follow to help ensure the safety of payment card data"},{"_id":"682ca92898ad2b001811556f","term":"PCI-DSS","definition":"Payment Card Industry Data Security Standards (PCI-DSS), or PCI. A set of standards that participants in the payment card ecosystem must follow to help ensure the safety of payment card data"},{"_id":"682ca92898ad2b001811556e","term":"CCD","definition":"Corporate Credit or Debit"},{"_id":"682ca92898ad2b001811556d","term":"PPD","definition":"Prearranged Payment and Deposit"},{"_id":"682ca92898ad2b001811556c","term":"WEB","definition":"Internet/Mobile Initiated Entry"},{"_id":"682ca92898ad2b001811556b","term":"chargeback","definition":"An outcome of a disputed transaction initiated by the cardholder, transferring funds back from the merchant to the cardholder."},{"_id":"682ca92898ad2b001811556a","term":"PAR","definition":"Payment Account Reference (PAR) is a 29-character unique identifier linked to a cardholder's Payment Account Number (PAN) and related tokens, used in place of sensitive data to facilitate consumer identification across payment systems."},{"_id":"682ca92898ad2b0018115569","term":"SAQ","definition":"Self-Assessment Questionnaire (SAQ) is a validation tool intended to assist merchants and service providers report the results of their PCI DSS compliance assessment. There are different question program specific questionnaires for merchants (e.g. A, D)"},{"_id":"682ca92898ad2b0018115568","term":"Webhooks","definition":"Automated messages sent from TabaPay when something happens, so that different systems are in sync without manual input."},{"_id":"682ca92898ad2b0018115567","term":"MTL","definition":"Money Transmitter License is a state regulated license a businesses to provide money transmission services, including transferring funds between parties, currency exchange, and issuing or selling payment instruments."},{"_id":"682ca92898ad2b0018115566","term":"CAVV","definition":"Cardholder Authentication Verification Value is a value generated by the card issuer during the authentication of a cardholder in an online transaction. It is part of the 3-D Secure (3DS) protocol (verified by the card network) and helps confirm that the existing cardholder is authorized to use the card."},{"_id":"682ca92898ad2b0018115565","term":"cardholder","definition":"A cardholder is an individual to whom a payment card (credit, debit, or prepaid card) is issued. The cardholder is authorized to use the card for making transactions and is responsible for any charges incurred on the card."},{"_id":"682ca92898ad2b0018115564","term":"enabled","definition":"Refers to turning on a product or feature for an existing TabaPay client using any required configurations."},{"_id":"682ca92898ad2b0018115563","term":"TAVV","definition":"Transaction Authentication Verification Value is similar to CAVV and is used in the context of the 3-D Secure (3DS) protocol for card authentication. It is a value provided by the card issuer to verify the authenticity of a transaction, ensuring that it is being conducted by the legitimate cardholder."},{"_id":"682ca92898ad2b0018115562","term":"HTTPS","definition":"Hypertext Transfer Protocol Secure is an extension of HTTP that uses encryption (typically via SSL/TLS) to secure data transmitted over the web, helping protect against eavesdropping, tampering, and intercepting attacks."},{"_id":"682ca92898ad2b0018115561","term":"cryptogram","definition":"Unique encrypted codes generated at each transaction to authenticate the transaction and help ensure its security."},{"_id":"682ca92898ad2b0018115560","term":"cardholder","definition":"An individual to whom a payment card (credit, debit, or prepaid card) is issued, authorized to use the card for card transactions."},{"_id":"682ca92898ad2b001811555f","term":"C2B","definition":"Consumer to business is a type of transaction flow where consumers provide products or services to businesses. For example a graphic designer, influencer, or crowdsourcing."},{"_id":"682ca92898ad2b001811555e","term":"B2C","definition":"Business to consumer is a type of transaction flow where businesses sell products or services directly to consumers."},{"_id":"682ca92898ad2b001811555d","term":"A2A","definition":"Account to Account is a type of transaction flow involving transfers of funds between two accounts held by the same or different individuals or entities."},{"_id":"682ca92898ad2b001811555c","term":"G2C","definition":"Government to Citizen is a type of transaction flow type involving interactions between government entities and citizens. For example: social security benefits, unemployment benefits, and healthcare services."},{"_id":"682ca92898ad2b001811555b","term":"SAAS","definition":"Software as a Service is a cloud-based solution where applications are hosted by a provider and accessed by users over the internet, allowing accessibility, automatic updates, scalability, and reducing the need for on-premises software and hardware."},{"_id":"682ca92898ad2b001811555a","term":"TCH","definition":"The Clearing House is a banking association that operates key payment systems like ACH for electronic payments, and RTP for instant payments, ensuring secure and efficient processing in the U.S. financial system."},{"_id":"682ca92898ad2b0018115559","term":"ODFI","definition":"Originating Depository Financial Institution is the bank or financial institution that initiates an ACH (Automated Clearing House) transaction."},{"_id":"682ca92898ad2b0018115558","term":"RDFI","definition":"Receiving Depository Financial Institution is the bank or financial institution that receives ACH entries from the ACH network and posts them to the accounts of the intended recipients."},{"_id":"682ca92898ad2b0018115557","term":"DDA","definition":"Demand Deposit Account is a bank account from which funds can be withdrawn at any time without any advance notice, commonly known as a checking account."},{"_id":"682ca92898ad2b0018115556","term":"PGP","definition":"Pretty Good Privacy is an encryption program that provides cryptographic privacy and authentication for data communication. PGP is used for securing emails, files, and directories."},{"_id":"682ca92898ad2b0018115555","term":"SFTP","definition":"Secure File Transfer Protocol securely transfers files over a network, encrypting both commands and data, typically via Transmission Control Protocol (TCP) port 22."},{"_id":"682ca92898ad2b0018115554","term":"CVV2","definition":"Card Verification Value is the static code printed on a card used to verify card possession in card-not-present transactions."},{"_id":"682ca92898ad2b0018115553","term":"SCA","definition":"Strong Customer Authentication is a set of security requirements under Payment Services Directive (PSD2) that requires multi-factor authentication for electronic payments to enhance security and reduce fraud."},{"_id":"682ca92898ad2b0018115552","term":"PSD2","definition":"Revised Payment Services Directive) is a European Union regulation that enhances consumer protection, promotes innovation, and improves security in electronic payments involving Strong Customer Authentication (SCA) practices."},{"_id":"682ca92898ad2b0018115551","term":"IIN","definition":"A unique identifier generated by TabaPay Clients for every transaction."},{"_id":"682ca92898ad2b0018115550","term":"RT AU","definition":"Real Time Account Updater enables real-time updates on payment card credentials for Merchant-Initiated Transactions MIT, for updated customer card information to reduce declines and enhance the cardholder experience."},{"_id":"682ca92898ad2b001811554f","term":"Intl","definition":"international"},{"_id":"682ca92898ad2b001811554e","term":"MAC","definition":"Merchant Advice Codes are returned in Create Transaction to help with key re-attempt decisions for the client."},{"_id":"682ca92898ad2b001811554d","term":"ECI","definition":"Electronic Commerce Indicator indicates the type and security level of a 3DS transaction. It helps payment processors and issuers identify and handle transactions appropriately based on their security status."},{"_id":"682ca92898ad2b001811554c","term":"UAT","definition":"User Acceptance Testing"},{"_id":"682ca92898ad2b001811554b","term":"PII","definition":"Personally Identifiable Information is any information that can be used to distinguish or trace a person's identity, such as their name, Social Security number, biometric records, or other data linked to them."},{"_id":"682ca92898ad2b001811554a","term":"Bearer Token","definition":"A type of token used for authorization in making a successful API request. This unique credential acts as a key to be able to access a protected resource."},{"_id":"682ca92898ad2b0018115549","term":"COF","definition":"Card on File refers to storing a customer’s card details on a digital platform for future transactions, eliminating the need to re-enter payment information."},{"_id":"682ca92898ad2b0018115548","term":"JWT","definition":"JSON Web Token is a secure, signed token used to transmit information between parties, often for authentication and authorization."},{"_id":"682ca92898ad2b0018115547","term":"RfP","definition":"Request for Payment is a digital request from a receiver to a sender, specifying the amount and expiration date. It streamlines and secures financial transactions by automating Real-time payment processes."},{"_id":"682ca92898ad2b0018115546","term":"FedNow","definition":"A real-time payment service by the U.S. Federal Reserve that enables instant, 24/7/365 interbank payments and settlements, allowing individuals and businesses to transfer funds in real time."},{"_id":"682ca92898ad2b0018115545","term":"redundancy","definition":"In payments or networking, refers to duplicate components or payment systems that can seamlessly take over if a primary component fails."},{"_id":"682ca92898ad2b0018115544","term":"token","definition":"A unique identifier for sensitive information, used to protect data while passing information."},{"_id":"682ca92898ad2b0018115543","term":"WAF","definition":"Web Application Firewall"},{"_id":"682ca92898ad2b0018115542","term":"IDS","definition":"Intrusion Detection System"},{"_id":"682ca92898ad2b0018115541","term":"IPS","definition":"Intrusion Prevention System"},{"_id":"682ca92898ad2b0018115540","term":"AOC","definition":"Attestation of Compliance is an affirmation from an independent party that an entity meets certain regulatory requirements. The attestation is often issued in the form of a report on an independent review or risk assessment conducted by a qualified third party."},{"_id":"682ca92898ad2b001811553f","term":"compact JSON","definition":"All newlines/tabs/extra spaces in between JSON fields and objects are omitted {\"accounts\":{\"sourceAccountID\":\"SettlementAccountID_22\"..."},{"_id":"682ca92898ad2b001811553e","term":"ROC","definition":"Report on Compliance is a third party assessment of an organization's security against a set of requirements"},{"_id":"682ca92898ad2b001811553d","term":"Neobank","definition":"An online financial institution that offers banking services like accounts, but without traditional physical brick and mortar branches."},{"_id":"682ca92898ad2b001811553c","term":"brokerage account","definition":"An account dedicated for investments that allows you to buy stocks, bonds, mutual funds, and ETFs."},{"_id":"682ca92898ad2b001811553b","term":"CIT","definition":"Cardholder Initiated Transaction (CIT) is a transaction where the cardholder actively participates or make a request at the time of purchase. Also referred to as Consumer Initiated Transaction, or Customer Initiated Transaction."},{"_id":"682ca92898ad2b001811553a","term":"split-tender","definition":"When a customer divides, or \"splits\" up the purchase with multiple payment methods."},{"_id":"682ca92898ad2b0018115539","term":"Partial Auth","definition":"A service to authorize a payment acceptance (pull) transaction including partial funds to avoid a non-sufficient funds decline (Card Network Response Code 51)."},{"_id":"682ca92898ad2b0018115538","term":"TabaPay Token","definition":"Stored bank accounts and payment cards that have been tokenized in TabaPay's vault to safely pass in TabaPay's Unified API including the Create Transaction Request."},{"_id":"682ca92898ad2b0018115537","term":"KB","definition":"Kilobyte"},{"_id":"682ca92898ad2b0018115536","term":"XB","definition":"Cross-border"},{"_id":"682ca92898ad2b0018115535","term":"NSF","definition":"Non-sufficient funds"},{"_id":"682ca92898ad2b0018115534","term":"MC","definition":"Mastercard"},{"_id":"682ca92898ad2b0018115533","term":"MOTO","definition":"Mail Order Telephone Order"},{"_id":"682ca92898ad2b0018115532","term":"type:push","definition":"This refers to type field in the Create Transaction request that indicates the transaction is a payout (push) instead of a payment (pull)."},{"_id":"682ca92898ad2b0018115531","term":"API","definition":"Application Programing Interface refers is way for software applications to communicate with each other through specified data formats to request and exchange information."},{"_id":"682ca92898ad2b0018115530","term":"type:pull","definition":"This refers to type field in the Create Transaction request that indicates the transaction is a payment (pull) instead of a payout (push)."},{"_id":"682ca92898ad2b001811552f","term":"Unified API","definition":"TabaPay's API-first design allows a developer-friendly integration with a single connection to multiple networks, banking partners, and countries to accept payments, and payout funds."},{"_id":"682ca92898ad2b001811552e","term":"body parameters","definition":"Describe the data included in an API request. Depending on the use case, different body params will be included (e.g. a subscription will require the recurringData object and recurring field, but a single transaction may not)."},{"_id":"682ca92898ad2b001811552d","term":"RSA","definition":"Rivest-Shamir-Adleman, or RSA named after the inventors, is a widely used encryption that protects card data passed in the TabaPay API."},{"_id":"682ca92898ad2b001811552c","term":"OTPP","definition":"One-Time Payment Portal generated from the TransactionRequest API."},{"_id":"682ca92898ad2b001811552b","term":"transactionID","definition":"The unique 22-character string that identifies a specific transaction. Found in the Create Transaction Response."},{"_id":"682ca92898ad2b001811552a","term":"RC","definition":"Response Code. Also known as Card Network Response Codes, or Iso Network Codes."},{"_id":"682ca92898ad2b0018115529","term":"FI","definition":"Financial Institution"},{"_id":"682ca92898ad2b0018115528","term":"IIN","definition":"Issuer Identification Number"},{"_id":"682ca92898ad2b0018115527","term":"accountID","definition":"22-character TabaPay Account. Returned from Create Account. Can be used in place of bank or card details."},{"_id":"682ca92898ad2b0018115526","term":"NVP","definition":"Name-Value Pair"},{"_id":"682ca92898ad2b0018115525","term":"OWASP","definition":"Open Worldwide Application Security Project"},{"_id":"682ca92898ad2b0018115524","term":"SOC","definition":"System and Organization Controls"}],"graphqlSchema":"","gracePeriod":{"enabled":false,"endsAt":null},"shouldGateDash":false,"healthCheck":{"provider":"","settings":{"page":"","status":false,"url":""}},"intercom_secure_emailonly":false,"intercom":"","is_active":true,"integrations":{"login":{}},"internal":"","jwtExpirationTime":0,"landing_bottom":[{"type":"html","alignment":"left","html":"\n\n\n

Get Started with Money Movement

\n\n\n
\n \n
\n
\n

Accept Payments

\n

Accept payments instantly from cards and bank accounts

\n
\n\n
\n
\n \n
\n
\n

Payout Funds

\n

Send payouts instantly to recipients' domestic and international cards and bank accounts

\n
\n
\n
\n\n
\n\n\n

Integrate with TabaPay

\n\n
\n\n \n\n\n \n\n\n\n \n\n\n\n\n\n\n\n
\n\n\n
\n\n \n\n\n \n\n\n\n \n\n
\n\n\n\n\n\n

Recipes (Code Samples)

\n\n\n
\n\n\n\n\n\n\n\n
↗️
Query Card
Open Recipe
\n \n
↗️
Example Push Transaction
Open Recipe
\n \n
↗️
Pull Transaction with Card Info
Open Recipe
\n \n \n
\n\n

Search by Product Guide

\n"},{"type":"docs","alignment":"left","pageType":"Documentation","html":"
\n
\n
\n \t\n
\n
\n \n

3DS

\n \t
\n

\n Three-Domain Secure or “3DS” is a messaging protocol merchants use to authenticate their customers’ card information when processing card-not-present (CNP) e-commerce or mobile purchases and payments. By enhancing authentication, 3DS helps prevent fraud and provides an additional layer of security for CNP credit card and debit card transactions. This service is provided by all four major card networks.\n Read more\n

\n
\n
\n
\n

Recent articles

\n \n
\n
\n
\n
\n \n
\n \n

How to use Duplicate Card Check?

\n
\n
2022.07.12
\n

When using TabaPay's Account API to create or update a TabaPay account, TabaPay allows you to check if a card is already associated with another account. This is called duplicate card check. If we detect that you are trying to create a duplicate account (same card), then we return a 409 response and give you the account_id associated with said card.

\n \tRead more \n
\n
\n
\n \n
\n \n

How to use 3DS?

\n
\n
2022.07.12
\n

This guide will walk you through using JFrog to get your hands on the 3DS SDK. As well as an overview of how to integrate and use the SDK. There are a total of 13 steps in this guide...

\n \tRead more\n
\n
\n
\n
\n
\n\n"}],"mdxMigrationStatus":"rdmd","metrics":{"monthlyLimit":0,"planLimit":5000000,"thumbsEnabled":true,"realtime":{"dashEnabled":false,"hubEnabled":false},"monthlyPurchaseLimit":0,"meteredBilling":{}},"modules":{"landing":true,"docs":true,"examples":false,"reference":true,"graphql":false,"changelog":true,"discuss":true,"suggested_edits":true,"logs":false,"custompages":true,"tutorials":true},"name":"TabaPay Developers","nav_names":{"docs":"Documentation","reference":"","changelog":"","discuss":"Community","tutorials":"","recipes":""},"oauth_url":"","onboardingCompleted":{"documentation":true,"appearance":true,"jwt":false,"api":true,"logs":true,"domain":false,"metricsSDK":false},"owlbot":{"enabled":false,"isPaying":false,"customization":{"answerLength":"long","customTone":"","defaultAnswer":"","forbiddenWords":"","tone":"neutral"},"copilot":{"enabled":false,"hasBeenUsed":false,"installedCustomPage":""}},"owner":{"id":null,"email":null,"name":null},"plan":"business2018","planOverride":"enterprise","planSchedule":{"stripeScheduleId":null,"changeDate":null,"nextPlan":null},"planStatus":"","planTrial":"enterprise","readmeScore":{"components":{"newDesign":{"enabled":true,"points":25},"reference":{"enabled":true,"points":50},"tryItNow":{"enabled":true,"points":35},"syncingOAS":{"enabled":true,"points":10},"customLogin":{"enabled":true,"points":25},"metrics":{"enabled":false,"points":40},"recipes":{"enabled":true,"points":15},"pageVoting":{"enabled":true,"points":1},"suggestedEdits":{"enabled":true,"points":10},"support":{"enabled":true,"points":5},"htmlLanding":{"enabled":true,"points":5},"guides":{"enabled":true,"points":10},"changelog":{"enabled":true,"points":5},"glossary":{"enabled":true,"points":1},"variables":{"enabled":true,"points":1},"integrations":{"enabled":true,"points":2}},"totalScore":200},"reCaptchaSiteKey":"6Lesa1kqAAAAABjyu9XXaqnA6qh8bpVeupxvagan","reference":{"alwaysUseDefaults":true,"defaultExpandResponseExample":true,"defaultExpandResponseSchema":true,"enableOAuthFlows":false},"seo":{"overwrite_title_tag":false},"stable":{"_id":"61f4a26379257900665c3633","version":"74473","version_clean":"74473.0.0","codename":"Shire","is_stable":true,"is_beta":false,"is_hidden":false,"is_deprecated":false,"categories":["61f4a26379257900665c3634","61f4a26379257900665c3634","61f4a26379257900665c3635","61f4a26379257900665c3636","61f4a26379257900665c3637","61f4a26379257900665c3638","61f4a26379257900665c3639","61f4a26379257900665c363a","61f4aa3050b3a900536fbbe5","61f4aaf69af6160029876772","61f4b30acb53a9000fbb81ab","62041108b5a9c800248d75f1","6204147ab4bcab029d11b8a2","6208371e21b888003b3bc558","62083794f2cfe700544153c6","62083c8800384f0063347179","62084b4f63b83900109e0b32","62084e8abf6edf00504d26a7","62087227a0eeb10025e53ce1","62087a2899830b004a269b06","62088083951405002a722aaf","620896c399830b004a26a16f","6208985899830b004a26a24b","62089c85a0eeb10025e549d0","62089d328c2f4a0072f8230e","62089f2d2f1151004888915c","62089fd8fa344e00da6a454f","6208a06454b9dc00407a8861","6209409fb7271b0010ab7238","62094146f75b3c000f46b6d1","6209c001f5c8d5002a5afffa","620ade76fd1bdc0043949693","620c39c3df8a9c00208bbe66","620c3abcc7f132009dde06c8","620d6be726818500370efe86","620d6e15d3ad4d004d3dc27d","620d6e60321f8c0054585579","620d6e79427bb0003da9976b","620d6e99fedd2e00149732de","62142ff68521a1001a3d5f16","62291c9c828b7a0090cd426b","62291dd388c55f002df2b0c5","62292257017c6200358fec18","6229242b3a04d70110912d6e","622926038b83bb0091248cbe","622f5580f2442302811518b3","622fa97d3b7cb3059b2cea04","622fb8c778f204008abf9fac","622fb9464ad2b5004fc2f7a6","622fc3adf5f91702f1ffad2b","622fc51768c5210020165fa4","622fc58178f204008abfacda","6231282ef4422c0045ca7af1","623128a888328c003d964639","62312d3a415e130014b6da52","6231324ac06c4403804885d2","623138ed569bb8007f68b9c5","62313ad4fc47b900205638b2","623150938e119f002eeadb06","6231512589f9cb003bfb1635","623151eed11e4a0099af3d4e","6231fa08b1e56702f59ebbef","62321835e6510a002a2f2536","623218aabff0bc0027bc0a01","623229ca76ad28007457419c","62327b7ddef83200359f5171","62328d8729a88c0014edcfd0","62328e2d43cb0c00235bf005","62334932d27ea3003abb86c8","62338a7a542f3d009c9c8e88","623392f85ac7a7005843294d","6233ad897a0510009b1b4d3d","6234b80b9d00b005fb3db116","6234f64de0880500f6ec2974","6234fe3424d524004dfe2e2f","623500bda2ca1e009afa20ef","623504cdec22f9006aa78780","6238e500678d600014474a56","62391c8c4e9b6f0073c336ef","62391cc07d490c0119e055c1","62391cd11dc62f0045e8d4c8","62391e16ddb6360087055643","623cf5ead1e7230023986084","623cf66389f559035cf1f8b6","623cf69a94eeb20074772155","623cf8605d2911035f95186c","623cf96b38d70e0013f35433","623e02d386fd5900438bb9bc","623e39c893fe1b0089cd66ca","623e3acd4036fe00579e3632","623e3ae25b149f0013930eb3","623e480ec01e85001478cc33","623e488f6c0859003d9e006c","623e4ec69d6d4c0013959322","623f5b371526110084f6a9a2","6241ccfa4f1109004695dbfb","6241cd32f50ce6030b8a903e","6241cdbcd274de0040718a78","6241ce092a0fea001361ef1d","6241ce21220fe9002a9fbebc","62447f5550902900203ffab5","624481e6ea2f38031e192eef","6244821a10292f0039d75476","62448226352dde0014706ef2","624c68d6f9beeb0305f5d509","624f74c61a742e005125cb91","6259957d31cde30044b886f6","625995d124a07b00a2e686d4","62599629a9d962010cca20e4","625998ca6348d2007165628b","6259b8c07defaf00a4be2549","625d7fc5e1a38e004bf3467d","625ee3390e200700445a2759","625ee3a791e48f0014b22f6f","625f7cf342ed81004c33ac63","62602b8bb0a3d70935c41acc","62614838f938a8020f9bd8f2","62617b80f8cdf0081fbc2de6","6262ca98260a3200272442da","626616eb3628410014431342","62685fa7c239d40021a3ea92","626c306623805800815027d0","62797be14c1eb50082ecafbc","627da57e63f0cf00210ada3d","6281153b1168620045ff4b95","62811547ce06c700520d8ec7","62828c628483fe06d2bc43d8","629a3debcb9f6c001a397bbe","629a6fb6fd6a050087f82e18","629a72d1132ae401bced84b8","629fe9ec06ca62006a4a2f9a","62b4bdfd58633d00afe2b604","62d6d44fcf55a8008aba28ec","6351d57f316659000fe09f28","6376b4a72ac94400030a8ce6","6377e3080b88b50016768b4c","63d3f651107b0205e2628f03","63eac898de1c05001299b803","63f8edaea3e82a004c96d3e9","64c1950df09a1d0058c04f21","6529bbc81e274e0058a8cac5","6571ef88bf411f000f6113b3","65eb8c3b6abab2006963e7d1","666b2cad3c4d2a006164e2c7","66abc47147fd3b003de27706","66eb3b98957a8d0049be591f","66f2ddafcdd0b1004ce14280","6781afe3ae09ee00307185d0"],"project":"61f4a26379257900665c364f","releaseDate":"2022-01-08T00:10:17.445Z","createdAt":"2022-01-08T00:10:17.445Z","__v":16,"updatedAt":"2025-06-06T17:47:48.069Z","apiRegistries":[{"filename":"TP22-APIs.json","uuid":"5mrx5qmbl3lxvs"}],"pdfStatus":"","source":"readme"},"subdomain":"beginbagend","subpath":"","superHubWaitlist":true,"topnav":{"left":[],"right":[{"type":"url","text":"API Reference","url":"https://developers.tabapay.com/reference"},{"type":"url","text":"Recipes","url":"https://developers.tabapay.com/recipes"},{"type":"url","text":"Changelog","url":"https://developers.tabapay.com/changelog"},{"type":"url","text":"Community","url":"https://developers.tabapay.com/discuss"},{"type":"user","text":"User","url":"/login?redirect_uri=/reference/how-to-use-the-3ds-sdk-starter-guide"}],"bottom":[{"type":"url","text":"Accept Payments","url":"https://developers.tabapay.com/docs/overview-of-instant-pull-payments"},{"type":"url","text":"Payout Funds","url":"https://developers.tabapay.com/docs/overview-of-instant-payouts#/"},{"type":"url","text":"TabaPay Shield","url":"https://developers.tabapay.com/docs/overview-of-tabapay-shield#/"},{"type":"url","text":"Reporting","url":"https://developers.tabapay.com/docs/reporting"},{"type":"url","text":"TabaPay Portal","url":"https://developers.tabapay.com/docs/tabapay-portal"}],"edited":true},"trial":{"trialDeadlineEnabled":false,"trialEndsAt":"2022-02-12T02:11:47.236Z"},"translate":{"provider":"transifex","show_widget":false,"key_public":"","org_name":"","project_name":"","languages":[]},"url":"https://tabapay.com","versions":[{"_id":"670e9b26516de3004d170ac0","version":"1.1","version_clean":"1.1.0","codename":"","is_stable":false,"is_beta":false,"is_hidden":true,"is_deprecated":false,"categories":["61f4a26379257900665c3634","61f4a26379257900665c3634","61f4a26379257900665c3635","670e9b26516de3004d1708a3","670e9b26516de3004d1708a4","670e9b26516de3004d1708a5","61f4a26379257900665c3639","61f4a26379257900665c363a","670e9b26516de3004d1708a6","61f4aaf69af6160029876772","61f4b30acb53a9000fbb81ab","62041108b5a9c800248d75f1","6204147ab4bcab029d11b8a2","6208371e21b888003b3bc558","670e9b26516de3004d1708a7","670e9b26516de3004d1708a8","62084b4f63b83900109e0b32","670e9b26516de3004d1708a9","62087227a0eeb10025e53ce1","62087a2899830b004a269b06","62088083951405002a722aaf","620896c399830b004a26a16f","6208985899830b004a26a24b","62089c85a0eeb10025e549d0","62089d328c2f4a0072f8230e","62089f2d2f1151004888915c","62089fd8fa344e00da6a454f","6208a06454b9dc00407a8861","6209409fb7271b0010ab7238","62094146f75b3c000f46b6d1","6209c001f5c8d5002a5afffa","620ade76fd1bdc0043949693","620c39c3df8a9c00208bbe66","620c3abcc7f132009dde06c8","620d6be726818500370efe86","620d6e15d3ad4d004d3dc27d","620d6e60321f8c0054585579","620d6e79427bb0003da9976b","620d6e99fedd2e00149732de","670e9b26516de3004d1708aa","62291c9c828b7a0090cd426b","62291dd388c55f002df2b0c5","62292257017c6200358fec18","6229242b3a04d70110912d6e","622926038b83bb0091248cbe","622f5580f2442302811518b3","622fa97d3b7cb3059b2cea04","622fb8c778f204008abf9fac","622fb9464ad2b5004fc2f7a6","622fc3adf5f91702f1ffad2b","622fc51768c5210020165fa4","622fc58178f204008abfacda","6231282ef4422c0045ca7af1","623128a888328c003d964639","62312d3a415e130014b6da52","6231324ac06c4403804885d2","623138ed569bb8007f68b9c5","62313ad4fc47b900205638b2","623150938e119f002eeadb06","6231512589f9cb003bfb1635","623151eed11e4a0099af3d4e","6231fa08b1e56702f59ebbef","62321835e6510a002a2f2536","623218aabff0bc0027bc0a01","623229ca76ad28007457419c","62327b7ddef83200359f5171","62328d8729a88c0014edcfd0","62328e2d43cb0c00235bf005","62334932d27ea3003abb86c8","62338a7a542f3d009c9c8e88","623392f85ac7a7005843294d","6233ad897a0510009b1b4d3d","6234b80b9d00b005fb3db116","6234f64de0880500f6ec2974","6234fe3424d524004dfe2e2f","623500bda2ca1e009afa20ef","623504cdec22f9006aa78780","6238e500678d600014474a56","62391c8c4e9b6f0073c336ef","62391cc07d490c0119e055c1","62391cd11dc62f0045e8d4c8","62391e16ddb6360087055643","623cf5ead1e7230023986084","623cf66389f559035cf1f8b6","623cf69a94eeb20074772155","623cf8605d2911035f95186c","623cf96b38d70e0013f35433","623e02d386fd5900438bb9bc","623e39c893fe1b0089cd66ca","623e3acd4036fe00579e3632","623e3ae25b149f0013930eb3","623e480ec01e85001478cc33","623e488f6c0859003d9e006c","623e4ec69d6d4c0013959322","670e9b26516de3004d1708ab","6241ccfa4f1109004695dbfb","6241cd32f50ce6030b8a903e","670e9b26516de3004d1708ac","6241ce092a0fea001361ef1d","6241ce21220fe9002a9fbebc","670e9b26516de3004d1708ad","624481e6ea2f38031e192eef","670e9b26516de3004d1708ae","670e9b26516de3004d1708af","670e9b26516de3004d1708b0","670e9b26516de3004d1708b1","670e9b26516de3004d1708b2","670e9b26516de3004d1708b3","670e9b26516de3004d1708b4","670e9b26516de3004d1708b5","6259b8c07defaf00a4be2549","625d7fc5e1a38e004bf3467d","670e9b26516de3004d1708b6","625ee3a791e48f0014b22f6f","625f7cf342ed81004c33ac63","62602b8bb0a3d70935c41acc","62614838f938a8020f9bd8f2","670e9b26516de3004d1708b7","670e9b26516de3004d1708b8","670e9b26516de3004d1708b9","62685fa7c239d40021a3ea92","670e9b26516de3004d1708ba","670e9b26516de3004d1708bb","627da57e63f0cf00210ada3d","6281153b1168620045ff4b95","62811547ce06c700520d8ec7","670e9b26516de3004d1708bc","670e9b26516de3004d1708bd","629a6fb6fd6a050087f82e18","629a72d1132ae401bced84b8","670e9b26516de3004d1708be","670e9b26516de3004d1708bf","670e9b26516de3004d1708c0","670e9b26516de3004d1708c1","670e9b26516de3004d1708c2","670e9b26516de3004d1708c3","670e9b26516de3004d1708c4","670e9b26516de3004d1708c5","63f8edaea3e82a004c96d3e9","670e9b26516de3004d1708c6","670e9b26516de3004d1708c7","670e9b26516de3004d1708c8","670e9b26516de3004d1708c9","670e9b26516de3004d1708ca","670e9b26516de3004d1708cb","670e9b26516de3004d1708cc","670e9b26516de3004d1708cd"],"pdfStatus":"","project":"61f4a26379257900665c364f","releaseDate":"2022-01-08T00:10:17.445Z","createdAt":"2024-10-15T16:41:09.722Z","__v":1,"updatedAt":"2025-04-24T02:43:04.005Z","forked_from":"61f4a26379257900665c3633","apiRegistries":[{"filename":"awesome-new-api.json","uuid":"4w5tmm12l0k4220d"},{"filename":"simple-inventory-api.json","uuid":"25wgwkzorpfm3"},{"filename":"developer-portal-v2-operations.json","uuid":"2241wl323zqqm"},{"filename":"tabapay-apis.json","uuid":"1pva416m1imqx8n"},{"filename":"developer-portal-v4-operations.json","uuid":"t28vqzl33h5737"},{"filename":"tabapay-apis-1.json","uuid":"t83jl3rl3ywjqbj"},{"filename":"test-tabapay-apis.json","uuid":"sxbqhm92nl466pkcg"},{"filename":"queryofac.json"},{"filename":"developer-portal-v1-operations.json","uuid":"1xy0gxl33p7kqw"}],"source":"readme"},{"_id":"61f4a26379257900665c3633","version":"74473","version_clean":"74473.0.0","codename":"Shire","is_stable":true,"is_beta":false,"is_hidden":false,"is_deprecated":false,"categories":["61f4a26379257900665c3634","61f4a26379257900665c3634","61f4a26379257900665c3635","61f4a26379257900665c3636","61f4a26379257900665c3637","61f4a26379257900665c3638","61f4a26379257900665c3639","61f4a26379257900665c363a","61f4aa3050b3a900536fbbe5","61f4aaf69af6160029876772","61f4b30acb53a9000fbb81ab","62041108b5a9c800248d75f1","6204147ab4bcab029d11b8a2","6208371e21b888003b3bc558","62083794f2cfe700544153c6","62083c8800384f0063347179","62084b4f63b83900109e0b32","62084e8abf6edf00504d26a7","62087227a0eeb10025e53ce1","62087a2899830b004a269b06","62088083951405002a722aaf","620896c399830b004a26a16f","6208985899830b004a26a24b","62089c85a0eeb10025e549d0","62089d328c2f4a0072f8230e","62089f2d2f1151004888915c","62089fd8fa344e00da6a454f","6208a06454b9dc00407a8861","6209409fb7271b0010ab7238","62094146f75b3c000f46b6d1","6209c001f5c8d5002a5afffa","620ade76fd1bdc0043949693","620c39c3df8a9c00208bbe66","620c3abcc7f132009dde06c8","620d6be726818500370efe86","620d6e15d3ad4d004d3dc27d","620d6e60321f8c0054585579","620d6e79427bb0003da9976b","620d6e99fedd2e00149732de","62142ff68521a1001a3d5f16","62291c9c828b7a0090cd426b","62291dd388c55f002df2b0c5","62292257017c6200358fec18","6229242b3a04d70110912d6e","622926038b83bb0091248cbe","622f5580f2442302811518b3","622fa97d3b7cb3059b2cea04","622fb8c778f204008abf9fac","622fb9464ad2b5004fc2f7a6","622fc3adf5f91702f1ffad2b","622fc51768c5210020165fa4","622fc58178f204008abfacda","6231282ef4422c0045ca7af1","623128a888328c003d964639","62312d3a415e130014b6da52","6231324ac06c4403804885d2","623138ed569bb8007f68b9c5","62313ad4fc47b900205638b2","623150938e119f002eeadb06","6231512589f9cb003bfb1635","623151eed11e4a0099af3d4e","6231fa08b1e56702f59ebbef","62321835e6510a002a2f2536","623218aabff0bc0027bc0a01","623229ca76ad28007457419c","62327b7ddef83200359f5171","62328d8729a88c0014edcfd0","62328e2d43cb0c00235bf005","62334932d27ea3003abb86c8","62338a7a542f3d009c9c8e88","623392f85ac7a7005843294d","6233ad897a0510009b1b4d3d","6234b80b9d00b005fb3db116","6234f64de0880500f6ec2974","6234fe3424d524004dfe2e2f","623500bda2ca1e009afa20ef","623504cdec22f9006aa78780","6238e500678d600014474a56","62391c8c4e9b6f0073c336ef","62391cc07d490c0119e055c1","62391cd11dc62f0045e8d4c8","62391e16ddb6360087055643","623cf5ead1e7230023986084","623cf66389f559035cf1f8b6","623cf69a94eeb20074772155","623cf8605d2911035f95186c","623cf96b38d70e0013f35433","623e02d386fd5900438bb9bc","623e39c893fe1b0089cd66ca","623e3acd4036fe00579e3632","623e3ae25b149f0013930eb3","623e480ec01e85001478cc33","623e488f6c0859003d9e006c","623e4ec69d6d4c0013959322","623f5b371526110084f6a9a2","6241ccfa4f1109004695dbfb","6241cd32f50ce6030b8a903e","6241cdbcd274de0040718a78","6241ce092a0fea001361ef1d","6241ce21220fe9002a9fbebc","62447f5550902900203ffab5","624481e6ea2f38031e192eef","6244821a10292f0039d75476","62448226352dde0014706ef2","624c68d6f9beeb0305f5d509","624f74c61a742e005125cb91","6259957d31cde30044b886f6","625995d124a07b00a2e686d4","62599629a9d962010cca20e4","625998ca6348d2007165628b","6259b8c07defaf00a4be2549","625d7fc5e1a38e004bf3467d","625ee3390e200700445a2759","625ee3a791e48f0014b22f6f","625f7cf342ed81004c33ac63","62602b8bb0a3d70935c41acc","62614838f938a8020f9bd8f2","62617b80f8cdf0081fbc2de6","6262ca98260a3200272442da","626616eb3628410014431342","62685fa7c239d40021a3ea92","626c306623805800815027d0","62797be14c1eb50082ecafbc","627da57e63f0cf00210ada3d","6281153b1168620045ff4b95","62811547ce06c700520d8ec7","62828c628483fe06d2bc43d8","629a3debcb9f6c001a397bbe","629a6fb6fd6a050087f82e18","629a72d1132ae401bced84b8","629fe9ec06ca62006a4a2f9a","62b4bdfd58633d00afe2b604","62d6d44fcf55a8008aba28ec","6351d57f316659000fe09f28","6376b4a72ac94400030a8ce6","6377e3080b88b50016768b4c","63d3f651107b0205e2628f03","63eac898de1c05001299b803","63f8edaea3e82a004c96d3e9","64c1950df09a1d0058c04f21","6529bbc81e274e0058a8cac5","6571ef88bf411f000f6113b3","65eb8c3b6abab2006963e7d1","666b2cad3c4d2a006164e2c7","66abc47147fd3b003de27706","66eb3b98957a8d0049be591f","66f2ddafcdd0b1004ce14280","6781afe3ae09ee00307185d0"],"project":"61f4a26379257900665c364f","releaseDate":"2022-01-08T00:10:17.445Z","createdAt":"2022-01-08T00:10:17.445Z","__v":16,"updatedAt":"2025-06-06T17:47:48.069Z","apiRegistries":[{"filename":"TP22-APIs.json","uuid":"5mrx5qmbl3lxvs"}],"pdfStatus":"","source":"readme"}],"variableDefaults":[{"source":"","type":"","_id":"682ca92898ad2b00181155d5","name":"readmeOwner","default":"TabaPay"},{"source":"","type":"","_id":"682ca92898ad2b00181155d4","name":"","default":""},{"source":"server","type":"","_id":"682ca92898ad2b00181155d3","name":"FQDN","default":"FQDN"},{"source":"security","type":"http","_id":"682ca92898ad2b00181155d2","name":"bearerAuth","scheme":"bearer"},{"source":"server","type":"","_id":"684329c307fa860010e9f8b5","default":"PORT","file":"TP22-APIs.json","name":"PORT"}],"webhookEnabled":false,"isHubEditable":true},"projectStore":{"data":{"allow_crawlers":"disabled","canonical_url":null,"default_version":{"name":"74473"},"description":"Documentation, APIs, and guides on how to move money with TabaPay.","glossary":[{"_id":"682ca92898ad2b00181155d1","term":"SSL","definition":"Secure Sockets Layer"},{"_id":"682ca92898ad2b00181155d0","term":"ISO","definition":"Independent Sales Organization"},{"_id":"682ca92898ad2b00181155cf","term":"referenceID","definition":"1-15 characters. This value is required in every transaction and must be unique. This value is generated by the client (the caller of the TabaPay API)."},{"_id":"682ca92898ad2b00181155ce","term":"ClientID","definition":"Your unique 22-character string issued during onboarding. This value is used in your URLs for TabaPay APIs. For questions on what string to use, ask TabaPay support."},{"_id":"682ca92898ad2b00181155cd","term":"RejectDuplicateCard","definition":"Required if using Duplicate Card Check *AND* you want to *DISALLOW* any duplicate cards to be added in TabaPay's card vault."},{"_id":"682ca92898ad2b00181155cc","term":"OKToAddDuplicateCard","definition":"Required if using Duplicate Card Check *AND* you want to *ALLOW* account creation using a duplicate card already stored in TabaPay's card vault."},{"_id":"682ca92898ad2b00181155cb","term":"Device","definition":"Represents payment card data. Generated from a PCI-compliant device. In API requests, use the JSON object \"card.device\". Populate \"card.device.id\" with the TabaPay-assigned device ID (ask if you're unsure) and populate \"card.device.blob\" with the data generated from the device."},{"_id":"682ca92898ad2b00181155ca","term":"Payment Card Encrypted","definition":"Refers to the JSON fields: \"keyID\" and \"data\"."},{"_id":"682ca92898ad2b00181155c9","term":"Expiration Date","definition":"TabaPay uses YYYYMM format"},{"_id":"682ca92898ad2b00181155c8","term":"Settlement Account ID","definition":"A unique 22-character string issued during onboarding. For questions on what value to use, ask TabaPay support. Use this value in either: - The \"destinationAccountID\" field (for PULL transactions only) or - The \"sourceAccountID\" field (for PUSH transactions only)"},{"_id":"682ca92898ad2b00181155c7","term":"Destination Account ID","definition":"22-character TabaPay Account ID. For *pull* transactions, use your Settlement Account ID here (issued during onboarding)."},{"_id":"682ca92898ad2b00181155c6","term":"Source Account ID","definition":"22-character TabaPay Account ID. For *push* transactions, use your Settlement Account ID here (issued during onboarding)."},{"_id":"682ca92898ad2b00181155c5","term":"Source Account","definition":"Refers to the JSON object \"sourceAccount\". Incompatible with \"sourceAccountID\"."},{"_id":"682ca92898ad2b00181155c4","term":"Destination Account","definition":"Refers to the JSON object \"destinationAccount\". Incompatible with \"destinationAccountID\""},{"_id":"682ca92898ad2b00181155c3","term":"Corresponding Transaction ID","definition":"The transactionID of the corresponding transaction. For a *pull*, the corresponding *push* transactionID. For a *push*, the corresponding *pull* transactionID. Incompatible with the \"corresponding\" JSON object."},{"_id":"682ca92898ad2b00181155c2","term":"Security Code","definition":"3-4 digits."},{"_id":"682ca92898ad2b00181155c1","term":"Account ID","definition":"22-character TabaPay Account. Returned from Create Account. Can be used in place of bank or card details."},{"_id":"682ca92898ad2b00181155c0","term":"Duplicate Card Check","definition":"Upon using the proper query strings (?RejectDuplicateCard, ?OKToAddDuplicateCard), prevents (or allows) creating an account with a card already stored in TabaPay's Card Vault."},{"_id":"682ca92898ad2b00181155bf","term":"DeleteDuplicateCard","definition":"A Query String for the Delete Account API. Required if using Duplicate Card Check. Do not provide a value for this query string. Just append ?DeleteDuplicateCard to your URL"},{"_id":"682ca92898ad2b00181155be","term":"TabaPay","definition":"Did you know TABA stands for There And Back Again (subtitle to The Hobbit). TABA. Round trip payments. Push and Pull. It all makes sense, doesn't it?!"},{"_id":"682ca92898ad2b00181155bd","term":"Payment Card Not Encrypted","definition":"Card in the clear. Refers to JSON fields within a JSON \"card\" object: \"accountNumber\" and \"expirationDate\" (Documentation will note when to optionally include \"securityCode\")"},{"_id":"682ca92898ad2b00181155bc","term":"Version","definition":"A required URL path parameter within our APIs. The format of the Version is: the letter 'v' followed by the version number (e.g. v1, v2, etc). To see the supported versions for a specific API, refer to the specific API reference page. All APIs require a version in the URL path."},{"_id":"682ca92898ad2b00181155bb","term":"settlementAccountID","definition":"A unique 22-character string issued during onboarding. For questions on what string to use, ask TabaPay support. Use this value in either: \n- The \"destinationAccountID\" field (for pull transactions only) or \n- The \"sourceAccountID\" field (for push transactions only)"},{"_id":"682ca92898ad2b00181155ba","term":"Settlement Account ID","definition":"A unique 22-character string issued during onboarding. For questions on what string to use, ask TabaPay support. Use this value in either: - The \"destinationAccountID\" field (for pull transactions only) or - The \"sourceAccountID\" field (for push transactions only)"},{"_id":"682ca92898ad2b00181155b9","term":"SubClientID","definition":"A 4, 6, or 8-digit value, specifying a program under a client. If you're unsure what value to use, ask TabaPay support. You may need to append this value to your ClientID with the \"_\" character as a separator (i.e. ClientID_SubClientID) within your API URL"},{"_id":"682ca92898ad2b00181155b8","term":"avsID","definition":"Unique ID associated with the verification request for an address of a payment card."},{"_id":"682ca92898ad2b00181155b7","term":"FQDN","definition":"Fully qualified domain name. Replace FQDN with the appropriate domain. Ensure the domain you're using is consistent with the environment you're testing in (sandbox, production, etc.)."},{"_id":"682ca92898ad2b00181155b6","term":"AVS","definition":"Address Verification Service. Used to verify the address of a payment card with the issuing institution."},{"_id":"682ca92898ad2b00181155b5","term":"OFAC","definition":"Office of Foreign Asset Control. Enforces sanctions based on foreign policy and national security goals against specific entities, countries, terrorists, narcotics traffickers, and those involved in weapons proliferation, to help safeguard US security, policy or the economy."},{"_id":"682ca92898ad2b00181155b4","term":"ANI","definition":"Account Name Inquiry (ANI) enables an account cardholder’s name to be checked against the name held by their Issuing bank."},{"_id":"682ca92898ad2b00181155b3","term":"Acquirer","definition":"A financial institution or payment processor that facilitates and processes credit or debit card transactions on behalf of merchants, and plays a role in authorizing and settling transactions, moving funds from the customer's account to the merchant's account along the payments network."},{"_id":"682ca92898ad2b00181155b2","term":"BIN","definition":"Bank Identification Number (BIN) is a unique set of four to eight digits on a payment card."},{"_id":"682ca92898ad2b00181155b1","term":"Beneficiary","definition":"An individual or entity designated to receive funds from a payout, disbursement, or push transaction."},{"_id":"682ca92898ad2b00181155b0","term":"Boarding","definition":"Refers to when a client begins their integration steps to go live with TabaPay."},{"_id":"682ca92898ad2b00181155af","term":"B2C","definition":"Business-to-consumer (B2C) is a type of transaction flow or model where commerce and relationships conducted are between a businesses and a customer."},{"_id":"682ca92898ad2b00181155ae","term":"disbursement","definition":"A payment flow that moves funds from a sender's bank account to a recipient's bank account."},{"_id":"682ca92898ad2b00181155ad","term":"payout","definition":"A transaction that moves funds from a sender's bank account to a recipient's bank account."},{"_id":"682ca92898ad2b00181155ac","term":"Sender","definition":"An individual or entity who is sending funds to a beneficiary."},{"_id":"682ca92898ad2b00181155ab","term":"Capture","definition":"Completing and recording an authorized financial transaction to secure the funds from the customer's account and ensure the payment is successfully processed."},{"_id":"682ca92898ad2b00181155aa","term":"card","definition":"A physical or digital payment device issued by financial institutions to enable a cardholder to access funds in the assigned bank account or line of credit."},{"_id":"682ca92898ad2b00181155a9","term":"chip card","definition":"An EMV card with a microchip that provides a security layer by creating a unique transaction code for each payment for in-person transactions."},{"_id":"682ca92898ad2b00181155a8","term":"digital wallet","definition":"A virtual repository that stores payment methods or funds that allows contactless payments like near-field communication (NFC) technology, electronic transfers."},{"_id":"682ca92898ad2b00181155a7","term":"issuer","definition":"The bank or financial institution that provides a card to the cardholder, authorizing the card's use for transactions and oversees the card's activities."},{"_id":"682ca92898ad2b00181155a6","term":"Me2Me","definition":"Refers to a type of payment flow where an account holder transfers funds from one account to another account they own."},{"_id":"682ca92898ad2b00181155a5","term":"money transmission","definition":"The process of transferring funds from one person or entity to another, often through different financial services or systems. It includes various methods like electronic payments, wire transfers, and physical cash transfers."},{"_id":"682ca92898ad2b00181155a4","term":"payment","definition":"A transfer of funds when a merchant, or individual accepts a transaction for any goods, services, or legal obligation."},{"_id":"682ca92898ad2b00181155a3","term":"pull","definition":"A transaction initiated by the receiving party that draws funds out of a source account into a receiving, or destination bank account."},{"_id":"682ca92898ad2b00181155a2","term":"push","definition":"A transaction initiated by the sending party that credits an account where funds are being sent out of a source account into another account, or card. Also known as a Payout or Disbursement."},{"_id":"682ca92898ad2b00181155a1","term":"Quasi-Cash","definition":"A type of transaction related to the purchase of items that can be directly converted to cash. For example, casino game chips, lottery tickets, cryptocurrency, or money orders."},{"_id":"682ca92898ad2b00181155a0","term":"remittance","definition":"A transfer of money by one person in one country to a person in another country, usually to a family member"},{"_id":"682ca92898ad2b001811559f","term":"settlement","definition":"When a financial transaction completes by crediting the destination bank account."},{"_id":"682ca92898ad2b001811559e","term":"stored credentials","definition":"Payment credentials that have been stored to process future card payments. If you are creating an account for each user to transact using TabaPay’s API, you are storing credentials."},{"_id":"682ca92898ad2b001811559d","term":"transaction","definition":"A transfer of funds from one party to another that is a push or pull and uses many forms including cash, check, electronic funds transfer, credit or debit card transactions, or online payment services."},{"_id":"682ca92898ad2b001811559c","term":"EMV","definition":"Europay, Mastercard, and Visa (EMV) is a physical payment card that contains both a smart chip and a magnetic strip for physical terminals. Also known as a chip card, and are used for modern credit, or debit cards."},{"_id":"682ca92898ad2b001811559b","term":"3DS","definition":"Three-Domain Secure (3DS) is a messaging protocol used to authenticate cardholder information when processing card-not-present (CNP) payments."},{"_id":"682ca92898ad2b001811559a","term":"AFT","definition":"Account Funding Transaction (AFT) is a type of transfer when bank account funds are debited from an account holder to load onto another financial account or service."},{"_id":"682ca92898ad2b0018115599","term":"CVV","definition":"Card Verification Value is a 3 or 4-digit number that adds an extra layer of security, for card-not-present (CNP) transactions, or when you're buying something without swiping your card. Also known CVC, CVV2, CSC."},{"_id":"682ca92898ad2b0018115598","term":"P2P","definition":"Person to Person is a transaction that moves funds from a sender's bank account to a recipient's bank account."},{"_id":"682ca92898ad2b0018115597","term":"RTP","definition":"Real Time Payments is an instant payments platform from The Clearing House that allows financial institutions to clear and settle payments between them in real time."},{"_id":"682ca92898ad2b0018115596","term":"PAN","definition":"Primary Account Number (PAN) is a unique identifier assigned to an individual payment card, such as a credit or debit card."},{"_id":"682ca92898ad2b0018115595","term":"OCT","definition":"Original Credit Transaction (OCT) is a transaction where funds are first transferred into a bank account."},{"_id":"682ca92898ad2b0018115594","term":"B2B","definition":"Business-to-business (B2B) is a type of transaction flow or model where commerce and relationships conducted are between two businesses."},{"_id":"682ca92898ad2b0018115593","term":"Auth","definition":"Authorization (Auth) is the process of when a merchant confirms whether a customer has sufficient funds or credit to complete any card transaction, and when captured the transaction proceeds to settlement, transferring funds from the customer's account to the merchant's account."},{"_id":"682ca92898ad2b0018115592","term":"MIT","definition":"Merchant Initiated Transaction (MIT). Any transaction that is successfully conducted without the active participation of the cardholder."},{"_id":"682ca92898ad2b0018115591","term":"PCI-Token","definition":"Represents a payment card data. Generated from our PCI-compliant iFrame and is used in the JSON \"card\" object in the JSON field \"token\""},{"_id":"682ca92898ad2b0018115590","term":"CNP","definition":"Card-not-present (CNP) is a transaction flow where the customer's card and the merchant are not physically together, but the purchase is made using the card details like online shopping."},{"_id":"682ca92898ad2b001811558f","term":"CID","definition":"Card Identification Number (CID) functions similarly to the Card Verification Value (CVV) for a security layer, and commonly associated with American Express cards, and typically displays a 4-digit code on the front of the card."},{"_id":"682ca92898ad2b001811558e","term":"RPPS","definition":"Remote Payment and Presentment Service (RPPS) is a fully electronic solution for bill payment processing that provides electronic routing, posting, and same day settlement of financial transactions"},{"_id":"682ca92898ad2b001811558d","term":"CSC","definition":"Card Security Code (CSC) refers to all the various security codes such as CVV, CVV2, CVC, and CID, which are required to authenticate card transactions where the card is not physically present."},{"_id":"682ca92898ad2b001811558c","term":"ACH","definition":"Automated Clearing House (ACH) is a financial network in the US that powers electronic fund transfers. ACH transfers can be used to accept payments (pull) or to send payouts (push)."},{"_id":"682ca92898ad2b001811558b","term":"CVC","definition":"Card Verification Code (CVC). This 3-4 numerical code provides a check of the card's validity and is used to prevent fraud in transactions without physical cards. Also known as CVV, CSC, and CID."},{"_id":"682ca92898ad2b001811558a","term":"CDE","definition":"Cardholder Data Environment (CDE) consists of the people, processes and technologies that store, process, or transmit cardholder data or sensitive authentication data."},{"_id":"682ca92898ad2b0018115589","term":"FX","definition":"Foreign Exchange (FX) is the process of converting one currency into another that is used in international, or cross-border transactions."},{"_id":"682ca92898ad2b0018115588","term":"KYB","definition":"Know Your Business (KYB) is the process of verifying an organization and the nature of its business to ensure compliance with regulatory requirements, prevent fraud, and manage risk."},{"_id":"682ca92898ad2b0018115587","term":"KYC","definition":"Know Your Customer (KYC) is the process of verifying the identity of a customer and assessing any risks in doing business with them to help prevent identity theft, financial fraud, money laundering, and terrorist financing."},{"_id":"682ca92898ad2b0018115586","term":"UBO","definition":"Ultimate Beneficial Owner (UBO). The person(s) who owns or controls a legal entity or arrangement, such as a company or a trust."},{"_id":"682ca92898ad2b0018115585","term":"MID","definition":"Merchant Identifier (MID) identifies a specific program, or merchant with TabaPay."},{"_id":"682ca92898ad2b0018115584","term":"VDA","definition":"Visa Direct Account (VDA) sends payouts to bank accounts through the Visa network using its ACH/RTP."},{"_id":"682ca92898ad2b0018115583","term":"VDW","definition":"Visa Direct Wallet (VDW) sends payouts to bank accounts through the Visa network using its ACH/RTP."},{"_id":"682ca92898ad2b0018115582","term":"VMID","definition":"Visa Merchant Identifier (VMID) is a unique id number that represents a merchant transacting using the Visa network."},{"_id":"682ca92898ad2b0018115581","term":"PEP","definition":"Politically Exposed Persons (PEP). Individuals who hold a prominent public position, or those associated with them, which can be susceptible to heightened risks of corruption and bribery."},{"_id":"682ca92898ad2b0018115580","term":"NACHA","definition":"National Automated Clearing House Association (NACHA) is an organization that governs the ACH payments Network to deliver payments education, accreditation and advisory services."},{"_id":"682ca92898ad2b001811557f","term":"NFC","definition":"Near Field Communication is a technology that allows two devices—like a smartphone and a payment terminal—to communicate when they are close together to allow for contactless payment systems, and data transfer."},{"_id":"682ca92898ad2b001811557e","term":"POS","definition":"Point of Sale. The system where customer transactions are processed, and completed."},{"_id":"682ca92898ad2b001811557d","term":"MFA","definition":"Multi-Factor Authentication (MFA) is a security process that requires users to provide two or more verification factors to access a resource, enhancing protection against unauthorized access."},{"_id":"682ca92898ad2b001811557c","term":"FDIC","definition":"Federal Deposit Insurance Corporation (FDIC) is a United States government agency that provides deposit insurance to account holders in U.S. banks and savings institutions. The FDIC's insurance protects up to $250,000 per depositor, per insured bank, for each account ownership category in the event of a bank failure."},{"_id":"682ca92898ad2b001811557b","term":"NCUA","definition":"Federal agency that regulates and insures deposits at federal credit unions, similar to the FDIC but for credit unions."},{"_id":"682ca92898ad2b001811557a","term":"SAML","definition":"SAML (Security Assertion Markup Language) is a standard for exchanging authentication and authorization data between an identity provider and a service provider, facilitating single sign-on."},{"_id":"682ca92898ad2b0018115579","term":"AML","definition":"AML (Anti-Money Laundering). Laws and procedures designed to prevent criminals from disguising illegal proceeds as legitimate income."},{"_id":"682ca92898ad2b0018115578","term":"BSA","definition":"BSA (Bank Secrecy Act) is a U.S. law that requires financial institutions to assist government agencies in detecting and preventing money laundering."},{"_id":"682ca92898ad2b0018115577","term":"ACS","definition":"ACS (Access Control Server) is a network server used for making access control decisions and enforcing security policies."},{"_id":"682ca92898ad2b0018115576","term":"IdP","definition":"IdP (Identity Provider) is a system that manages identity information and provides authentication services within a federated identity setup."},{"_id":"682ca92898ad2b0018115575","term":"Sponsor Bank","definition":"A bank that enables payment processors and Independent Sales Organizations (ISOs) to access major card networks like Visa and MasterCard for transaction processing."},{"_id":"682ca92898ad2b0018115574","term":"CIP","definition":"Customer Information Program (CIP) mandates U.S. financial institutions to verify the identities of customers opening accounts, collecting details like name, address, and ID number to prevent financial crimes. Institutions must also check names against government watch lists."},{"_id":"682ca92898ad2b0018115573","term":"MSB","definition":"Money Service Business (MSB) is a company that provides financial services like money transfers, currency exchange, and payment processing, that serve as accessible financial points for consumers, especially those who may not have access to traditional banking services."},{"_id":"682ca92898ad2b0018115572","term":"MCC","definition":"Merchant Category Codes (MCC). Four-digit numbers used by credit card networks to classify businesses based on the type of goods or services they provide, affecting rewards, tax reporting, and fraud detection."},{"_id":"682ca92898ad2b0018115571","term":"FTPS","definition":"FTPS (File Transfer Protocol Secure) is an extension of File Transfer Protocol (FTP) that uses Secure Sockets Layer (SSL)/Transport Layer Security (TLS) to encrypt file transfers, operating on port 990 990 for a constantly secure connection, or port 21 where security is confirmed at the start of a connection."},{"_id":"682ca92898ad2b0018115570","term":"PCI","definition":"Payment Card Industry (PCI) Standards. A set of standards that participants in the payment card ecosystem must follow to help ensure the safety of payment card data"},{"_id":"682ca92898ad2b001811556f","term":"PCI-DSS","definition":"Payment Card Industry Data Security Standards (PCI-DSS), or PCI. A set of standards that participants in the payment card ecosystem must follow to help ensure the safety of payment card data"},{"_id":"682ca92898ad2b001811556e","term":"CCD","definition":"Corporate Credit or Debit"},{"_id":"682ca92898ad2b001811556d","term":"PPD","definition":"Prearranged Payment and Deposit"},{"_id":"682ca92898ad2b001811556c","term":"WEB","definition":"Internet/Mobile Initiated Entry"},{"_id":"682ca92898ad2b001811556b","term":"chargeback","definition":"An outcome of a disputed transaction initiated by the cardholder, transferring funds back from the merchant to the cardholder."},{"_id":"682ca92898ad2b001811556a","term":"PAR","definition":"Payment Account Reference (PAR) is a 29-character unique identifier linked to a cardholder's Payment Account Number (PAN) and related tokens, used in place of sensitive data to facilitate consumer identification across payment systems."},{"_id":"682ca92898ad2b0018115569","term":"SAQ","definition":"Self-Assessment Questionnaire (SAQ) is a validation tool intended to assist merchants and service providers report the results of their PCI DSS compliance assessment. There are different question program specific questionnaires for merchants (e.g. A, D)"},{"_id":"682ca92898ad2b0018115568","term":"Webhooks","definition":"Automated messages sent from TabaPay when something happens, so that different systems are in sync without manual input."},{"_id":"682ca92898ad2b0018115567","term":"MTL","definition":"Money Transmitter License is a state regulated license a businesses to provide money transmission services, including transferring funds between parties, currency exchange, and issuing or selling payment instruments."},{"_id":"682ca92898ad2b0018115566","term":"CAVV","definition":"Cardholder Authentication Verification Value is a value generated by the card issuer during the authentication of a cardholder in an online transaction. It is part of the 3-D Secure (3DS) protocol (verified by the card network) and helps confirm that the existing cardholder is authorized to use the card."},{"_id":"682ca92898ad2b0018115565","term":"cardholder","definition":"A cardholder is an individual to whom a payment card (credit, debit, or prepaid card) is issued. The cardholder is authorized to use the card for making transactions and is responsible for any charges incurred on the card."},{"_id":"682ca92898ad2b0018115564","term":"enabled","definition":"Refers to turning on a product or feature for an existing TabaPay client using any required configurations."},{"_id":"682ca92898ad2b0018115563","term":"TAVV","definition":"Transaction Authentication Verification Value is similar to CAVV and is used in the context of the 3-D Secure (3DS) protocol for card authentication. It is a value provided by the card issuer to verify the authenticity of a transaction, ensuring that it is being conducted by the legitimate cardholder."},{"_id":"682ca92898ad2b0018115562","term":"HTTPS","definition":"Hypertext Transfer Protocol Secure is an extension of HTTP that uses encryption (typically via SSL/TLS) to secure data transmitted over the web, helping protect against eavesdropping, tampering, and intercepting attacks."},{"_id":"682ca92898ad2b0018115561","term":"cryptogram","definition":"Unique encrypted codes generated at each transaction to authenticate the transaction and help ensure its security."},{"_id":"682ca92898ad2b0018115560","term":"cardholder","definition":"An individual to whom a payment card (credit, debit, or prepaid card) is issued, authorized to use the card for card transactions."},{"_id":"682ca92898ad2b001811555f","term":"C2B","definition":"Consumer to business is a type of transaction flow where consumers provide products or services to businesses. For example a graphic designer, influencer, or crowdsourcing."},{"_id":"682ca92898ad2b001811555e","term":"B2C","definition":"Business to consumer is a type of transaction flow where businesses sell products or services directly to consumers."},{"_id":"682ca92898ad2b001811555d","term":"A2A","definition":"Account to Account is a type of transaction flow involving transfers of funds between two accounts held by the same or different individuals or entities."},{"_id":"682ca92898ad2b001811555c","term":"G2C","definition":"Government to Citizen is a type of transaction flow type involving interactions between government entities and citizens. For example: social security benefits, unemployment benefits, and healthcare services."},{"_id":"682ca92898ad2b001811555b","term":"SAAS","definition":"Software as a Service is a cloud-based solution where applications are hosted by a provider and accessed by users over the internet, allowing accessibility, automatic updates, scalability, and reducing the need for on-premises software and hardware."},{"_id":"682ca92898ad2b001811555a","term":"TCH","definition":"The Clearing House is a banking association that operates key payment systems like ACH for electronic payments, and RTP for instant payments, ensuring secure and efficient processing in the U.S. financial system."},{"_id":"682ca92898ad2b0018115559","term":"ODFI","definition":"Originating Depository Financial Institution is the bank or financial institution that initiates an ACH (Automated Clearing House) transaction."},{"_id":"682ca92898ad2b0018115558","term":"RDFI","definition":"Receiving Depository Financial Institution is the bank or financial institution that receives ACH entries from the ACH network and posts them to the accounts of the intended recipients."},{"_id":"682ca92898ad2b0018115557","term":"DDA","definition":"Demand Deposit Account is a bank account from which funds can be withdrawn at any time without any advance notice, commonly known as a checking account."},{"_id":"682ca92898ad2b0018115556","term":"PGP","definition":"Pretty Good Privacy is an encryption program that provides cryptographic privacy and authentication for data communication. PGP is used for securing emails, files, and directories."},{"_id":"682ca92898ad2b0018115555","term":"SFTP","definition":"Secure File Transfer Protocol securely transfers files over a network, encrypting both commands and data, typically via Transmission Control Protocol (TCP) port 22."},{"_id":"682ca92898ad2b0018115554","term":"CVV2","definition":"Card Verification Value is the static code printed on a card used to verify card possession in card-not-present transactions."},{"_id":"682ca92898ad2b0018115553","term":"SCA","definition":"Strong Customer Authentication is a set of security requirements under Payment Services Directive (PSD2) that requires multi-factor authentication for electronic payments to enhance security and reduce fraud."},{"_id":"682ca92898ad2b0018115552","term":"PSD2","definition":"Revised Payment Services Directive) is a European Union regulation that enhances consumer protection, promotes innovation, and improves security in electronic payments involving Strong Customer Authentication (SCA) practices."},{"_id":"682ca92898ad2b0018115551","term":"IIN","definition":"A unique identifier generated by TabaPay Clients for every transaction."},{"_id":"682ca92898ad2b0018115550","term":"RT AU","definition":"Real Time Account Updater enables real-time updates on payment card credentials for Merchant-Initiated Transactions MIT, for updated customer card information to reduce declines and enhance the cardholder experience."},{"_id":"682ca92898ad2b001811554f","term":"Intl","definition":"international"},{"_id":"682ca92898ad2b001811554e","term":"MAC","definition":"Merchant Advice Codes are returned in Create Transaction to help with key re-attempt decisions for the client."},{"_id":"682ca92898ad2b001811554d","term":"ECI","definition":"Electronic Commerce Indicator indicates the type and security level of a 3DS transaction. It helps payment processors and issuers identify and handle transactions appropriately based on their security status."},{"_id":"682ca92898ad2b001811554c","term":"UAT","definition":"User Acceptance Testing"},{"_id":"682ca92898ad2b001811554b","term":"PII","definition":"Personally Identifiable Information is any information that can be used to distinguish or trace a person's identity, such as their name, Social Security number, biometric records, or other data linked to them."},{"_id":"682ca92898ad2b001811554a","term":"Bearer Token","definition":"A type of token used for authorization in making a successful API request. This unique credential acts as a key to be able to access a protected resource."},{"_id":"682ca92898ad2b0018115549","term":"COF","definition":"Card on File refers to storing a customer’s card details on a digital platform for future transactions, eliminating the need to re-enter payment information."},{"_id":"682ca92898ad2b0018115548","term":"JWT","definition":"JSON Web Token is a secure, signed token used to transmit information between parties, often for authentication and authorization."},{"_id":"682ca92898ad2b0018115547","term":"RfP","definition":"Request for Payment is a digital request from a receiver to a sender, specifying the amount and expiration date. It streamlines and secures financial transactions by automating Real-time payment processes."},{"_id":"682ca92898ad2b0018115546","term":"FedNow","definition":"A real-time payment service by the U.S. Federal Reserve that enables instant, 24/7/365 interbank payments and settlements, allowing individuals and businesses to transfer funds in real time."},{"_id":"682ca92898ad2b0018115545","term":"redundancy","definition":"In payments or networking, refers to duplicate components or payment systems that can seamlessly take over if a primary component fails."},{"_id":"682ca92898ad2b0018115544","term":"token","definition":"A unique identifier for sensitive information, used to protect data while passing information."},{"_id":"682ca92898ad2b0018115543","term":"WAF","definition":"Web Application Firewall"},{"_id":"682ca92898ad2b0018115542","term":"IDS","definition":"Intrusion Detection System"},{"_id":"682ca92898ad2b0018115541","term":"IPS","definition":"Intrusion Prevention System"},{"_id":"682ca92898ad2b0018115540","term":"AOC","definition":"Attestation of Compliance is an affirmation from an independent party that an entity meets certain regulatory requirements. The attestation is often issued in the form of a report on an independent review or risk assessment conducted by a qualified third party."},{"_id":"682ca92898ad2b001811553f","term":"compact JSON","definition":"All newlines/tabs/extra spaces in between JSON fields and objects are omitted {\"accounts\":{\"sourceAccountID\":\"SettlementAccountID_22\"..."},{"_id":"682ca92898ad2b001811553e","term":"ROC","definition":"Report on Compliance is a third party assessment of an organization's security against a set of requirements"},{"_id":"682ca92898ad2b001811553d","term":"Neobank","definition":"An online financial institution that offers banking services like accounts, but without traditional physical brick and mortar branches."},{"_id":"682ca92898ad2b001811553c","term":"brokerage account","definition":"An account dedicated for investments that allows you to buy stocks, bonds, mutual funds, and ETFs."},{"_id":"682ca92898ad2b001811553b","term":"CIT","definition":"Cardholder Initiated Transaction (CIT) is a transaction where the cardholder actively participates or make a request at the time of purchase. Also referred to as Consumer Initiated Transaction, or Customer Initiated Transaction."},{"_id":"682ca92898ad2b001811553a","term":"split-tender","definition":"When a customer divides, or \"splits\" up the purchase with multiple payment methods."},{"_id":"682ca92898ad2b0018115539","term":"Partial Auth","definition":"A service to authorize a payment acceptance (pull) transaction including partial funds to avoid a non-sufficient funds decline (Card Network Response Code 51)."},{"_id":"682ca92898ad2b0018115538","term":"TabaPay Token","definition":"Stored bank accounts and payment cards that have been tokenized in TabaPay's vault to safely pass in TabaPay's Unified API including the Create Transaction Request."},{"_id":"682ca92898ad2b0018115537","term":"KB","definition":"Kilobyte"},{"_id":"682ca92898ad2b0018115536","term":"XB","definition":"Cross-border"},{"_id":"682ca92898ad2b0018115535","term":"NSF","definition":"Non-sufficient funds"},{"_id":"682ca92898ad2b0018115534","term":"MC","definition":"Mastercard"},{"_id":"682ca92898ad2b0018115533","term":"MOTO","definition":"Mail Order Telephone Order"},{"_id":"682ca92898ad2b0018115532","term":"type:push","definition":"This refers to type field in the Create Transaction request that indicates the transaction is a payout (push) instead of a payment (pull)."},{"_id":"682ca92898ad2b0018115531","term":"API","definition":"Application Programing Interface refers is way for software applications to communicate with each other through specified data formats to request and exchange information."},{"_id":"682ca92898ad2b0018115530","term":"type:pull","definition":"This refers to type field in the Create Transaction request that indicates the transaction is a payment (pull) instead of a payout (push)."},{"_id":"682ca92898ad2b001811552f","term":"Unified API","definition":"TabaPay's API-first design allows a developer-friendly integration with a single connection to multiple networks, banking partners, and countries to accept payments, and payout funds."},{"_id":"682ca92898ad2b001811552e","term":"body parameters","definition":"Describe the data included in an API request. Depending on the use case, different body params will be included (e.g. a subscription will require the recurringData object and recurring field, but a single transaction may not)."},{"_id":"682ca92898ad2b001811552d","term":"RSA","definition":"Rivest-Shamir-Adleman, or RSA named after the inventors, is a widely used encryption that protects card data passed in the TabaPay API."},{"_id":"682ca92898ad2b001811552c","term":"OTPP","definition":"One-Time Payment Portal generated from the TransactionRequest API."},{"_id":"682ca92898ad2b001811552b","term":"transactionID","definition":"The unique 22-character string that identifies a specific transaction. Found in the Create Transaction Response."},{"_id":"682ca92898ad2b001811552a","term":"RC","definition":"Response Code. Also known as Card Network Response Codes, or Iso Network Codes."},{"_id":"682ca92898ad2b0018115529","term":"FI","definition":"Financial Institution"},{"_id":"682ca92898ad2b0018115528","term":"IIN","definition":"Issuer Identification Number"},{"_id":"682ca92898ad2b0018115527","term":"accountID","definition":"22-character TabaPay Account. Returned from Create Account. Can be used in place of bank or card details."},{"_id":"682ca92898ad2b0018115526","term":"NVP","definition":"Name-Value Pair"},{"_id":"682ca92898ad2b0018115525","term":"OWASP","definition":"Open Worldwide Application Security Project"},{"_id":"682ca92898ad2b0018115524","term":"SOC","definition":"System and Organization Controls"}],"homepage_url":"https://tabapay.com","id":"61f4a26379257900665c364f","name":"TabaPay Developers","parent":null,"redirects":[],"sitemap":"disabled","llms_txt":"disabled","subdomain":"beginbagend","suggested_edits":"enabled","uri":"/projects/me","variable_defaults":[{"name":"readmeOwner","default":"TabaPay","source":"","type":"","id":"682ca92898ad2b00181155d5"},{"name":"","default":"","source":"","type":"","id":"682ca92898ad2b00181155d4"},{"name":"FQDN","default":"FQDN","source":"server","type":"","id":"682ca92898ad2b00181155d3"},{"name":"bearerAuth","scheme":"bearer","source":"security","type":"http","id":"682ca92898ad2b00181155d2"},{"name":"PORT","default":"PORT","source":"server","type":"","id":"684329c307fa860010e9f8b5"}],"webhooks":[],"api_designer":{"allow_editing":"enabled"},"custom_login":{"login_url":null,"logout_url":null},"features":{"mdx":"enabled"},"mcp":{},"onboarding_completed":{"api":true,"appearance":true,"documentation":true,"domain":false,"jwt":false,"logs":true,"metricsSDK":false},"pages":{"not_found":null},"privacy":{"openapi":"admin","password":null,"view":"public"},"refactored":{"status":"enabled","migrated":"successful"},"seo":{"overwrite_title_tag":"disabled"},"plan":{"type":"enterprise","grace_period":{"enabled":false,"end_date":null},"trial":{"expired":false,"end_date":"2022-02-12T02:11:47.236Z"}},"reference":{"api_sdk_snippets":"enabled","defaults":"always_use","json_editor":"enabled","oauth_flows":"disabled","request_history":"disabled","response_examples":"expanded","response_schemas":"expanded","sdk_snippets":{"external":"disabled"}},"health_check":{"provider":"none","settings":{"manual":{"status":"down","url":null},"statuspage":{"id":null}}},"integrations":{"aws":{"readme_webhook_login":{"region":null,"external_id":null,"role_arn":null,"usage_plan_id":null}},"bing":{"verify":null},"google":{"analytics":null,"site_verification":null},"heap":{"id":null},"koala":{"key":null},"localize":{"key":null},"postman":{"key":null,"client_id":null,"client_secret":null},"recaptcha":{"site_key":"6Lesa1kqAAAAABjyu9XXaqnA6qh8bpVeupxvagan","secret_key":null},"segment":{"key":null,"domain":null},"speakeasy":{"key":null,"spec_url":null},"stainless":{"key":null,"name":null},"typekit":{"key":null},"zendesk":{"subdomain":null},"intercom":{"app_id":null,"secure_mode":{"key":null,"email_only":false}}},"permissions":{"appearance":{"private_label":"enabled","custom_code":{"css":"enabled","html":"enabled","js":"enabled"}},"branches":{"merge":{"admin":true}}},"appearance":{"brand":{"primary_color":"#10078F","link_color":"#05d7b0","theme":"system"},"changelog":{"layout":"continuous","show_author":false,"show_exact_date":false},"layout":{"full_width":"disabled","style":"classic"},"markdown":{"callouts":{"icon_font":"emojis"}},"table_of_contents":"enabled","whats_next_label":null,"footer":{"readme_logo":"show"},"logo":{"size":"default","dark_mode":{"uri":null,"url":"https://files.readme.io/c4937cc-small-logo-on-dark-blue2x.png","name":"logo-on-dark-blue@2x.png","width":155,"height":80,"color":"#62d6c3","links":{"original_url":"https://files.readme.io/3183c7c-logo-on-dark-blue2x.png"}},"main":{"uri":null,"url":"https://files.readme.io/ff30ebf-small-logo-on-white2x.png","name":"logo-on-white@2x.png","width":155,"height":80,"color":"#1781a0","links":{"original_url":"https://files.readme.io/4090953-logo-on-white2x.png"}},"favicon":{"uri":null,"url":"https://files.readme.io/01e2510-small-favicon-removebg-preview.png","name":"favicon-removebg-preview.png","width":34,"height":32,"color":"#5bb2b4","links":{"original_url":"https://files.readme.io/e43a8fc-favicon-removebg-preview.png"}}},"custom_code":{"css":"body {\n margin: 0;\n padding: 0;\n color: #212529;\n font-family: GothamPro;\n}\n\na {\n color: #10078f;\n font-weight: bolder;\n}\n\na:hover {\n color: #05d7b0;\n cursor: pointer\n}\n\nh2 {\n font-family: GothamPro-Medium;\n font-size: 28px;\n font-weight: 500;\n}\n\nh3 {\n font-family: GothamPro-Medium;\n font-size: 18px;\n}\n\ntable {\n margin-top: 25px;\n border-collapse: collapse;\n /*border-collapse: separate !important;*/\n border: none;\n}\n\nth {\n color: #10078F;\n background-color: #05d7b0;\n text-align: center;\n}\n\n/* For rounded corners */\n\nth:first-of-type {\n border-top-left-radius: 10px;\n}\nth:last-of-type {\n border-top-right-radius: 10px;\n}\ntr:last-of-type td:first-of-type {\n border-bottom-left-radius: 10px;\n}\ntr:last-of-type td:last-of-type {\n border-bottom-right-radius: 10px;\n}\n\ntr,\ntd {\n padding: 5px 10px;\n background: #929ag7; \n text-align: left;\n}\n\n/*[data-color-mode=\"light\"] tr:hover td {\n background: #e2e4ea;\n}*/\n\n/*Table Light Mode Dark Mode Hover \n[data-color-mode=\"dark\"] tr:hover {\n background:;\n}*/\n\n[data-color-mode=\"dark\"] tr:hover a {\n color: #10078F;\n}\n\n/*Markdown Table Top Green Color*/\n.markdown-body .rdmd-table table:only-child thead th {\n background: #05D7B0;\n}\n\n/*Logos */\n\n#footer-logo {\n width: 136px;\n height: 70px;\n margin-bottom: 92px;\n}\n\n.logo {\n background: url(\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5NyIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDk3IDUwIj4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYmFoa2ViZndyYSIgeDE9IjUwJSIgeDI9IjUwJSIgeTE9IjAlIiB5Mj0iMTAwJSI+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRkYiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZGIi8+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgICAgICA8bGluZWFyR3JhZGllbnQgaWQ9ImNnbDM1c3VxOGIiIHgxPSIxLjc5NiUiIHgyPSI1MCUiIHkxPSIwJSIgeTI9IjAlIj4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzEwMDc4RiIvPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwNUQ3QjAiLz4KICAgICAgICA8L2xpbmVhckdyYWRpZW50PgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iN3A0YXg3OTA3YyIgeDE9IjIuNzU1JSIgeDI9IjUwJSIgeTE9IjAlIiB5Mj0iMCUiPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMTAwNzhGIi8+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzA1RDdCMCIvPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8L2RlZnM+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgICAgIDxwYXRoIGZpbGw9InVybCgjYmFoa2ViZndyYSkiIGQ9Ik03LjA1NiAxNS43NXYtMi41MUg1LjY3MWMtLjkzOCAwLTEuMjU4LS4zNDEtMS4yNTgtMS4xMjlWNi40MDdoMi42NDNWMy45NTlINC40MTNWMEgxLjQwN3YzLjk1OUgwdjIuNDQ4aDEuNDA3djUuNjgzYzAgMi43MDMgMS41MTQgMy42NiAzLjc3MyAzLjY2aDEuODc2eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQwIC0xOCkgdHJhbnNsYXRlKDQwIDE4KSB0cmFuc2xhdGUoMCAxMy42MzYpIi8+CiAgICAgICAgICAgICAgICAgICAgICAgIDxwYXRoIGZpbGw9IiNGRkYiIGQ9Ik0yNi42NDcgMHY1LjY4M2MuNzI1LTEuMDg1IDIuMTEtMS45MTYgMy45MDEtMS45MTYgMy4wMjggMCA1LjM5NCAyLjM2MyA1LjM5NCA2LjA0NSAwIDMuNjgzLTIuMzY2IDYuMTMtNS4zOTQgNi4xMy0xLjg1NCAwLTMuMTc2LS44NTEtMy45LTEuODczdjEuNjgyaC0yLjk4NVYwaDIuOTg0em0zLjExMyA2LjM4NWMtMS42IDAtMy4xMTMgMS4yMzUtMy4xMTMgMy40NyAwIDIuMjM1IDEuNTE0IDMuNDcgMy4xMTMgMy40NyAxLjYyIDAgMy4xMzMtMS4yNzggMy4xMzMtMy41MTNTMzEuMzggNi4zODUgMjkuNzYgNi4zODV6TTQyLjc0MiAzLjc2N2MxLjg5OCAwIDMuMTk4Ljg5NCAzLjkwMSAxLjg3M1YzLjk2aDMuMDA2djExLjc5MmgtMy4wMDZ2LTEuNzI0Yy0uNzAzIDEuMDIxLTIuMDQ2IDEuOTE1LTMuOTIyIDEuOTE1LTIuOTg1IDAtNS4zNzItMi40NDctNS4zNzItNi4xMyAwLTMuNjgyIDIuMzg3LTYuMDQ1IDUuMzkzLTYuMDQ1em0uNzY4IDIuNjE4Yy0xLjYgMC0zLjExMyAxLjE5Mi0zLjExMyAzLjQyNyAwIDIuMjM1IDEuNTE0IDMuNTEyIDMuMTEzIDMuNTEyIDEuNjQxIDAgMy4xMzMtMS4yMzQgMy4xMzMtMy40NyAwLTIuMjM0LTEuNDkyLTMuNDY5LTMuMTMzLTMuNDY5ek0xMy45MiAzLjc2N2MxLjg5OCAwIDMuMTk4Ljg5NCAzLjkwMiAxLjg3M1YzLjk2aDMuMDA2djExLjc5MmgtMy4wMDZ2LTEuNzI0Yy0uNzA0IDEuMDIxLTIuMDQ3IDEuOTE1LTMuOTIzIDEuOTE1LTIuOTg0IDAtNS4zNzItMi40NDctNS4zNzItNi4xMyAwLTMuNjgyIDIuMzg4LTYuMDQ1IDUuMzk0LTYuMDQ1em0uNzY4IDIuNjE4Yy0xLjU5OSAwLTMuMTEyIDEuMTkyLTMuMTEyIDMuNDI3IDAgMi4yMzUgMS41MTMgMy41MTIgMy4xMTIgMy41MTIgMS42NDEgMCAzLjEzNC0xLjIzNCAzLjEzNC0zLjQ3IDAtMi4yMzQtMS40OTMtMy40NjktMy4xMzQtMy40Njl6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDAgLTE4KSB0cmFuc2xhdGUoNDAgMTgpIHRyYW5zbGF0ZSgwIDEzLjYzNikiLz4KICAgICAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZmlsbD0iIzA1RDdCMCIgZD0iTTk0LjUyMyAzLjcxOUw4Ny42NjEgMTkuODM1IDg0LjM4NyAxOS44MzUgODYuMjUxIDE1LjYxNCA4MS4zMTUgMy43MTkgODQuODA2IDMuNzE5IDg3Ljk4NiAxMi4yNDQgOTEuMjEgMy43MTl6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDAgLTE4KSB0cmFuc2xhdGUoNDAgMTgpIHRyYW5zbGF0ZSgwIDEzLjYzNikiLz4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBmaWxsPSIjMDBEN0IwIiBkPSJNNzIuMjk4IDMuNzE5YzEuOTEgMCAzLjIxOS45MSAzLjkyNyAxLjkwN1YzLjkxNGgzLjAyNnYxMi4wMDdoLTMuMDI2di0xLjc1NmMtLjcwOCAxLjA0LTIuMDYgMS45NS0zLjk0OSAxLjk1LTMuMDA0IDAtNS40MDgtMi40OTItNS40MDgtNi4yNDEgMC0zLjc1IDIuNDA0LTYuMTU1IDUuNDMtNi4xNTV6bS43NzIgMi42NjZjLTEuNjEgMC0zLjEzMyAxLjIxMy0zLjEzMyAzLjQ4OXMxLjUyNCAzLjU3NiAzLjEzMyAzLjU3NmMxLjY1MyAwIDMuMTU1LTEuMjU3IDMuMTU1LTMuNTMzIDAtMi4yNzUtMS41MDItMy41MzItMy4xNTUtMy41MzJ6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDAgLTE4KSB0cmFuc2xhdGUoNDAgMTgpIHRyYW5zbGF0ZSgwIDEzLjYzNikiLz4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBmaWxsPSIjMDBEN0IwIiBkPSJNNTUuNDMxIDMuNzE5djUuNzQ1Yy43MzEtMS4wOTcgMi4xMjgtMS45MzcgMy45MzQtMS45MzcgMy4wNTMgMCA1LjQ0IDIuMzg5IDUuNDQgNi4xMTFzLTIuMzg3IDYuMTk3LTUuNDQgNi4xOTdjLTEuODcgMC0zLjIwMy0uODYtMy45MzQtMS44OTR2MS42OWgtMy4wMVYzLjcxOWgzLjAxem0zLjEzOSA2LjQ1NWMtMS42MTMgMC0zLjEzOSAxLjI0OC0zLjEzOSAzLjUwNyAwIDIuMjYgMS41MjYgMy41MDcgMy4xMzkgMy41MDcgMS42MzQgMCAzLjE2LTEuMjkgMy4xNi0zLjU1cy0xLjUyNi0zLjQ2NC0zLjE2LTMuNDY0eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQwIC0xOCkgdHJhbnNsYXRlKDQwIDE4KSB0cmFuc2xhdGUoMCAxMy42MzYpIG1hdHJpeCgxIDAgMCAtMSAwIDIzLjU1NCkiLz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgICAgIDxwYXRoIGZpbGw9InVybCgjY2dsMzVzdXE4YikiIGQ9Ik0yMS42My4yMDdjOC41OCAwIDE2LjU0NyAzLjU1NiAyMS41MDQgMTAuMzY4LjQ3LjY0Ni4yNTcgMi4xMDctLjM4OCAyLjU3Ny0uNjQ1LjQ3LTIuMTUzLjQ0Ni0yLjYyMi0uMkMzNS43MDUgNi44OCAyOS4yNzcgMy4xIDIxLjYzIDMuMWMtNy42MDIgMC0xNC41OTggMy42Mi0xOS4wMjMgOS42MzQtLjQ3My42NDMtMS4zNzguNzgtMi4wMi4zMDctLjY0My0uNDc0LS43OC0xLjM4LS4zMDctMi4wMjJDNS4yNDUgNC4yNyAxMy4xMDEuMjA3IDIxLjYzMS4yMDd6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDAgLTE4KSB0cmFuc2xhdGUoNDAgMTgpIHRyYW5zbGF0ZSg1MS4zOSkiLz4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBmaWxsPSJ1cmwoIzdwNGF4NzkwN2MpIiBkPSJNMjMuMjgyIDM2LjU3YzguNTggMCAxNi41NDYgMy41NTcgMjEuNTAzIDEwLjM2OS40Ny42NDYuMjU3IDIuMTA3LS4zODggMi41NzctLjY0NS40Ny0yLjE1My40NDUtMi42MjItLjItNC40MTktNi4wNzMtMTAuODQ3LTkuODUzLTE4LjQ5My05Ljg1My03LjYwMiAwLTE0LjU5OCAzLjYyLTE5LjAyMyA5LjYzNC0uNDczLjY0My0xLjM3OC43OC0yLjAyLjMwNi0uNjQyLS40NzMtLjc4LTEuMzc5LS4zMDYtMi4wMjIgNC45NjMtNi43NDYgMTIuODE5LTEwLjgxIDIxLjM0OS0xMC44MXoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00MCAtMTgpIHRyYW5zbGF0ZSg0MCAxOCkgdHJhbnNsYXRlKDUxLjM5KSByb3RhdGUoMTgwIDIzLjM0NSA0My4yMDQpIi8+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPgo=\") no-repeat;\n background-size: cover;\n height: 50px;\n width: auto;\n}\n\n/*Increase size of top left logo */\n.Header-logo-img3YvV4lcGKkeb{\n height:48px;\n width:auto;\n \n}\n\n.logo-pci {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAacAAACoCAMAAABzENHLAAAC61BMVEUAAAAAkpUAj5EAjY8Ai4wAi48Ai40Aj5AAjI8Aj5AAio4AkI8Ai44AiY0Aj5AAjo8Aj48Aj48Ai40Ai40Aio4Aj48Aj48Aj48Aj48Aj5AAio7W1dXh4eEAj5AAj5AAj48Aj48Aj5AAj48Aj48Aj48Aj48Bj48Aj48Aj4/k4uMAkJAAj48Aj5AAj5AAfojX1tUAj4/a2NnY19YAfokAfYgAfogAj48Aj5DX1tb///8BfokAj5Da2dkAj48AjpDu7e3X19YAfokAfogAfogAfogAfogAfogAf4kAfojZ2dkAfYjY1tYAfokAkZDl4+P////////////X19eUx8vY19bX1tYAfojX1tbX1tbX1tYAfon///8Afoj+/v4AfYjX1tXX1dXY19b////Z2Nj////////X19b///+Qt7vX1tbY19f////W1Nb///8AgYz////////X1tX////////////////////////s9fW019oAfoj///8Aj48AyljX1tUAfIYAkZEAlJX+//73+/sAlpYAf4kAk5MAyVXa2NcAgIoAeYOm0dT8/v0/m6MAgYwTipUAdoHb2dj5/Puy1dgxl58NhI0AmJkAg40FgIrd3NsfjJX1+fne2dgAhI8YiJEAyFHg394Sho/V6OkJgovw9vfc6+yKv8QokpsdipMKy10Ey1rl8fK72t30/Peu0tbu+vIp0nPr9PTf7u/L4+Xk4+NdqrGH4qxHoakAhpAfz2q+ysyPxMh3uL43maEukprT9N/i29mZyc5lrrUojpYUzWXo+e7R09NttLo7lZ0ikJnJ8tnM0dGAvMJ84KUNiJEQzGCpwsSa5riQ5bJB1YDE3+Kau75j3JekzdFPpKtHm6Ju3Zy/79Kr68SHtLdQ2Izf9+jH4uTFzs60xsih6L5SqrEAm5tJ1oUy0ndvqq9Y2ZDP5ui37Mtdo6n08/Oiv8FXp65SnqXv7u+gys52rbJmpqt/sLQAnZ2y7swAnp4cOohpAAAAenRSTlMAAwoGDhYR+SP1Gos1HtZcTp8sKAiDkuNW5jD+BO7FdNCz327qmny6rAzywKbL35tiEe7AsKRnSij469ozRTwV9suOaVT684FJHNTNdUAI8erh1f3lrJl6WblfVkFvOohuY0hI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\");\n background-repeat: no-repeat;\n height: 56px;\n width: 141px;\n}\n\n/*Search Button on Dev Portal Landing Page*/\n .rm-LandingPageHeader .rm-SearchToggle { width: 250px; }\n\n\n.LandingPageHeader20SNhBZ58Jy5 {\n padding: 20px 20px 40px;\n}\n\n.cardNumber {\n padding-right: 1em;\n}\n\n#snackbar {\n visibility: hidden;\n min-width: 250px;\n margin-left: -125px;\n background-color: #333;\n color: #fff;\n text-align: center;\n border-radius: 2px;\n padding: 16px;\n position: fixed;\n z-index: 1;\n left: 50%;\n bottom: 30px;\n font-size: 17px;\n}\n\n#snackbar.show {\n visibility: visible;\n -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;\n animation: fadein 0.5s, fadeout 0.5s 2.5s;\n}\n\n@-webkit-keyframes fadein {\n from {bottom: 0; opacity: 0;} \n to {bottom: 30px; opacity: 1;}\n}\n\n@keyframes fadein {\n from {bottom: 0; opacity: 0;}\n to {bottom: 30px; opacity: 1;}\n}\n\n@-webkit-keyframes fadeout {\n from {bottom: 30px; opacity: 1;} \n to {bottom: 0; opacity: 0;}\n}\n\n@keyframes fadeout {\n from {bottom: 30px; opacity: 1;}\n to {bottom: 0; opacity: 0;}\n}\n.qfs {\n font-size: .8em\n}\ntr,\nth,\ntd {\n padding: 5px 10px;\n text-align: center\n}\n table.t1 td:first-child,\n table.t2 td:nth-child(2),\n table.t3 td:nth-child(3),\n table.t4 td:nth-child(4),\n table.t5 td:nth-child(5),\n table.e5 td:nth-last-child(5),\n table.e4 td:nth-last-child(4),\n table.e3 td:nth-last-child(3),\n table.e2 td:nth-last-child(2),\n table.e1 td:last-child,\n td.tl {\n text-align: left\n }\n\n table.ti td {\n vertical-align: middle\n }\n\n table.tf td {\n text-align: left\n }\n\n.DiscussPost-date_rn8ndx4foSz{\n\tvisibility: hidden;\n width: 0px;\n}\n.fixedTableHead {\n font-size: small; \n}\n.fixedTableHead thead th {\n position: sticky;\n top: 0;\n}\n.fixedTableHead td {\n\ttext-align: left\n}\n#httpResponseCodesTable td {\n text-align: left\n}\n\n/* Keyword Search - Underlined Words */\n[data-color-mode=\"dark\"] .SearchResults-Result3TWcEjpDrkd5 .ais-Snippet-highlighted::after {\n background:#05D7B0;\n}\n\n/* Navigational Cards */\n @media (prefers-color-scheme: dark) { \n [data-color-mode=\"system\"] p{ \n color: white !important; font-weight: 400; \n } \n}\n\n@media (prefers-color-scheme: dark) { \n [data-color-mode=\"system\"] .card { \n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); \n transition: 0.3s; \n border-radius: 5px; \n border: 0.01em solid white; \n margin: 5px; \n } \n}\n\n@media (prefers-color-scheme: dark) { [data-color-mode=\"system\"] .large-card { \n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); \n transition: 0.3s; \n border-radius: 5px; \n margin: 5px; \n border: 0.01em solid white; \n height: 150px;\n } \n}\n\n \n@media (prefers-color-scheme: dark) { \n [data-color-mode=system] .large-card:hover, [data-color-mode=\"system\"] .card:hover { \n background-color: #383f43; \n } \n}\n\n@media (prefers-color-scheme: dark) { [data-color-mode=\"system\"] .icons, [data-color-mode=system] .icontop { \n display: none;\n } \n}\n\n@media (prefers-color-scheme: dark) { [data-color-mode=\"system\"] .iconsdark { \n width: 28px; padding-right: 7px; \n } \n}\n\n@media (prefers-color-scheme: dark) { [data-color-mode=\"system\"] .iconstopdark {\n width: 36px; \n padding-right: 7px; \n } \n}\n\n@media (prefers-color-scheme: dark) { [data-color-mode=\"system\"] h3,[data-color-mode=system] h4 { \n color: white !important; \n } \n}\n \n \n \n@media (prefers-color-scheme: light) { \n [data-color-mode=system] .large-card:hover, [data-color-mode=\"system\"] .card:hover { \n background-color: #fff; \n } \n}\n\n@media (prefers-color-scheme: light) { [data-color-mode=\"system\"] .iconsdark, [data-color-mode=system] .icontopdark { \n display: none;\n } \n}\n\n@media (prefers-color-scheme: light) { [data-color-mode=\"system\"] .icons { \n width: 28px; padding-right: 7px; \n } \n}\n\n@media (prefers-color-scheme: light) { [data-color-mode=\"system\"] .iconstop {\n width: 36px; \n padding-right: 7px; \n } \n}\n\n\n \n\n [data-color-mode=\"light\"] .icontop {\n width: 36px;\n padding-right: 7px;\n }\n\n [data-color-mode=\"light\"] .icons {\n width: 28px;\n padding-right: 7px;\n }\n\n [data-color-mode=\"light\"] .iconsdark {\n display: none;\n }\n\n [data-color-mode=\"light\"] .iconstopdark {\n display: none;\n }\n\n [data-color-mode=\"dark\"] .icons {\n display: none;\n }\n\n [data-color-mode=\"dark\"] .icontop {\n display: none !important;\n }\n \n\n [data-color-mode=\"dark\"] .iconsdark {\n width: 28px;\n padding-right: 7px;\n }\n \n\n [data-color-mode=\"dark\"] .iconstopdark {\n width: 36px;\n padding-right: 7px;\n }\n \n \n[data-color-mode=\"dark\"] h3,\n[data-color-mode=\"dark\"] h4 {\n color: white !important;\n}\n \n \n\n\n /* Responsive Adjustments */\n @media (max-width: 1024px) {\n .top-row {\n grid-template-columns: repeat(2, 1fr);\n }\n\n .row {\n grid-template-columns: 1fr;\n }\n }\n\n @media (max-width: 768px) {\n\n .top-row,\n .row {\n grid-template-columns: 1fr;\n }\n }\n\n\n\n/* Block Font - e3edf2 */\n.blockfont: {\n font-size:18px;\n}\n\n\n@media (prefers-color-scheme: light) { [data-color-mode=\"system\"] .callout_intro {\n background:#118CFD;\n title:#46b8da;\n border:#5bc0de;\n } \n}\n\n@media (prefers-color-scheme: dark) { [data-color-mode=\"system\"] .callout_intro {\n background:#118CFD;\n title:#46b8da;\n border:#5bc0de;\n } \n}\n\n\n\n.callout_intro p {\nfont-size:18px;\n}\n\n\n\n/* CSS Values for Accordian Designs */\ndetails {\n display: inline-block;\n}\n\nsummary {\n list-style: none;\n display: inline-flex;\n align-items: center;\n padding: 10px;\n font-weight: bold;\n}\n\n\n\nsummary::after {\n content: '';\n width: 18px;\n height: 10px;\n background: url('https://files.readme.io/46a176e7887df52288b2d4ebced3b5655c843def7d0079c94083d3f309783cdf-accordianarrowdown.svg') no-repeat;\n background-size: cover;\n margin-left: .75em;\n transition: 0.1s;\n}\n\ndetails[open] > summary::after {\n transform: rotate(180deg);\n}\n\n\n\nsummary::-webkit-details-marker {\n display: none;\n}\n\nsummary {\n border-radius: 5px;\n}\n\ndetails[open] summary {border-radius: 5px 5px 0 0;}\n\ndetails {\n border-radius: 5px;\n}\n\n/* Cards for Nav */\n\n .row1 {\n display: grid !important;\n grid-gap: 7px;\n margin-bottom: 20px;\n /* Spacing between card rows */\n }\n\n .other-row {\n display: grid !important;\n grid-gap: 7px;\n margin-bottom: 20px;\n /* Spacing between card rows */\n }\n\n\n .single-row {\n display: grid !important;\n grid-gap: 7px;\n margin-bottom: 20px;\n /* Spacing between card rows */\n }\n\n.row-list {\n display: grid !important;\n grid-gap: 7px;\n margin-bottom: 20px;\n /* Spacing between card rows */\n }\n\n\n .row1 {\n grid-template-columns: repeat(3, 1fr);\n }\n\n\n .other-row {\n grid-template-columns: repeat(2, 1fr);\n }\n\n .other-row a {\n text-decoration: none !important;\n\n }\n\n.row1 a {\n text-decoration: none !important;\n\n }\n\n\n .row-list {\n grid-template-columns: repeat(3, 1fr);\n }\n\n\n\n.single-row {\n grid-template-columns: repeat(1, 1fr);\n }\n\n\n.single-row a {\n text-decoration: none !important;\n\n }\n \n .card {\n width:100%;\n }\n\n [data-color-mode=\"light\"] p {\n color: black;\n text-decoration: none !important;\n font-weight: 400;\n }\n\n [data-color-mode=\"dark\"] p {\n color: white !important;\n font-weight: 400;\n }\n \n \n .other-row a p {\n text-decoration: none;\n } \n\n .other-row p a {\n text-decoration: none;\n }\n\n .row1 a p {\n text-decoration: none;\n } \n\n .row1 p a {\n text-decoration: none;\n }\n\n [data-color-mode=\"light\"] .card {\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);\n transition: 0.3s;\n border-radius: 5px;\n margin: 5px;\n }\n\n [data-color-mode=\"light\"] .large-card {\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);\n transition: 0.3s;\n border-radius: 5px;\n margin: 5px;\n height: 150px;\n }\n\n [data-color-mode=\"dark\"] .card {\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);\n transition: 0.3s;\n border-radius: 5px;\n border: 0.01em solid white;\n margin: 5px;\n }\n \n \n [data-color-mode=\"dark\"] .large-card {\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);\n transition: 0.3s;\n border-radius: 5px;\n margin: 5px;\n border: 0.01em solid white;\n height: 150px;\n }\n \n .card:hover,\n .large-card:hover {\n box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);\n }\n\n [data-color-mode=\"dark\"] .card:hover {\n background-color: #383f43;\n }\n\n [data-color-mode=\"dark\"] .large-card:hover {\n background-color: #383f43;\n }\n \n .large-card {\n padding: 10px;\n /* Larger padding for larger cards */\n }\n\n .container,\n .large-container {\n padding: 2px 16px;\n text-decoration: none;\n }\n\n\n .topcard-link {\n text-decoration: none;\n }\n\n .topcard-title {\n font-size: 16px;\n\n }\n\n .card-link {\n text-decoration: none;\n }\n \n \n \n @media (prefers-color-scheme: dark) { \n [data-color-mode=\"system\"] p{ \n color: white !important; font-weight: 400; \n } \n}\n\n@media (prefers-color-scheme: dark) { \n [data-color-mode=\"system\"] .card { \n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); \n transition: 0.3s; \n border-radius: 5px; \n border: 0.01em solid white; \n margin: 5px; \n } \n}\n\n \n@media (prefers-color-scheme: dark) { \n [data-color-mode=system] .large-card:hover, [data-color-mode=\"system\"] .card:hover { \n background-color: #383f43; \n } \n}\n\n@media (prefers-color-scheme: dark) { [data-color-mode=\"system\"] .icons, [data-color-mode=system] .icontop { \n display: none;\n } \n}\n\n@media (prefers-color-scheme: dark) { [data-color-mode=\"system\"] .iconsdark { \n width: 28px; padding-right: 7px; \n } \n}\n\n@media (prefers-color-scheme: dark) { [data-color-mode=\"system\"] .iconstopdark {\n width: 36px; \n padding-right: 7px; \n } \n}\n\n@media (prefers-color-scheme: dark) { [data-color-mode=\"system\"] h3,[data-color-mode=system] h4 { \n color: white !important; \n } \n}\n \n \n \n@media (prefers-color-scheme: light) { \n [data-color-mode=system] .large-card:hover, [data-color-mode=\"system\"] .card:hover { \n background-color: #fff; \n } \n}\n\n@media (prefers-color-scheme: light) { [data-color-mode=\"system\"] .icons, [data-color-mode=system] .iconsdark { \n display: none;\n } \n}\n\n@media (prefers-color-scheme: light) { [data-color-mode=\"system\"] .icons { \n width: 28px; padding-right: 7px; \n } \n}\n\n@media (prefers-color-scheme: light) { [data-color-mode=\"system\"] .iconstop {\n width: 36px; \n padding-right: 7px; \n } \n}\n\n\n \n\n [data-color-mode=\"light\"] .icontop {\n width: 36px;\n padding-right: 7px;\n }\n\n [data-color-mode=\"light\"] .icons {\n width: 28px;\n padding-right: 7px;\n }\n\n [data-color-mode=\"light\"] .iconsdark {\n display: none;\n }\n\n [data-color-mode=\"dark\"] .icons {\n display: none;\n }\n \n\n [data-color-mode=\"dark\"] .iconsdark {\n width: 28px;\n padding-right: 7px;\n }\n \n\n [data-color-mode=\"dark\"] .iconstopdark {\n width: 36px;\n padding-right: 7px;\n }\n \n \n[data-color-mode=\"dark\"] h3,\n[data-color-mode=\"dark\"] h4 {\n color: white !important;\n}\n \n \n\n\n /* Responsive Adjustments */\n @media (max-width: 1024px) {\n .other-row {\n grid-template-columns: repeat(2, 1fr);\n },\n\n .row1 {\n grid-template-columns: 3fr;\n },\n .row-list {\n grid-template-columns: 3fr;\n }\n }\n\n @media (max-width: 768px) {\n\n .row-list,\n .other-row,\n .row1 {\n grid-template-columns: 1fr;\n }\n }\n \n \n\n\n/* Definitions Glossary in HTML */\n \n \n dfn {\n text-decoration: underline dotted;\n cursor: help;\n position: relative;\n}\n\n\n\n [data-color-mode=\"dark\"] dfn:hover::after {\n content: attr(title);\n position: absolute;\n left: 0;\n bottom: 100%;\n background: grey;\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n white-space: nowrap;\n z-index: 9999;\n max-with:600px;\n}\n \n \n \n [data-color-mode=\"light\"] dfn:hover::after {\n content: attr(title);\n position: absolute;\n left: 0;\n bottom: 100%;\n background: white;\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n white-space: nowrap;\n z-index: 9999;\n max-with:600px;\n}\n \n \n \n @media (prefers-color-scheme: dark) { \n [data-color-mode=\"system\"] dfn:hover::after {\n content: attr(title);\n position: absolute;\n left: 0;\n bottom: 100%;\n background: grey;\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n white-space: nowrap;\n z-index: 9999;\n max-with:600px;\n}\n}\n \n \n \n @media (prefers-color-scheme: light) { \n [data-color-mode=\"system\"] dfn:hover::after {\n content: attr(title);\n position: absolute;\n left: 0;\n bottom: 100%;\n background: white;\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n white-space: nowrap;\n z-index: 9999;\n max-with:600px;\n}\n}\n \n\n @media (max-width: 1024px) {\n dfn:hover::after: {\n max-width:600px;\n }\n }\n\n @media (max-width: 768) {\n dfn:hover::after: {\n max-width:500px;\n }\n }\n \n/* API Reference Objects, Keys & Fields */\n.Param-nameU7CntAa90Wvb:not(:last-child):not(:only-child), .Param-required2cYbu9SjF2YX:not(:last-child):not(:only-child), .Param-type3QlaE1nrKh1D:not(:last-child):not(:only-child) { font-size:16px;}\n\n\n/*Accordion\nsummary:after { \n content: ''; \n width: 18px; \n height: 10px; \n background: url(\"https://files.readme.io/46a176e7887df52288b2d4ebced3b5655c843def7d0079c94083d3f309783cdf-accordianarrowdown.svg\") no-repeat; \n background-size: cover; \n margin-left: .75em; \n transition: 0.1s; \n}\ndetails[open] > summary::after { \n transform: rotate(180deg); \n}\nsummary::-webkit-details-marker { \n display: none; \n}\nsummary { \n border-radius: 5px; \n}\ndetails[open] summary {border-radius: 5px 5px 0 0;}details { \n border-radius: 5px; \n}\n*/\n\n/*Glossary*/\n /* Glossary in HTML*/\n \n \n dfn {\n text-decoration: underline dotted;\n cursor: help;\n position: relative;\n}\n\n\n\n [data-color-mode=\"dark\"] dfn:hover::after {\n content: attr(title);\n position: absolute;\n left: 0;\n bottom: 100%;\n background: grey;\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n white-space: nowrap;\n z-index: 9999;\n}\n \n \n \n [data-color-mode=\"light\"] dfn:hover::after {\n content: attr(title);\n position: absolute;\n left: 0;\n bottom: 100%;\n background: white;\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n white-space: nowrap;\n z-index: 9999;\n}\n \n \n \n @media (prefers-color-scheme: dark) { \n [data-color-mode=\"system\"] dfn:hover::after {\n content: attr(title);\n position: absolute;\n left: 0;\n bottom: 100%;\n background: grey;\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n white-space: nowrap;\n z-index: 9999;\n}\n}\n \n \n \n @media (prefers-color-scheme: light) { \n [data-color-mode=\"system\"] dfn:hover::after {\n content: attr(title);\n position: absolute;\n left: 0;\n bottom: 100%;\n background: white;\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n white-space: nowrap;\n z-index: 9999;\n}\n}\n\n\n/*Save Pages IMPORTANT! */\n[class^=\".SuperHubEditorFormLayout-actions\"] {\n justify-content: left;\n flex:auto;\n}\n \n.rm-Header-link[href=\"/reference\"],\n.rm-Header-link[href=\"/discuss\"],\n.rm-Header-link[href=\"/changelog\"],\n.rm-Header-link[href=\"/recipes\"],\n.rm-Header-link[href=\"/docs\"] {\n display: none !important;\n}\n\n#launcher {\n color-scheme: light;\n width: 109px;\n height: 50px ;\n padding: 10px !important;\n margin: 10px 20px !important;\n position: fixed;\n bottom: 30px !important;\n overflow: visible;\n opacity: 1;\n border: 0px;\n z-index: 999998;\n transition-duration: 250ms;\n transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);\n transition-property: opacity, top, bottom;\n right: 0px;\n}\n\n/*Tabs Active Color */\n @media (prefers-color-scheme: dark) { \n [data-color-mode=\"system\"] .TabGroup-tab_active {\n \n color:#fff;\n border-bottom:#fff;\n \n }\n }\n \n [data-color-mode=\"dark\"] .TabGroup-tab_active {\n color:#fff;\n border-bottom:#fff;\n }\n\n\n\n/*Accordion Color */\n@media (prefers-color-scheme: dark) { \n [data-color-mode=\"system\"] .fad, .fa-duotone {\n \n color:#fff;\n \n }\n }\n \n [data-color-mode=\"dark\"] .fad, .fa-duotone {\n color:#fff;\n }\n\n\na.rm-MobileFlyout-item:nth-child(13),\na.rm-MobileFlyout-item:nth-child(14),\na.rm-MobileFlyout-item:nth-child(15),\na.rm-MobileFlyout-item:nth-child(16) {\n display: none;\n}","js":"// Toggle button to Expand Collapse BODY PARAMS \n$(window).on('pageLoad', function(e, state) {\n setTimeout(function() {\n if (window.location.href.includes('/reference/') && !document.getElementById('toggleCollapsiblesButton')) {\n const bodyParamsHeader = Array.from(document.querySelectorAll('.APISectionHeader-heading4MUMLbp4_nLs'))\n .find(header => header.textContent.trim() === 'Body Params');\n\n if (bodyParamsHeader) {\n const toggleButton = document.createElement('button');\n toggleButton.id = 'toggleCollapsiblesButton';\n toggleButton.type = 'button';\n const buttonText = document.createElement('span');\n buttonText.textContent = 'Expand All';\n const buttonArrow = document.createElement('span');\n buttonArrow.textContent = ' ⬍';\n buttonArrow.style.verticalAlign = 'middle';\n buttonArrow.style.marginLeft = '5px';\n toggleButton.appendChild(buttonText);\n toggleButton.appendChild(buttonArrow);\n toggleButton.style.display = 'flex';\n toggleButton.style.alignItems = 'center';\n toggleButton.style.justifyContent = 'center';\n toggleButton.style.padding = '6px 10px';\n toggleButton.style.fontSize = '13px';\n toggleButton.style.backgroundColor = '#4CAF50';\n toggleButton.style.color = 'white';\n toggleButton.style.border = 'none';\n toggleButton.style.borderRadius = '5px';\n toggleButton.style.cursor = 'pointer';\n toggleButton.style.marginLeft = '10px';\n toggleButton.style.boxShadow = '0 4px 8px rgba(0,0,0,0.1)';\n bodyParamsHeader.parentElement.appendChild(toggleButton);\n\n let isExpanded = false;\n toggleButton.addEventListener('click', function(event) {\n event.preventDefault();\n const collapsibleContainer = bodyParamsHeader.closest('.rm-Article');\n if (collapsibleContainer) {\n const toggleCollapsibles = function(element, expand) {\n const expandButtons = element.querySelectorAll('[class^=\"Param-expand-label\"]');\n expandButtons.forEach(button => {\n const parentSection = button.closest('section');\n if ((expand && parentSection.getAttribute('data-custom-toggle') !== 'expanded') ||\n (!expand && parentSection.getAttribute('data-custom-toggle') !== 'collapsed')) {\n button.click();\n parentSection.setAttribute('data-custom-toggle', expand ? 'expanded' : 'collapsed');\n }\n });\n const childContainers = element.querySelectorAll('.Param-children1oL5oQqVqcMg');\n childContainers.forEach(child => toggleCollapsibles(child, expand));\n };\n\n toggleCollapsibles(collapsibleContainer, !isExpanded);\n isExpanded = !isExpanded;\n buttonText.textContent = isExpanded ? 'Collapse All' : 'Expand All';\n toggleButton.style.backgroundColor = isExpanded ? '#D32F2F' : '#4CAF50';\n } else {\n console.error('Div with class \".rm-Article\" not found.');\n }\n });\n\n // Add event listeners for manual toggling of each collapsible\n document.querySelectorAll('.Param-expand-button1ktY2S68FWc_').forEach(button => {\n button.addEventListener('click', function() {\n let parentSection = this.closest('section');\n let currentState = parentSection.getAttribute('data-custom-toggle');\n let newState = currentState === 'expanded' ? 'collapsed' : 'expanded';\n parentSection.setAttribute('data-custom-toggle', newState);\n });\n });\n } else {\n console.error('Header with \"Body Params\" not found.');\n }\n }\n }, 1000); // Wait for dynamic content\n});\n\n\n// To disable copy/paste\n/*\nconst preventDefault = (event) => {\n\tevent.preventDefault();\n};\n\n//document.addEventListener(\"copy\", preventDefault, false);\n//document.addEventListener(\"contextmenu\", preventDefault, false);\n*/\n\nconst copyToClipboard = (elem) => {\n const text = elem.parentElement.innerText.replaceAll(/\\s/g,'');\n\tnavigator.clipboard.writeText(text);\n};\n\nconst showCopiedNotification = () => {\n\tlet elem = document.getElementById(\"snackbar\");\n elem.className = \"show\";\n setTimeout(() => { elem.className = elem.className.replace(\"show\", \"\"); }, 3000);\n}\n\n//Recipes \n $(window).on('pageLoad', function(e, state) {\n const recipeContainer = document.getElementById('recipe-container');\n const recipes = document.querySelectorAll('.TutorialTile-link');\n \n recipes.forEach(recipe => recipeContainer.append(recipe));\n})","html":{"header":null,"home_footer":null,"page_footer":"\n\n\n\n\n\n"}},"header":{"type":"gradient","gradient_color":"#0D084C","link_style":"buttons","overlay":{"fill":"auto","type":"triangles","position":"top-left","image":{"uri":null,"url":"https://files.readme.io/1d742dd-bg-1.png","name":"bg-1.png","width":1920,"height":1023,"color":"#071f3c","links":{"original_url":null}}}},"ai":{"dropdown":"disabled","options":{"chatgpt":"enabled","claude":"enabled","clipboard":"enabled","copilot":"enabled","view_as_markdown":"enabled"}},"navigation":{"first_page":"landing_page","left":[],"logo_link":"homepage","page_icons":"enabled","right":[{"type":"link_url","title":"API Reference","url":"https://developers.tabapay.com/reference","custom_page":null},{"type":"link_url","title":"Recipes","url":"https://developers.tabapay.com/recipes","custom_page":null},{"type":"link_url","title":"Changelog","url":"https://developers.tabapay.com/changelog","custom_page":null},{"type":"link_url","title":"Community","url":"https://developers.tabapay.com/discuss","custom_page":null},{"type":"user_controls","title":null,"url":null,"custom_page":null}],"sub_nav":[{"type":"link_url","title":"Accept Payments","url":"https://developers.tabapay.com/docs/overview-of-instant-pull-payments","custom_page":null},{"type":"link_url","title":"Payout Funds","url":"https://developers.tabapay.com/docs/overview-of-instant-payouts#/","custom_page":null},{"type":"link_url","title":"TabaPay Shield","url":"https://developers.tabapay.com/docs/overview-of-tabapay-shield#/","custom_page":null},{"type":"link_url","title":"Reporting","url":"https://developers.tabapay.com/docs/reporting","custom_page":null},{"type":"link_url","title":"TabaPay Portal","url":"https://developers.tabapay.com/docs/tabapay-portal","custom_page":null}],"subheader_layout":"links","version":"disabled","links":{"home":{"label":"Home","visibility":"enabled"},"graphql":{"label":"GraphQL","visibility":"disabled"},"guides":{"label":"Guides","alias":"Documentation","visibility":"enabled"},"reference":{"label":"API Reference","alias":null,"visibility":"enabled"},"recipes":{"label":"Recipes","alias":null,"visibility":"enabled"},"changelog":{"label":"Changelog","alias":null,"visibility":"enabled"},"discussions":{"label":"Discussions","alias":"Community","visibility":"enabled"}}}},"git":{"connection":{"repository":{},"organization":null,"status":"inactive"}}}},"version":{"_id":"61f4a26379257900665c3633","version":"74473","version_clean":"74473.0.0","codename":"Shire","is_stable":true,"is_beta":false,"is_hidden":false,"is_deprecated":false,"categories":["61f4a26379257900665c3634","61f4a26379257900665c3634","61f4a26379257900665c3635","61f4a26379257900665c3636","61f4a26379257900665c3637","61f4a26379257900665c3638","61f4a26379257900665c3639","61f4a26379257900665c363a","61f4aa3050b3a900536fbbe5","61f4aaf69af6160029876772","61f4b30acb53a9000fbb81ab","62041108b5a9c800248d75f1","6204147ab4bcab029d11b8a2","6208371e21b888003b3bc558","62083794f2cfe700544153c6","62083c8800384f0063347179","62084b4f63b83900109e0b32","62084e8abf6edf00504d26a7","62087227a0eeb10025e53ce1","62087a2899830b004a269b06","62088083951405002a722aaf","620896c399830b004a26a16f","6208985899830b004a26a24b","62089c85a0eeb10025e549d0","62089d328c2f4a0072f8230e","62089f2d2f1151004888915c","62089fd8fa344e00da6a454f","6208a06454b9dc00407a8861","6209409fb7271b0010ab7238","62094146f75b3c000f46b6d1","6209c001f5c8d5002a5afffa","620ade76fd1bdc0043949693","620c39c3df8a9c00208bbe66","620c3abcc7f132009dde06c8","620d6be726818500370efe86","620d6e15d3ad4d004d3dc27d","620d6e60321f8c0054585579","620d6e79427bb0003da9976b","620d6e99fedd2e00149732de","62142ff68521a1001a3d5f16","62291c9c828b7a0090cd426b","62291dd388c55f002df2b0c5","62292257017c6200358fec18","6229242b3a04d70110912d6e","622926038b83bb0091248cbe","622f5580f2442302811518b3","622fa97d3b7cb3059b2cea04","622fb8c778f204008abf9fac","622fb9464ad2b5004fc2f7a6","622fc3adf5f91702f1ffad2b","622fc51768c5210020165fa4","622fc58178f204008abfacda","6231282ef4422c0045ca7af1","623128a888328c003d964639","62312d3a415e130014b6da52","6231324ac06c4403804885d2","623138ed569bb8007f68b9c5","62313ad4fc47b900205638b2","623150938e119f002eeadb06","6231512589f9cb003bfb1635","623151eed11e4a0099af3d4e","6231fa08b1e56702f59ebbef","62321835e6510a002a2f2536","623218aabff0bc0027bc0a01","623229ca76ad28007457419c","62327b7ddef83200359f5171","62328d8729a88c0014edcfd0","62328e2d43cb0c00235bf005","62334932d27ea3003abb86c8","62338a7a542f3d009c9c8e88","623392f85ac7a7005843294d","6233ad897a0510009b1b4d3d","6234b80b9d00b005fb3db116","6234f64de0880500f6ec2974","6234fe3424d524004dfe2e2f","623500bda2ca1e009afa20ef","623504cdec22f9006aa78780","6238e500678d600014474a56","62391c8c4e9b6f0073c336ef","62391cc07d490c0119e055c1","62391cd11dc62f0045e8d4c8","62391e16ddb6360087055643","623cf5ead1e7230023986084","623cf66389f559035cf1f8b6","623cf69a94eeb20074772155","623cf8605d2911035f95186c","623cf96b38d70e0013f35433","623e02d386fd5900438bb9bc","623e39c893fe1b0089cd66ca","623e3acd4036fe00579e3632","623e3ae25b149f0013930eb3","623e480ec01e85001478cc33","623e488f6c0859003d9e006c","623e4ec69d6d4c0013959322","623f5b371526110084f6a9a2","6241ccfa4f1109004695dbfb","6241cd32f50ce6030b8a903e","6241cdbcd274de0040718a78","6241ce092a0fea001361ef1d","6241ce21220fe9002a9fbebc","62447f5550902900203ffab5","624481e6ea2f38031e192eef","6244821a10292f0039d75476","62448226352dde0014706ef2","624c68d6f9beeb0305f5d509","624f74c61a742e005125cb91","6259957d31cde30044b886f6","625995d124a07b00a2e686d4","62599629a9d962010cca20e4","625998ca6348d2007165628b","6259b8c07defaf00a4be2549","625d7fc5e1a38e004bf3467d","625ee3390e200700445a2759","625ee3a791e48f0014b22f6f","625f7cf342ed81004c33ac63","62602b8bb0a3d70935c41acc","62614838f938a8020f9bd8f2","62617b80f8cdf0081fbc2de6","6262ca98260a3200272442da","626616eb3628410014431342","62685fa7c239d40021a3ea92","626c306623805800815027d0","62797be14c1eb50082ecafbc","627da57e63f0cf00210ada3d","6281153b1168620045ff4b95","62811547ce06c700520d8ec7","62828c628483fe06d2bc43d8","629a3debcb9f6c001a397bbe","629a6fb6fd6a050087f82e18","629a72d1132ae401bced84b8","629fe9ec06ca62006a4a2f9a","62b4bdfd58633d00afe2b604","62d6d44fcf55a8008aba28ec","6351d57f316659000fe09f28","6376b4a72ac94400030a8ce6","6377e3080b88b50016768b4c","63d3f651107b0205e2628f03","63eac898de1c05001299b803","63f8edaea3e82a004c96d3e9","64c1950df09a1d0058c04f21","6529bbc81e274e0058a8cac5","6571ef88bf411f000f6113b3","65eb8c3b6abab2006963e7d1","666b2cad3c4d2a006164e2c7","66abc47147fd3b003de27706","66eb3b98957a8d0049be591f","66f2ddafcdd0b1004ce14280","6781afe3ae09ee00307185d0"],"project":"61f4a26379257900665c364f","releaseDate":"2022-01-08T00:10:17.445Z","createdAt":"2022-01-08T00:10:17.445Z","__v":16,"updatedAt":"2025-06-06T17:47:48.069Z","apiRegistries":[{"filename":"TP22-APIs.json","uuid":"5mrx5qmbl3lxvs"}],"pdfStatus":"","source":"readme"}},"is404":false,"isDetachedProductionSite":false,"lang":"en","langFull":"Default","reqUrl":"/reference/how-to-use-the-3ds-sdk-starter-guide","version":{"_id":"61f4a26379257900665c3633","version":"74473","version_clean":"74473.0.0","codename":"Shire","is_stable":true,"is_beta":false,"is_hidden":false,"is_deprecated":false,"categories":["61f4a26379257900665c3634","61f4a26379257900665c3634","61f4a26379257900665c3635","61f4a26379257900665c3636","61f4a26379257900665c3637","61f4a26379257900665c3638","61f4a26379257900665c3639","61f4a26379257900665c363a","61f4aa3050b3a900536fbbe5","61f4aaf69af6160029876772","61f4b30acb53a9000fbb81ab","62041108b5a9c800248d75f1","6204147ab4bcab029d11b8a2","6208371e21b888003b3bc558","62083794f2cfe700544153c6","62083c8800384f0063347179","62084b4f63b83900109e0b32","62084e8abf6edf00504d26a7","62087227a0eeb10025e53ce1","62087a2899830b004a269b06","62088083951405002a722aaf","620896c399830b004a26a16f","6208985899830b004a26a24b","62089c85a0eeb10025e549d0","62089d328c2f4a0072f8230e","62089f2d2f1151004888915c","62089fd8fa344e00da6a454f","6208a06454b9dc00407a8861","6209409fb7271b0010ab7238","62094146f75b3c000f46b6d1","6209c001f5c8d5002a5afffa","620ade76fd1bdc0043949693","620c39c3df8a9c00208bbe66","620c3abcc7f132009dde06c8","620d6be726818500370efe86","620d6e15d3ad4d004d3dc27d","620d6e60321f8c0054585579","620d6e79427bb0003da9976b","620d6e99fedd2e00149732de","62142ff68521a1001a3d5f16","62291c9c828b7a0090cd426b","62291dd388c55f002df2b0c5","62292257017c6200358fec18","6229242b3a04d70110912d6e","622926038b83bb0091248cbe","622f5580f2442302811518b3","622fa97d3b7cb3059b2cea04","622fb8c778f204008abf9fac","622fb9464ad2b5004fc2f7a6","622fc3adf5f91702f1ffad2b","622fc51768c5210020165fa4","622fc58178f204008abfacda","6231282ef4422c0045ca7af1","623128a888328c003d964639","62312d3a415e130014b6da52","6231324ac06c4403804885d2","623138ed569bb8007f68b9c5","62313ad4fc47b900205638b2","623150938e119f002eeadb06","6231512589f9cb003bfb1635","623151eed11e4a0099af3d4e","6231fa08b1e56702f59ebbef","62321835e6510a002a2f2536","623218aabff0bc0027bc0a01","623229ca76ad28007457419c","62327b7ddef83200359f5171","62328d8729a88c0014edcfd0","62328e2d43cb0c00235bf005","62334932d27ea3003abb86c8","62338a7a542f3d009c9c8e88","623392f85ac7a7005843294d","6233ad897a0510009b1b4d3d","6234b80b9d00b005fb3db116","6234f64de0880500f6ec2974","6234fe3424d524004dfe2e2f","623500bda2ca1e009afa20ef","623504cdec22f9006aa78780","6238e500678d600014474a56","62391c8c4e9b6f0073c336ef","62391cc07d490c0119e055c1","62391cd11dc62f0045e8d4c8","62391e16ddb6360087055643","623cf5ead1e7230023986084","623cf66389f559035cf1f8b6","623cf69a94eeb20074772155","623cf8605d2911035f95186c","623cf96b38d70e0013f35433","623e02d386fd5900438bb9bc","623e39c893fe1b0089cd66ca","623e3acd4036fe00579e3632","623e3ae25b149f0013930eb3","623e480ec01e85001478cc33","623e488f6c0859003d9e006c","623e4ec69d6d4c0013959322","623f5b371526110084f6a9a2","6241ccfa4f1109004695dbfb","6241cd32f50ce6030b8a903e","6241cdbcd274de0040718a78","6241ce092a0fea001361ef1d","6241ce21220fe9002a9fbebc","62447f5550902900203ffab5","624481e6ea2f38031e192eef","6244821a10292f0039d75476","62448226352dde0014706ef2","624c68d6f9beeb0305f5d509","624f74c61a742e005125cb91","6259957d31cde30044b886f6","625995d124a07b00a2e686d4","62599629a9d962010cca20e4","625998ca6348d2007165628b","6259b8c07defaf00a4be2549","625d7fc5e1a38e004bf3467d","625ee3390e200700445a2759","625ee3a791e48f0014b22f6f","625f7cf342ed81004c33ac63","62602b8bb0a3d70935c41acc","62614838f938a8020f9bd8f2","62617b80f8cdf0081fbc2de6","6262ca98260a3200272442da","626616eb3628410014431342","62685fa7c239d40021a3ea92","626c306623805800815027d0","62797be14c1eb50082ecafbc","627da57e63f0cf00210ada3d","6281153b1168620045ff4b95","62811547ce06c700520d8ec7","62828c628483fe06d2bc43d8","629a3debcb9f6c001a397bbe","629a6fb6fd6a050087f82e18","629a72d1132ae401bced84b8","629fe9ec06ca62006a4a2f9a","62b4bdfd58633d00afe2b604","62d6d44fcf55a8008aba28ec","6351d57f316659000fe09f28","6376b4a72ac94400030a8ce6","6377e3080b88b50016768b4c","63d3f651107b0205e2628f03","63eac898de1c05001299b803","63f8edaea3e82a004c96d3e9","64c1950df09a1d0058c04f21","6529bbc81e274e0058a8cac5","6571ef88bf411f000f6113b3","65eb8c3b6abab2006963e7d1","666b2cad3c4d2a006164e2c7","66abc47147fd3b003de27706","66eb3b98957a8d0049be591f","66f2ddafcdd0b1004ce14280","6781afe3ae09ee00307185d0"],"project":"61f4a26379257900665c364f","releaseDate":"2022-01-08T00:10:17.445Z","createdAt":"2022-01-08T00:10:17.445Z","__v":16,"updatedAt":"2025-06-06T17:47:48.069Z","apiRegistries":[{"filename":"TP22-APIs.json","uuid":"5mrx5qmbl3lxvs"}],"pdfStatus":"","source":"readme"},"gitVersion":{"base":null,"display_name":"Shire","name":"74473","release_stage":"release","source":"readme","state":"current","updated_at":"2025-07-15T18:29:00.000Z","uri":"/branches/74473","privacy":{"view":"default"}},"versions":{"total":2,"page":1,"per_page":100,"paging":{"next":null,"previous":null,"first":"/beginbagend/api-next/v2/branches?page=1&per_page=100","last":null},"data":[{"base":"74473","display_name":null,"name":"1.1","release_stage":"release","source":"readme","state":"current","updated_at":"2025-04-24T03:53:10.712Z","uri":"/branches/1.1","privacy":{"view":"hidden"}},{"base":null,"display_name":"Shire","name":"74473","release_stage":"release","source":"readme","state":"current","updated_at":"2025-07-15T18:29:00.385Z","uri":"/branches/74473","privacy":{"view":"default"}}],"type":"version"}}">