Integrate Apple Pay - Decrypt the Apple Pay Payload - Front End Setup and Signature Verification

Apple Pay Implementation - Decrypt the Apple Pay payload

Frontend

Pass the encrypted token to the backend to be decrypted

Steps

  1. The Apple Pay SDK creates ApplePayPayment within session.onpaymentauthorized. ApplePayPayment is the result of authenticating a payment request and contains card info, billing info, and shipping info. ApplePayPayment is accessed via event.payment.
    The encrypted Apple Pay token to be sent to the backend is accessed via event.payment.token.paymentData.
  1. Within session.onpaymentauthorized, create a dictionary called data.

  2. Within data, create a key value pair. Make the key encryptedToken. Assign its corresponding value to event.payment.token.paymentData.
    Your dictionary should be as follows:

    const data = {
    	encryptedToken: event.payment.token.paymentData 
    };
  3. Create the POST request to pass the token to your backend. Some points to note:

    1. The body should be a JSON string of your data dictionary.
    2. You want your response parsed as JSON
  4. Your resulting POST request should look something like this:

    fetch('https://<FQDN>:1234/decryptToken', {
    	method: 'POST',
    	mode: 'cors',
    	headers: {
    		'Content-Type': 'application/json'
    	},
    	body: JSON.stringify(data)
    })
    .then(res => console.log(res.json()))
    .catch(err => console.error(err));

    Your frontend is complete! The resulting Javascript file should be as follows (note: this code expands on previous example)

    //***********************************
    // Copyright (c) 2022.   TabaPay, Inc.   All Rights Reserved.
    //***********************************
    
    //***********************************
    // Checks if Apple Pay JS API is available in browser
    // Shows button if true, else prompts user to open in Safari 
    //***********************************
    if(window.ApplePaySession){
    	//===================================
    	// Merchant Identifier should be what is set on Apple Developer website
    	//===================================
    	let merchantIdentifier = 'yourApplePayMerchantIdentifier';
    	let promise = ApplePaySession.canMakePaymentsWithActiveCard(merchantIdentifier);
    	promise.then(function (canMakePayments){
    		if(canMakePayments){
    			console.log('Apple Pay is supported');
    			const e = document.getElementById('ape');
    			e.style.display = 'none';
    		}
    	})
    } else {
    	console.log('Please open on a supported browser');
    	const e = document.getElementById('ape');
    	e.style.display = 'block';
    }
    //***********************************
    // Function that contacts your server, requests session from AP server,
    // then returns an opaque merchant session object
    //***********************************
    const validateMerchant = async (validationURL) => {
    	//===================================
    	// URL to Apple Pay servers
    	//===================================
    	const data = {validationURL: validationURL};
    	//-----------------------------------
    	// POST to backend
    	//-----------------------------------
    	const response = await fetch('yourAPIEndpoint', {
    		method: 'POST',
    		mode: 'cors',
    		headers: {
    			'Accept': 'application/json',
    			'Content-Type': 'application/json'
    		},
    		body: JSON.stringify(data)
    	});
    	//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    	// Return
    	//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    	return response.json();
    	//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    };
    
    //***********************************
    // Event listener for when Apple Pay button is clicked
    //***********************************
    const onApplePayButtonClicked = () => {
    	//===================================
    	// Customizations 
    	//===================================
    	const request = {
    		"countryCode": "US",
    		"currencyCode": "USD",
    		"merchantCapabilities": [
    			"supports3DS"
    		],
    		"supportedNetworks": [
    			"visa",
    			"masterCard",
    			"amex",
    			"discover"
    		],
    		//-----------------------------------
    		// Customizing touch bar
    		//-----------------------------------
    		"total": {
    			"label": "Demo (Card is not charged)",
    			"type": "final",
    			"amount": "1.99"
    		}
    	};
    	//===================================
    	// Create ApplePaySDK instance
    	//===================================
    	const session = new ApplePaySession(3, request);
    	
    	//===================================
    	// As soon as the system displays the payment sheet, the Apple Pay JS 
    	// API calls your session object’s onvalidatemerchant event handler 
    	// to verify that the request is coming from a valid merchant.
    	//===================================
    	session.onvalidatemerchant = async event => {
    		//-----------------------------------
    		// Call your own server to request a new merchant session
    		//-----------------------------------
    		const merchantSession = await validateMerchant(event.validationURL);
    		//-----------------------------------
    		// Pass opaque merchant object to ApplePaySDK to
    		// complete merchant validation
    		//-----------------------------------
    		session.completeMerchantValidation(merchantSession);
    	};
    
    	//===================================
    	// Event handler to call when the user selects a new payment method.
    	//===================================
    	/*
    	session.onpaymentmethodselected = event => {
    		// Define ApplePayPaymentMethodUpdate based on the selected payment method.
    		// No updates or errors are needed, pass an empty object.
    		const update = {};
    		session.completePaymentMethodSelection(update);
    	};
    	*/
    
    	//===================================
    	// Event handler to call when user selects a shipping method
    	//===================================
    	session.onshippingmethodselected = event => {
    		//-----------------------------------
    		// Define ApplePayShippingMethodUpdate based on the selected shipping method
    		// No updates or errors are needed, pass an empty object.
    		//-----------------------------------
    		const update = {};
    		session.completeShippingMethodSelection(update);
    	};
    
    	//===================================
    	// Event handler to call when user selects a shipping contact
    	// in the payment sheet
    	//===================================
    	session.onshippingcontactselected = event => {
    		//-----------------------------------
    		// Define ApplePayShippingContactUpdate based on the selected shipping
    		// contact
    		//-----------------------------------
    		const update = {};
    		session.completeShippingContactSelection(update);
    	};
    
    	//===================================
    	// An event handler the system calls when the user has authorized 
    	// the Apple Pay payment with Touch ID, Face ID, or a passcode.
    	//===================================
    	session.onpaymentauthorized = event => {
    		//-----------------------------------
    		// Encrypted ApplePay Token 
    		//-----------------------------------
    		const data = event.payment.token;
    		//-----------------------------------
    		// Endpoint for decrypting token
    		//-----------------------------------
    		fetch('yourAPIEndpoint', {
    			method: 'POST',
    			mode: 'cors',
    			headers: {
    				'Accept': 'application/json',
    				'Content-Type': 'application/json'
    			},
    			body: JSON.stringify(data)
    		})
    		//-----------------------------------
    		// Define what to do with decrypted token
    		//-----------------------------------
    		.then(res => console.log(res.json()))
    		.catch(err => console.error(err));
    		
    		//-----------------------------------
    		//Define ApplePayPaymentAuthorizationResult
    		//-----------------------------------
    		const result = {
    			"status": ApplePaySession.STATUS_SUCCESS
    		};
    		session.completePayment(result);
    	};
    
    	//===================================
    	// An event handler called by the system when the user 
    	// enters or updates a coupon code.
    	//===================================
    	session.oncouponcodechanged = event => {
    		//-----------------------------------
    		// Define ApplePayCouponCodeUpdate
    		//-----------------------------------
    		const newTotal = calculateNewTotal(event.couponCode);
    		const newLineItems = calculateNewLineItems(event.couponCode);
    		const newShippingMethods = calculateNewShippingMethods(event.couponCode);
    		const errors = calculateErrors(event.couponCode);
    
    		session.completeCouponCodeChange({
    			newTotal: newTotal,
    			newLineItems: newLineItems,
    			newShippingMethods: newShippingMethods,
    			errors: errors
    		});
    	};
    
    	session.oncancel = event => {
    		//-----------------------------------
    		// Define behavior when payment cancelled by WebKit
    		//-----------------------------------
    	};
    
    	//===================================
    	// Start up SDK
    	//===================================
    	session.begin();
    
    };

Backend

Backend decrypts the Apple Pay token and sends it back to the frontend.

Backend - Required files

  1. Apple Pay Merchant Identifier Certificate

    1. Use the same .pem file from Retrieve Encrypted Apple Pay Token
    2. You will need the merchant identifier of the public key to derive the symmetric key
  2. Apple Pay Payment Processor Certificate

    1. You will need the private key to generate the shared secret, which is needed to get your symmetric key

      To download:

    2. In Certificates, Identifiers & Profiles, click Identifiers in the sidebar, then select Merchant IDs from the pop-up menu on the top right.

    3. On the right, select your merchant identifier.

    4. Under Apple Pay Payment Processing Certificate, click Create Certificate.

    5. Create a certificate signing request on your Mac, then click Continue.

    6. Click Choose File.

    7. In the dialog that appears, select the certificate request file (a file with a .certSigningRequest file extension), then click Choose.

    8. Click Continue.

    9. Click Download.

    10. The certificate file (a file with a .cer file extension) appears in your Downloadsfolder.
      Next, ensure you have your Payment Processing Certificate in pem format:

    11. Create a certificateSigningRequest

    12. Note: The file generated needs to be of format “.certSigningRequest”

    13. On Apple Developer website, under Apple Pay Merchant Identity Certificate, click Create Certificate

    14. Upload this “certSigningRequest” file

    15. Download the resulting .cer file

    16. Open the .cer file in Keychain Access application

    17. Export both the crt and key files as a .pem file

  3. AppleRootCA-G3 Certificate

    1. This certificate is required for signature verification
    2. Download here

Backend - Required dependencies

Reminder: install each of these dependencies by running npm install <dependency> from your terminal

  1. crypto
    1. will be used to create our hash and decipher
  2. node-forge
    1. will be used to read our merchant identity certificate to extract info
  3. ec-key
    1. will be used to extract public and private keys
  4. asn1js
    1. will read our certificates in raw binary format and help convert to parseable data
  5. pkijs
    1. reads the raw binary from asn1js and converts to parseable data structure
  6. node-webcrypto-ossl
    1. Used in setEngine for our pkijs settings

Backend implementation

Verify Signature

  1. We need to import all the required dependencies. Import them like so:

    const cryptoNative = require('crypto');
    const forge = require('node-forge');
    const ECKey = require('ec-key');
    const asn1js = require('asn1js');
    const pkijs = require('pkijs');
    const Crypto = require('node-webcrypto-ossl');
  2. Create the following global variables. Their uses will be explained later in the tutorial:

    const TOKEN_EXPIRE_WINDOW = 300000; // should be set to 5 minutes (300000 ms) per apple
    const LEAF_CERTIFICATE_OID = '1.2.840.113635.100.6.29';
    const INTERMEDIATE_CA_OID = '1.2.840.113635.100.6.2.14';
    const SIGNINGTIME_OID = '1.2.840.113549.1.9.5';
    const MERCHANT_ID_FIELD_OID = '1.2.840.113635.100.6.32';
  3. Create a new express endpoint ‘/decryptToken’. In the request, the backend will receive the encrypted Apple Pay token. The response will be the decrypted token. Your endpoint should start off like this:

    app.post('/decryptToken', (req,res) => {
    
    });
  4. We should instantiate a variable for the token. We can access the token via req.body.encryptedToken.

    const token = req.body.encryptedToken;
  5. Before proceeding with decryption, the documentation tells us to verify the signature. Create a new asynchronous function called verifySignature. It will take one argument, the encrypted token. We will conduct all the verification in this function.

    const verifySignature = async (token) => {
    
    };
  6. Call verifySignature within your endpoint and pass the token

    verifySignature(token);
  7. Ensure that the certificates contain the correct custom OIDs: 1.2.840.113635.100.6.29 for the leaf certificate and 1.2.840.113635.100.6.2.14 for the intermediate CA. The value for these marker OIDs doesn’t matter, only their presence.
    We get the certificates from the token.

  8. First, create a Nodejs Buffer from our token signature. Buffers allow us to handle raw binary data. This should be converted from ‘base64’ format.

    const cmsSignedBuffer = Buffer.from(token.signature, 'base64');
  9. Our cmsSignedBuffer is now in Basic Encoding Rules (BER) format. We want to convert this to ASN.1 encoding. Transform it using the asn1js dependency like so

    const cmsSignedASN1 = asn1js.fromBER(new Uint8Array(cmsSignedBuffer).buffer);
  10. Use the cmsSignedASN1 result in pkijs content info:

    const cmsContentSimpl = new pkijs.ContentInfo({
      schema: cmsSignedASN1.result
    });
  11. Use cmsContentSimpl content in pkijs signed data:

    const cmsSignedData = new pkijs.SignedData({
      schema: cmsContentSimpl.content
    });

    Our variable cmsSignedData is now in a format that we can use!

  12. cmsSignedData has a property certificates that we can use to check for correct OIDs. Create a function called checkCertificates. Call this function and pass cmsSignedData.certificates as the argument.

    checkCertificates(cmsSignedData.certificates)
  13. checkCertificates needs to verify if OID 1.2.840.113635.100.6.29 for the leaf certificate and 1.2.840.113635.100.6.2.14 for the intermediate certificate exist.
    The length of the function argument certificates should be 2, the first being the leaf and the second being the intermediate.

  14. We can access the OID of each certificate via extensions.

  15. We can use Javascript’s find function to check for these OIDs.

  16. Thus, our resulting checkCertificates function should be defined as follows (we can use the global variables that we set previously to help readability):

    const checkCertificates = (certificates) => {
      if (certificates.length !== 2) {
        throw new Error(
          `Signature certificates number error: expected 2 but got ${certificates.length}`
        );
      }
      if (
        !certificates[0].extensions.find(x => x.extnID === LEAF_CERTIFICATE_OID)
      ) {
        throw new Error(
          `Leaf certificate doesn't have extension: ${LEAF_CERTIFICATE_OID}`
        );
      }
      if (!certificates[1].extensions.find(x => x.extnID === INTERMEDIATE_CA_OID)) {
        throw new Error(
          `Intermediate certificate doesn't have extension: ${INTERMEDIATE_CA_OID}`
        );
      }
    }
  17. Next, we need to ensure that the root CA is the Apple Root CA - G3. As a prerequisite, you needed to download the Root CA - G3 file from here. Once this is done, this condition is satisfied.

  18. We need to ensure that there is a valid X.509 chain of trust from the signature to the root CA. We also need to validate the token’s signature
    PKI.js can check chain of trust and verify at the same time.

  19. Create an asynchronous function called validateSignature. It will take 3 arguments: the cmsSignedData, the AppleRootCA, and signedData. We need to prepare AppleRootCA and the signedData to be read by PKI.js.

  20. Create a global variable called AppleRootCABuffer. Set it equal to filesystem reading the AppleRootCA-G3.cer file:

    const AppleRootCABuffer = fs.readFileSync('/path/to/cert/AppleRootCA-G3.cer');
  21. AppleRootCABuffer will be in BER format. Convert it to ASN1:

    const AppleRootCAASN1 = asn1js.fromBER(new Uint8Array(AppleRootCABuffer).buffer);
  22. Read AppleRootCAASN1 into PKIJS as a certificate:

    const AppleRootCA = new pkijs.Certificate({ schema: AppleRootCAASN1.result });

    Your AppleRootCA is ready! We still need to prep the signedData.

  23. The documentation states that for ECC (EC_v1), ensure that the signature is a valid Ellyptical Curve Digital Signature Algorithm (ECDSA) signature (ecdsa-with-SHA256 1.2.840.10045.4.3.2) of the concatenated values of the ephemeralPublicKey, data, transactionId, and applicationData keys.

    We need to concatenate our ephemeralPublicKey, data, and transactionId in a Buffer.

  24. First, create a Buffer from the token’s ephemeralPublicKey:

    const p1 = Buffer.from(token.header.ephemeralPublicKey, 'base64');
  25. Create a Buffer from the token’s data:

    const p2 = Buffer.from(token.data, 'base64');
  26. Create a Buffer from the token’s transactionID:

    const p3 = Buffer.from(token.header.transactionId, 'hex');
  27. Concatenate p1, p2, and p3 together:

    const signedData = Buffer.concat([p1, p2, p3]);

    This is our signature to use. We are ready to define validateSignature.

  28. validateSignature uses cmsSignedData.verify() to do verification.

  29. .verify() takes a dictionary.

    1. signer: set this as 0
    2. trustedCerts: this should be your rootCA
    3. data: this should be your signedData
    4. checkChain: set this to true. This checks the x509 chain of trust
    5. extendedMode: set this to true. This is to show the signature validation result.
  30. Your function should thus be defined as:

    // validateSignature -
    const validateSignature = (cmsSignedData, rootCA, signedData) => {
      return cmsSignedData.verify({
        //===================================
        // Should only contain 1 signer, verify with it
        //===================================
        signer: 0, 
        trustedCerts: [rootCA],
        data: signedData,
        //===================================
        // Check x509 chain of trust
        //===================================
        checkChain: true, 
        //===================================
        // Enable to show signature validation result
        //===================================
        extendedMode: true, 
      });
    };
  31. Within verifySignature, call it like so:

    const ret = await validateSignature(cmsSignedData, AppleRootCA, signedData);
    if (!ret.signatureVerified) {
      throw new Error('CMS signed data verification failed');
    }
  32. Lastly, we need to inspect the Cryptographic Message Syntax (CMS) signing time of the signature. Define a function called checkSigningTime. It will take an argument called signerInfo.

  33. signerInfo can be extracted via cmsSignedData:

    const signerInfo = cmsSignedData.signerInfos[0];
  34. Within checkSigningTime, we first need to access the signerInfo attributes

    const signerInfoAttrs = signerInfo.signedAttrs.attributes;
  35. Within those attributes, find the signing time OID (this should be a global variable that you set previously)

    const attr = signerInfoAttrs.find(x => x.type === SIGNINGTIME_OID);
  36. Convert the signed time into a Javascript Date object

    const signedTime = new Date(attr.values[0].toDate());
  37. Set another variable for now

    const now = new Date();
  38. Now, you need to see if the difference between now and signedTime is greater than the token expiration window. Apple says it should not differ by more than 5 minutes (or 300000 milliseconds). Throw an error if true.

    if (now - signedTime > TOKEN_EXPIRE_WINDOW) {
      throw new Error('Signature has expired');
    }

    Note: TOKEN_EXPIRE_WINDOW was a global variable set as 300000

  39. Call your checkSigningTime function within your verifySignature function. Pass signerInfo as the argument.

    checkSigningTime(signerInfo);
  40. You’re done with signature verification! Your final verifySignature function should be:

    // verifySignature - 
    const verifySignature = async (token) => {
      //===================================
      // Extract data from token
      //===================================
      const p1 = Buffer.from(token.paymentData.header.ephemeralPublicKey, 'base64');
      const p2 = Buffer.from(token.paymentData.data, 'base64');
      const p3 = Buffer.from(token.paymentData.header.transactionId, 'hex');
      const signedData = Buffer.concat([p1, p2, p3]);
      //-----------------------------------
      // Create CMS Signed Data
      //-----------------------------------
      const cmsSignedBuffer = Buffer.from(token.paymentData.signature, 'base64');
      const cmsSignedASN1 = asn1js.fromBER(new Uint8Array(cmsSignedBuffer).buffer);
      const cmsContentSimpl = new pkijs.ContentInfo({
        schema: cmsSignedASN1.result,
      });
      const cmsSignedData = new pkijs.SignedData({
        schema: cmsContentSimpl.content,
      });
      const signerInfo = cmsSignedData.signerInfos[0];
      //-----------------------------------
    	// 1.a Ensure that the certificates contain the correct custom OIDs: 1.2.840.113635.100.6.29
    	// for the leaf certificate and 1.2.840.113635.100.6.2.14 for the intermediate CA
      //-----------------------------------
      checkCertificates(cmsSignedData.certificates);
      //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    	// 1.b Ensure that the root CA is the Apple Root CA * G3 - root CA downloaded from Apple web site so this is satisfied
    	// 1.c Ensure that there is a valid X.509 chain of trust from the signature to the root CA
      // 1.d Validate the token’s signature
      // PKI.js can check chain of trust and verify on one shot, so 1.c and 1.d can be done together
      //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      const ret = await validateSignature(cmsSignedData, AppleRootCA, signedData);
      if (!ret.signatureVerified) {
        throw new Error('CMS signed data verification failed');
      }
      //:::::::::::::::::::::::::::::::::::
    	// 1.e Inspect the CMS signing time of the signature
      //:::::::::::::::::::::::::::::::::::
      checkSigningTime(signerInfo);
    };
\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/integrate-apple-pay-decrypt-the-apple-pay-payload-frontend-backend-setup"}],"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/integrate-apple-pay-decrypt-the-apple-pay-payload-frontend-backend-setup","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"}}">